* device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
[fw/sdcc] / ChangeLog
1 2005-10-11 Raphael Neider <rneider AT web.de>
2
3         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
4         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
5
6 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
9         * support/regression/tests/sfr16.c: added test for the sfr32 bug
10
11 2005-10-04 Raphael Neider <rneider AT web.de>
12
13         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
14           device/lib/pic16/pics.all: added pic18f1320
15         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
16
17 2005-09-30 Raphael Neider <rneider AT web.de>
18
19         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
20         * src/pic16/devices.inc: NEW, provides device descriptions
21         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
22
23 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
24
25         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
26           GETHBIT
27
28 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * doc/sdccman.lyx: updated Highest Order Bit documentation,
31           documented Any Order Bit, Higher Order Byte and Higher Order Word
32         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
33         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
34           (optimizeGetAbit): new, to get any bit, not only the high bit,
35           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
36           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
37           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
38           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
39             RIGHT_OP: also try GETBYTE, GETWORD optimization,
40             GETABIT, GETBYTE, GETWORD: decorate them,
41           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
42           (ast_print): added GETABIT, GETBYTE, GETWORD
43         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
44         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
45           (geniCodeBinary): new generic binary icode,
46           (ast2iCode): added GETABIT, GETBYTE, GETWORD
47         * src/port.h: updated comment for PORT.hasExtBitOp
48         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
49           (genGetByte): new, to get a single byte,
50           (genGetWord): new, to get a word from a long,
51           (gen51Code): added GETABIT, GETBYTE, GETWORD
52         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
53
54 2005-09-23 Raphael Neider <rneider AT web.de>
55
56         * configure.in, configure: have device/lib/pic configured
57         * device/lib/Makefile.in: added model-pic14
58         * device/lib/clean.mk: added pic/ to clean rule
59         * device/lib/pic: added rudimentary pic14 library providing support
60           functions for multiplication/division/generic pointer access
61         * src/SDCCopt.c (convilong): mark support functions as extern
62           for pic14 port as well
63         * src/pic/gen.c (genMult): added assertions,
64           (genpic14Code): emit warning on unhandled iCodes
65         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
66         * src/pic/pcode.c (pCodeOpCopy),
67         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
68           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
69           SFR_REGISTER}), made safe for future extensions
70         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
71           instructions even if preceeded by SKIP instructions (also remove
72           them); removed unused code
73         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
74           prevents leaving parts of the structure uninitialized after copying
75
76 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
77
78         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
79           ago by me
80         * support/regression/tests/addsub.c: added test for the bug
81
82 2005-09-21 Raphael Neider <rneider AT web.de>
83
84         * device/include/pic16/pic18f1220.h,
85           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
86         * device/lib/pic16/Makefile.rules: added missing opening paren
87         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
88           are provided in genutils.c,
89           (genUminusFloat,genUminus,genCmpEq): added asserts on different
90           operand/result sizes,
91           (genCmp): assert on NULL pointers first, then check deref'ed values
92         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
93           result size
94
95 2005-09-18 Raphael Neider <rneider AT web.de>
96
97         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
98           as these are now unused,
99           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
100         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
101           local, avoids uninitialized pointer dereference on r->name
102         * src/pic16/ralloc.c (newReg): fixed indentation
103
104 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
105
106         * src/SDCCval.c (constVal): fixed bug 730366
107         * support/Util/SDCCerr.c,
108         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
109
110 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
111
112         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
113
114 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
115
116         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
117
118 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
119
120         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
121           (hex2dec): made hex_digit unsigned char, removed ascii dependance
122         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
123           (hex2dec): made hex_digit unsigned char, removed ascii dependance
124         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
125         * packihx/packihx.c (hexDigit): made c unsigned char
126         * as/mcs51/lklibr.c (fndsym),
127         * link/z80/lkgb.c (gb),
128         * link/z80/lklibr.c (fndsym),
129         * link/z80/lkrloc.c (relr),
130         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
131         * src/SDCC.lex (checkCurrFile, process_pragma),
132         * src/SDCCglue.c (spacesToUnderscores),
133         * src/SDCCmain.c (setParseWithComma, processFile),
134         * src/asm.c (tvsprintf, printCLine),
135         * src/avr/gen.c (emitcode, aopPut),
136         * src/ds390/gen.c (emitcode),
137         * src/hc08/gen.c (emitcode, emitinline),
138         * src/mcs51/gen.c (emitcode, genInline),
139         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
140           tokenizeLineNode),
141         * src/pic/ralloc.c (debugLog),
142         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
143           tokenizeLineNode),
144         * src/pic16/ralloc.c (debugLog),
145         * src/z80/main.c (_process_pragma):
146            made all ctype.h function calls safe
147         * src/SDCCopt.c: include math.h for fabs
148         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
149           and used them throughout the code to make ctype.h function calls safe
150         * src/ds390/main.c (asmLineNodeFromLineNode),
151         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
152         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
153            unsigned char*
154         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
155           (newpCodeAsmDir): made ctype.h function calls safe
156         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
157           pic16_emitcode):  made lbp unsigned char*
158         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
159           (pic16_newpCodeAsmDir): made ctype.h function calls safe
160         * src/xa51/gen.c (emitcode),
161         * src/z80/gen.c (_emit2): made lbp unsigned char*
162         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
163            char*
164
165 2005-09-05 Raphael Neider <rneider AT web.de>
166
167         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
168           access bank splitpoint
169
170 2005-09-05 Raphael Neider <rneider AT web.de>
171
172         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
173
174 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * .version: changed to version 2.5.3
177         * doc/sdccman.lyx: changed version to 2.5.3,
178           documented --codeseg and --constseg and pragma codeseg and constseg,
179           documented bit parameters (reentrant) and bit returning
180         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
181            currFunc->recvSize, but is this ok for all ports?
182           (ast2iCode): result of ~ on unsigned char must be cast to int for
183            bool to work
184         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
185           function pointers in bit space
186         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
187           (processFuncArgs): call port.reg_parm() with reentrancy info
188         * src/port.h,
189         * src/avr/main.c,
190         * src/ds390/main.c,
191         * src/hc08/main.c,
192         * src/pic/main.c,
193         * src/pic16/main.c,
194         * src/xa51/main.c,
195         * src/z80/main.c: port.reg_parm prototype extended with
196           "bool reentrant" parameter
197         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
198           options.stackAuto for allocating bit register parameters
199         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
200           (genSend): set BitBankUsed if it is,
201           (selectRegBank): factored out of genCall for use in genPcall,
202           (genCall): removed redundant dtype assignmen, use selectRegBank,
203           (genPcall): handle returning in Carry properly, save in F0 if needed,
204           (genReceive): handle bit register parameters
205         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
206           (mcs51_assignRegisters): enable bit registers for all reentrant
207            functions and don't set BitBankUsed unconditionally
208         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
209         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
210         * support/regression/tests/funptrs.c: added tests for BOOL and for return
211
212 2005-08-27 Borut Razem <borut.razem AT siol.net>
213
214         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
215         ppc-osx (Darwin) does not support -u option. It seems that it is
216         supported only on Linux - GNU cp
217
218 2005-08-25 Borut Razem <borut.razem AT siol.net>
219
220         * sim/ucsim/gui.src/serio.src/Makefile.in,
221           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
222           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
223           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
224           install and strip, since the strip at /usr/ccs/bin should be used
225           on solaris
226
227 2005-08-24 Borut Razem <borut.razem AT siol.net>
228
229         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
230
231 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
232
233         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
234         ffffffffu
235
236 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
237
238         * as/mcs51/aslink.h: completed lkrloc.c prototypes
239         * as/mcs51/lkmain.c (link_main): fixed warning
240         * device/include/stdbool.h: ds390 has no advanced bit support yet
241         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
242         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
243         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
244           and updated their macros
245         * src/SDCCval.c (constVal): updated comment for renamed b_long
246
247 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
248
249         * as/mcs51/asdata.c: changed ctype['['] to BINOP
250         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
251           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
252           (oprio): set priority for '['
253         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
254            and adb_24_bit
255         * as/mcs51/asm.h: added defines R_BIT and S_BIT
256         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
257         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
258         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
259           added overlayable BIT_BANK area
260         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
261           (summary2): explain 'T' in legenda
262         * as/mcs51/lkrloc.c: replaced old K&R style,
263           (relr): added R_BIT processing,
264           (errmsg): added "Bit-addressable relocation error",
265           (adb_bit): added for converting from byte- to bit-addressable space,
266           (adb_24_bit): added for converting from byte- to bit-addressable space
267         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
268            used in reentrant functions now even as return value
269         * device/lib/_gptrput.c (_gptrput): removed obsolete code
270         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
271           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
272         * src/SDCCglobl.h: added indicator BitBankUsed
273         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
274            the bit registers b0-b7
275         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
276           (geniCodeCast): fixed bug 1263853,
277           (geniCodeLogicAndOr): put result in bool or char,
278           (geniCodeReceive): added parameter func for accessing the return type,
279           (geniCodeFunctionBody): pass func to geniCodeReceive
280         * src/SDCCmain.c: added indicator BitBankUsed
281         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
282         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
283           (checkSClass): don't put automatic bool/bit on stack,
284           (checkFunction): removed check on function cannot return bit
285         * src/SDCCsymt.h: added newBoolLink prototype
286         * src/mcs51/gen.c (rb1regs): added bit registers,
287           (movc): created for assigning to carry,
288           (pushReg, popReg): created for pushing registers,
289           (sameRegs): check both AOP_REG and AOP_CRY types,
290           (aopOp): handle bit registers,
291           (aopPut): optimization no self-assign,
292           (saveRegisters): push reg->base (bits) only once for bit registers,
293            and use pushReg,
294           (unsaveRegisters): pop reg->base only once and use popReg,
295           (assignResultValue): added parameter func and return in carry for bits,
296           (genIpush): optimization no reload in A if not changed,
297           (genSend): bit parameters in reentrant functions are passed in bit
298            registers by first assigning to bits in B, then save registers and
299            copy B to bits,
300           (genCall): handle returning in Carry properly, save it in F0 if needed,
301           (genPcall): updated assignResultValue call, this is not safe yet for bit
302            returning function !!!
303           (genFunction): don't generate equ's for bit registers and use pushReg,
304           (genEndFunction): take care of bit returning functions and use popReg,
305           (genRet): return bit in Carry,
306           (genIfx): optimize bit registers and other directly addressable bits,
307           (genReceive): updated assignResultValue call
308         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
309           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
310            registers when using stack-auto
311         * src/mcs51/ralloc.c (_G): added allBitregs,
312           (regs8051): added the bit registers,
313           (createStackSpil): use macro IS_BIT,
314           (getRegBit): added to allocate a bit register, else spill,
315           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
316           (updateRegUsage): factored out to ease stepping while debugging,
317           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
318            also allocate bit registers,
319           (fillGaps): handle bit registers,
320           (findAllBitregs): added to create bit vector with all bit registers,
321           (mcs51_allBitregs): returns this bit vector,
322           (mcs51_assignRegisters): when using stack-auto use bit registers for
323            passing parameters and creating local variables
324         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
325
326 2005-08-22 Borut Razem <borut.razem AT siol.net>
327
328         * device/lib/Makefile.in: replaced find option -or with -o
329           to make it run on solaris
330
331 2005-08-22 Raphael Neider <rneider AT web.de>
332
333         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
334           fixes #1265442 (crash on Solaris)
335
336 2005-08-20 Borut Razem <borut.razem AT siol.net>
337
338         * configure, configure.in: added tests for libsocket and libnsl libraries,
339           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
340           from support/regression/Makefile.in
341         * support/regression/Makefile.in: added
342         * device/lib/pic16/Makefile.common.in: force make to use bash shell
343         * sim/ucsim/libtool: regenerated on sparc-solaris
344         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
345           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
346           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
347           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
348           sparc-solaris, which doesn't use GNU ld linker
349         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
350         * as/Makefile: find on sparc-solaris does not support -maxdepth option
351
352 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
353
354         * src/mcs51/peeph.def: updated comments
355
356 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
357
358         * device/lib/_gptrget.c,
359         * device/lib/_gptrput.c: slightly shorter
360         * doc/sdccman.lyx: incremented version
361         * src/mcs51/peeph.def: moved peephole comments to the line of first
362           change to better keep line correlation, reanimated 186.e
363         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
364
365 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
366
367         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
368           David Saxton with quotes around file name.
369
370 2005-08-15 Borut Razem <borut.razem AT siol.net>
371
372         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
373           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
374           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
375           make tests run on x86_64 platform
376
377 2005-08-13 Raphael Neider <rneider AT web.de>
378
379         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
380           as it might be executed DURING a build (parallel make is wonderful)
381
382 2005-08-13 Raphael Neider <rneider AT web.de>
383
384         * device/lib/Makefile.in (port-specific-objects-pic16):
385           revert to cp $(PORT)/bin/*.* $(PORTDIR)
386         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
387           dependency
388         * device/lib/pic16/Makefile.rules: build subdirs before creating
389           the library, removed builddir rule, create $(builddir) early in
390           recurse rule, use empty recurse rule for leaf directories
391         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
392           mkdir errors (race condition), removed duplicate suffix "hex"
393           from clean rules
394         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
395         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
396           prevents mkdir -p from aborting on Alpha
397
398 2005-08-12 Raphael Neider <rneider AT web.de>
399
400         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
401           db-statements in order to allow for arrays of pointers in code
402           sections to be placed without interspersed 0-padding, fixes
403           bug #1256215
404         * (emitStatistics): fixed division by zero for pic18f1220
405         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
406           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
407         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
408         * (pic16_pCodeConstString): keep track of already emitted string
409           literals to prevent "duplicate definitions of symbol _str_NR"
410         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
411           debug message
412         * device/lib/Makefile.in: ignore failing PIC16 library builds
413         * device/lib/pic16/Makefile: do not build if gputils are missing
414         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
415
416 2005-08-10 Raphael Neider <rneider AT web.de>
417
418         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
419           my last commit)
420
421 2005-08-10 Raphael Neider <rneider AT web.de>
422
423         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
424           Rokas' patch to add the new fixed point type "__fixed16x16"
425         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
426           functions for __fixed16x16 arithmetics
427         * device/lib/pic16: reimplemented the build system to support
428           a separate build directory, better handling of libio (create
429           the library in a separate subdir for each architecture) and
430           easier configuration (centralized in Makefile.common)
431
432 2005-08-07 Raphael Neider <rneider AT web.de>
433
434         * src/pic16/gen.c (genrshTwo): fixed sign extension
435         * src/pic16/device.c: added pic18f2320, 4220 and 4320
436         * device/include/pic16/pic18f2220.h: changed some bit definitions,
437           added T0CONbits
438         * device/include/pic16/pic18f4220.h: NEW, header for
439           pic18f4220 and pic18f4320
440         * device/include/pic16/pic18fregs.h: added new devices,
441           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
442         * device/include/pic16/signal.h: resolved name clashes
443           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
444           to also allow testing for interrupt enable bits, added
445           comments on how to use the macros
446         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
447         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
448           register definitions for the devices
449         * device/lib/pic16/pics.all: added new devices
450         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
451           allocated memory
452         * device/lib/pic16/libc/stdlib/memfree: do not count
453           the block header as free memory
454         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
455           simplified and added missing end-of-blocklist-marker
456           (reported by Peter Onion, fixes #1252814)
457         * (_mergeHeapBlock): fixed loop condition
458         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
459           len==0, restructured code
460         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
461           up a bit, reduced bitfield accesses, prevent endless loops
462           in case of heap corruption
463         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
464           "unreferenced arguments/must return a value" warnings
465         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
466           replaced BAUDREG with SPBRG
467         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
468           device/lib/pic16/debug/gstack/gstack.c: replaced
469           _naked, _asm, _endasm with __naked, __asm, __endasm
470
471 2005-08-05 Raphael Neider <rneider AT web.de>
472
473         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
474           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
475
476 2005-08-05 Borut Razem <borut.razem AT siol.net>
477
478         * device/lib/Makefile.in: added missing ';'
479         * configure: removed ^M characters
480
481 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
482
483         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
484           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
485           License
486
487 2005-08-04 Borut Razem <borut.razem AT siol.net>
488
489         * configure.in: pic16 libraries build 2nd try - enable running
490           configure in device/lib/pic16
491         * configure: regenerated from configure.in
492         * device/lib/Makefile.in: create $(PORT)/bin directory
493
494 2005-08-03 Raphael Neider <rneider AT web.de>
495
496         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
497           to get/set values via pointers
498         * (genUnpackBits,genPackBits): changed detection of
499           ptr->bitfield vs. sym.bitfield, fixed access via generic
500           pointers, removed dead (wrong) code for multibyte bitfields
501         * (genNearPointerGet, genGenPointerGet): removed useless code,
502           fixed bitfield detection, fixes #1250594
503         * (genNearPointerSet): removed useless code
504         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
505           and introduced macro pic16_emitpcode that conditionally emits
506           the origin of the following pCode (useful for debugging SDCC)
507         * src/pic16/pcode.c: changed (and disabled) some debug outputs
508         * (createDefmap): fixed handling of LFSR for --optimize-df
509
510 2005-08-02 Borut Razem <borut.razem AT siol.net>
511
512         * device/lib/Makefile.in: pic16 libraries build enabled since
513           gputils-0.13.2 are now localy installed at sourceforge's compile farm
514
515 2005-08-02 Raphael Neider <rneider AT web.de>
516
517         * src/pic16/gen.c (genPackBits): removed deprecated warning
518         * (genGenPointerSet): fixed bitfield detection
519
520 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
521
522         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
523
524 2005-07-31 Raphael Neider <rneider AT web.de>
525
526         * device/lib/pic16/libdev/pic18f458.c,
527           device/include/pic16/pic18f458.h: added missing T0CONbits
528
529 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
530
531         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
532
533 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
534
535         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
536
537 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
538
539         * device/include/mcs51/at89c51ed2.h: added.
540
541 2005-07-23 Raphael Neider <rneider AT web.de>
542
543         * src/pic/gen.h: added emitpcode macro for debugging
544         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
545           and replace by macro adding debug information on demand
546         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
547         * (gencjne): tried to fix; replaced with correct (slower) code
548         * (gen{Unp,P}ackBits): fixed single bit access
549         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
550         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
551           previous instruction
552         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
553           register has to be handled with care (forbidding movement
554           of assignments/uses, removing assignments completely, ...)
555         * (pCodeOptime2pCodes): make use of regIsSpecial
556         * added lots of debugging output (commented out)
557         * src/pic/rallloc.c (deassignLRs): prevent operand registers
558           from being reused as result UNLESS it is known to work
559
560 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
561
562         * support/Util/dbuf.h: include <stddef.h> for size_t
563         * .version: changed to version 2.5.2
564
565 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
566
567         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
568
569 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
570
571         * src/hc08/gen.c (genMinus): fixed bug #1241835,
572           (genModOneByte): removed needless psha/pula
573
574 2005-07-22 Raphael Neider <rneider AT web.de>
575
576         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
577           have PIC14 handled like PIC16, fixes broken pic14 linker calls
578         * src/pic/gen.c (resolveIfx): do not "invent" labels
579         * (genSkipc): changed to positive logic
580         * (genSkipCond): removed as no longer needed
581         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
582           backport from PIC16
583         * (genLeftShift): check operands are in different registers
584         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
585           INCF does not update CARRY...
586         * src/pic/main.c: fixed _linkCmd
587         * src/pic/pcode.c (unlinkpCode): added inactive code
588         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
589           alive (do not assign result and operand overlapping registers)
590
591 2005-07-22 Raphael Neider <rneider AT web.de>
592
593         * src/pic/device.c (dump_sfr): replaced register declaration with
594           call to emitSymbolToFile() to avoid duplicate symbols
595         * (assignRelocatableRegisters): do not declare external symbols
596         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
597           right (take size of type, not etype)
598         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
599         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
600         * (packRegsForAccUse): disabled assignment of WREG as
601           the result reg to prevent occurence of just fixed #1235003,
602           fixes #1242954
603         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
604           symbols (avoids duplicate symbols in .asm file)
605         * (pic14emitRegularMap): use emitSymbolToFile()
606         * src/pic/gen.c (aopOp): fixed spillLocation handling
607         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
608         * (genDataPointerSet): removed unneccessary variables/output
609
610 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
611
612         * as/mcs51/lkarea.c: enlarged codemap for banked memory
613         * device/lib/mcs51/crtbank.asm: added # to 0x0F
614
615 2005-07-21 Raphael Neider <rneider AT web.de>
616
617         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
618           architecture cannot handle them efficiently, fixes bug #1235003
619         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
620           check for empty sets before using them (fixes bug #1232190)
621
622 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
623
624         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
625           (lnksect2): generate warnings for memory overlap
626         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
627           constseg to set the name of these segments so you can instruct the linker
628           to place them in banks
629         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
630         * src/SDCCglobl.h: added MODEL_HUGE to enum,
631           added code_seg and const_seg to options
632         * src/SDCCglue.c (emitMaps): use options.const_seg,
633           (createInterruptVect): put interrupt vectors in segment HOME,
634           (glue): put HOME before static segment and put the main glue in HOME,
635           (glue): use options.code_seg
636         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
637         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
638           these segments so you can instruct the linker to place them in banks
639           (linkEdit): use code_loc for HOME segment which should be the first
640           segment in code memory now
641         * src/SDCCmem.c: fixed more stuff like bug 1238386
642         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
643           (changePointer): don't change function pointers to code pointers for
644           banked functions,
645           (compareType): added exceptional check for banked function pointers
646         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
647         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
648           after static in code memory
649         * src/mcs51/gen.c: added aopLiteralLong prototype,
650           (aopForSym): use getSize for functions,
651           (genCall): generate banked calls over one trampoline __sdcc_banked_call
652           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
653           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
654           the segment,
655           (genPcall): use call for literal function pointers and generate banked
656           calls over the one trampoline so there's only one place for the user to
657           modify according to his/hers hardware,
658           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
659           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
660         * src/mcs51/main.c: added keyword banked,
661           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
662         * support/Util/SDCCerr.c,
663         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
664           needed for passing the bank and address to the trampoline
665         * device/lib/mcs51/crtbank.asm: added for bankswitching
666         * device/lib/mcs51/Makefile: added crtbank
667
668 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
669
670         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
671           for fields at offset 0 of a struct or union as reported
672           on 2005-07-07 in the developer mailing list.
673
674 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
675
676         * src/SDCCmem.c: fixed bug 1238386
677
678 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
679
680         * src/mcs51/peeph.def: added labelrefcounting for peepholes
681           (patch #1144962), added peephole 300, enabled 259.x
682         * doc/sdccman.lyx: removed screenshot and provided link instead
683
684 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
685
686         * doc/sdccman.lyx: added section about debugging with ddd
687         * doc/figures/ddd_example.eps: screenshot of debugging session
688
689 2005-07-04 Raphael Neider <rneider AT web.de>
690
691         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
692           like CODE pointers, fixes #1115683
693         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
694           call, fixes bugs #1232211, #1228110,
695           fixed wrong casts to pCodeFlow from pCodeInstructions
696
697 2005-07-04 Raphael Neider <rneider AT web.de>
698
699         * src/pic/gen.c (popGet): changed assert to allow for
700           bit operands
701         * (popGetAddr): changed signature to provide
702           an additional index, patched all call sites
703         * (genCmpEq): handle literal-like operands correctly
704         * (genAddrOf): added sanity checks on __code/__data pointers
705         * (genAssign): added handling of symbols from __code section
706         * (gencjne): do not generate code for comparisons whose result
707           is neither stored nor used, fixes bug #1171114
708         * (AccLsh, AccRsh): operate on operand instead of WREG
709         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
710           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
711           by known count
712         * rewrote complete shift-by-literal logic, commented unused
713           functions out
714         * (genConstPointerGet): get multiple bytes (if result size > 1),
715           fixed handling of non-immediate addresses
716         * (genPointerGet): handle CODE pointers like CONST pointers
717         * (genpic14Code): insert C-SRC lines as Cource-pCodes
718         * ({aop,op}_isLitLike): NEW, single place to decide whether an
719           operand is to be treated as a literal or not
720         * (mov2w,genPcall,genCmpEq),
721           src/pic/genarith.c: use aop_isLitLike() to decide between
722           literal/register contents
723         * (addSign): added missing offset
724         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
725           only emit comment in debug-mode,
726           use {aop,op}_isLitLike throughout the file
727         * src/pic/glue.c: fix initializers for pointers (work in progress)
728         * src/pic/pcode.c (get_op): honor index on _const symbols
729         * ({reset,dump}pCodeStatistics): NEW, estimate code size
730         * (dumppBlock): added pCode size estimation
731         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
732           check for IS_SYMOP before OP_SYMBOL'ing
733         * fixed indentation, compacted switch-statements
734         * (allocReg): find free register and allocate it instead of
735           allocating new registers all the time
736         * (deassignLRs): prevent POINTER_GET's from being assigned the same
737           registers as its operands (necessary only for multibyte GETs)
738
739 2005-07-01 Raphael Neider <rneider AT web.de>
740
741         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
742           debugging .asm-output macros FENTRY + FEXIT
743         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
744           way... I wonder...
745         * (emitpComment): NEW, printf to pCode
746         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
747           offset handling
748         * (popGetAddr): NEW, variant of popGet to access an immediates
749           high(er) bytes instead of the n'th byte of memory they reference,
750           replaced popGet with popGetAddr where neccessary
751         * (genDataPointerGet): reactivated and fixed implementation
752         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
753           accesses
754         * (genDataPointerSet): fixed multibyte assignments
755         * (genpic14Code): fixed --i-code-in-asm handling
756         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
757         * (genPlus): fixed index-out-of-bounds error
758         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
759         * src/pic/ralloc.c: added debugging output macro FENTRY2
760         * (spillThis): fixed indentation, enbraced for-body for clarity
761         * (rematStr): commented out as now unused
762         * (regTypeNum): commented out special spill case (overwrites
763           arbitrary values)
764         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
765
766 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
767
768         * doc/sdccman.lyx: documented sfr16/sfr32,
769           added example for using storage class with function pointers
770         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
771
772 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
773
774         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
775         * device/lib/_itoa.c,
776         * device/lib/_ltoa.c: optimized codesize
777         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
778           but don't know how to suppress the double warning.
779         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
780         * support/Util/SDCCerr.c,
781         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
782
783 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
784
785         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
786           fixed old K&R prototypes
787         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
788         * device/lib/_gptrget.c,
789         * device/lib/_gptrgetc.c,
790         * device/lib/_gptrput.c: changed versions for new memory indicator values,
791           also new versions for small generic pointers and banked generic pointers
792         * src/port.h: added const_name
793         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
794         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
795         * src/SDCCcse.c (findPrevIc): check all associative operators
796         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
797         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
798         * src/SDCCmem.c: updated comments,
799           set far-space to 0 for pdata, results in optimized code
800         * src/SDCCmem.h: added macro CONST_NAME
801         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
802           moving the info into the highest bits, see also gptrget/gptrput
803         * src/src.dsp: added sdcc.ico to project files
804         * src/avr/gen.c (genCast): fixed bug 0x%d
805         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
806         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
807           relation between ptr_type and DCL_TYPE,
808           (genCast): fixed bug 0x%d
809         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
810           (CODE)" for const_name
811         * src/hc08/gen.c (genCast): fixed bug 0x%d
812         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
813           (hc08_port): added "CONST (CODE)" for const_name
814         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
815           (aopForRemat, adjustArithmeticResult): disconnected direct relation
816           between ptr_type and DCL_TYPE,
817           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
818           operand* and took AOP() inside function so sfr-ness can be checked,
819           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
820           new prototype,
821           (genFunction, genEndFunction): optimized stack setup,
822           (genMinus): optimized for literals with ending zeroes (in bytes),
823           (genCast): fixed bug 0x%d
824         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
825           (mcs51_port): added "CONST (CODE)" for const_name
826         * src/mcs51/peeph.def: made rule 226 more generic
827         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
828         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
829         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
830         * src/z80/main.c (z80_port): added NULL for const_name,
831           (gbz80_port): added NULL for const_name
832         * support/regression/tests/bug663539.c,
833         * support/regression/tests/sfr16.c: new tests
834
835 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
836
837         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
838
839 2005-06-24 Raphael Neider <rneider AT web.de>
840
841         * device/lib/pic16/libdev/pic18f[68][567]20.c:
842           corrected typos...
843         * device/include/pic16/signal.h: added USBIF
844           and SIG_USB
845
846 2005-06-24 Raphael Neider <rneider AT web.de>
847
848         * device/lib/pic16/libdev/pic18f2455.c,
849           device/include/pic16/pic18f2455.h: NEW
850         * device/include/pic16/pic18fregs.h,
851           device/lib/pic16/pics.all,
852           src/pic16/device.c: added 18f2455
853         * device/lib/pic16/libdev/pic18f[68][567]20.c,
854           device/include/pic16/{pic18f[68][567].h,usart.h}:
855           replaced MULTIPLE_USARTS define with more relaible
856           compatibility sfrs (for USART access)
857
858 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
859
860         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
861           and the output asm file line is printed on two lines.
862
863 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
864
865         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
866           BGT, BLE, BHI, and BLS instructions
867         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
868           genCmpEq): removed
869         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
870           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
871           fixes bug #1216342
872         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
873
874 2005-06-15 Raphael Neider <rneider AT web.de>
875
876         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
877         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
878         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
879           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
880           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
881
882 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
883
884         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
885           Marcel Telka in bug #1215704
886
887 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
888
889         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
890           located in shared memory bank.
891
892 2005-05-31 Raphael Neider <rneider AT web.de>
893
894         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
895           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
896           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
897
898 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
899
900         * device/lib/_strncpy.c: fixed the fix
901
902 2005-05-26 Raphael Neider <rneider AT web.de>
903
904         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
905           initializers with \0, bug #1208187
906         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
907           intializers with \0, bug #1208187
908
909 2005-05-26 Raphael Neider <rneider AT web.de>
910
911         * src/pic16/glue.c (pic16_printIvalChar): fixed string
912           initializers with \0, bug #1208187
913         * src/pic16/main.c (_process_pragma): added sanity checks
914           for stack position and size, emit warnings when appropriate
915
916 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
917
918         * device/lib/_strncpy.c: fixed not filling with \0
919
920 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
921
922         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
923           createFunction),
924         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
925           compound_statement),
926         * src/SDCCsymt.h,
927         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
928
929 2005-05-24 Raphael Neider <rneider AT web.de>
930
931         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
932
933 2005-05-24 Raphael Neider <rneider AT web.de>
934
935         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
936           TRISE definitions, closes bug #1162453
937
938 2005-05-22 Raphael Neider <rneider AT web.de>
939
940         * src/pic16/main.c (_process_pragma): check for missing
941           arguments to pragmas code and udata
942         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
943           consistency fixes to match other headers (thanks to Jim Paris)
944         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
945
946 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
947
948         * src/SDCCicode.c (isOperandEqual): fixed missing ;
949
950 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
951
952         * support/regression/tests/bug1198642.c: new test
953         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
954         * src/SDCCcse.c (findPrevIc): added comment, please have a look
955         * support/scripts/resource.h,
956         * support/scripts/resource.rc,
957         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
958         * support/scripts/sdcc.ico: added 32x32 icon
959
960 2005-05-18 Raphael Neider <rneider AT web.de>
961
962         * device/lib/pic16/libdev/pic18f*.c,
963         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
964           keywords to "__sfr" and "__at (X)"
965         * device/include/pic16/pic18fregs.h: added pic18f4520
966         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
967           #1203088 (MPLAB compatibility)
968
969 2005-05-17 Raphael Neider <rneider AT web.de>
970
971         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
972         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
973         * device/lib/pic16/pics.all: added new devices
974         * src/pic16/device.c: added support for pic18f4520
975
976 2005-05-16 Raphael Neider <rneider AT web.de>
977         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
978         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
979         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
980           convenience function for bit access
981
982 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/lib/printf_large.c: fixed bug 1193299
985         * support/regression/tests/bug1057979.c: added test %3.3s
986
987 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
988
989         * device/include/mcs51/8051.h,
990         * device/include/mcs51/8052.h: made parseable with lint
991         * device/include/mcs51/lint.h: added include file for (sp)lint
992         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
993         * doc/cdbfileformat.lyx,
994         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
995
996 2005-05-14 Raphael Neider <rneider AT web.de>
997
998         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
999         * device/lib/pic16/libc/stdlib/itoa.c (new)
1000         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1001         * device/lib/pic16/libio/Makefile: exclude subdir according to
1002           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1003         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1004         * src/pic16/gen.c (genFunction): prevent annoying warning
1005         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1006           nameclashes on BeOS
1007         * support/cpp2/cppmain.c (cpp_output_string): new
1008         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1009           fixes bug 1116802
1010
1011 2005-05-13 Borut Razem <borut.razem AT siol.net>
1012
1013         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1014
1015 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1016
1017         * .version: changed to version 2.5.1; back to bleeding edge development
1018
1019 2005-05-11 Borut Razem <borut.razem AT siol.net>
1020
1021         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1022           generate PDF version 1.3 documents
1023
1024 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1025
1026         * .version: changed to version 2.5.0
1027
1028 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1029
1030         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1031
1032 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1033
1034         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1035         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1036         well as many smaller updates.
1037         * .version: changed to version 2.5.0-pre1
1038
1039 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1040
1041         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1042
1043 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1044
1045         * support/regression/tests/bug1185672.c: added
1046         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1047           bug 1185672
1048         * src/mcs51/gen.c (genCall): added comments, made it look safer
1049         * src/mcs51/gen.c (genEndFunction): simplified
1050
1051 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1052
1053         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1054
1055 2005-04-14 Borut Razem <borut.razem AT siol.net>
1056
1057         * fixed bug 1045046 - SIGSEGV with really simple code?:
1058           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1059           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1060
1061 2005-04-14 Borut Razem <borut.razem AT siol.net>
1062
1063         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1064           src/pic16/device.h: temporarily disabled experimental #inline pragma
1065           for 2.5.0 release
1066
1067 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1068
1069         * device/include/z80/stdio.h,
1070         * device/include/z80/string.h: removed these highly incomplete files so
1071           SDCC can use the default ones in device/include/
1072
1073 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1074
1075         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1076         gcc warning.
1077         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1078         fix sdcpp warnings.
1079
1080 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1081
1082         * device/include/malloc.h: removed redundant __reentrant prototypes
1083         * device/lib/_mullong.c: added working xstack variant in asm (C version
1084           doesn't pass regression tests)
1085         * device/lib/bpx.c: used __data and made bpx char for mcs51
1086         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1087           (createFunction): fixed bug with xstackPtr
1088         * src/SDCCcse.c: corrected comments
1089         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1090           (killDeadCode, eBBlockFromiCode): removed unused code
1091         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1092           corrected comments
1093         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1094           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1095           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1096           (genModOneByte): fixed warning in MSVC
1097         * src/mcs51/main.c (): added comments
1098         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1099
1100 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1101
1102         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1103
1104 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1105
1106         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1107
1108 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1109
1110         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1111         characters arrays of larger size than the declared one.
1112
1113 2005-04-10 Borut Razem <borut.razem AT siol.net>
1114
1115         * src/pic/gen.c (genInline),
1116           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1117           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1118           (findNextInstruction), (findPrevInstruction),
1119           (findInstructionUsingLabel),
1120           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1121         * src/pic/pcode.c (findLabel): added missing '\n'
1122         * src/src.dsp: added SDCCdwarf2.c to the project
1123
1124 2005-04-09 Borut Razem <borut.razem AT siol.net>
1125
1126         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1127
1128 2005-04-08 Raphael Neider <rneider AT web.de>
1129
1130         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1131           into the chain after a given one) and mergeDefmapSymbols (combine
1132           defmap entries for each symbol per pcode)
1133         * (createDefmap): have defmap entries merged in the end
1134         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1135           a symbol before replacing one access type's symbol, merge symbols in
1136           the end (replacement symbol might already have an entry)
1137         * (assignValnums): keep reference to written WREG intact
1138
1139 2005-04-08 Raphael Neider <rneider AT web.de>
1140
1141         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1142           Alpha)
1143
1144 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1145
1146         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1147         bytes
1148
1149 2005-04-07 Raphael Neider <rneider AT web.de>
1150
1151         * device/include/pic16/usart.h: added compatibility defines for
1152           devices with more than one USART
1153         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1154
1155 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1156
1157         * device/lib/Makefile.in: updated for port specific include
1158
1159 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1160
1161         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1162
1163 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1164
1165         * device/include/8051.h,
1166         * device/include/8052.h,
1167         * device/include/at89S8252.h,
1168         * device/include/at89c55.h,
1169         * device/include/at89x051.h,
1170         * device/include/at89x51.h,
1171         * device/include/at89x52.h,
1172         * device/include/mcs51reg.h,
1173         * device/include/reg51.h,
1174         * device/include/reg764.h,
1175         * device/include/regc515c.h,
1176         * device/include/sab80515.h: (re)moved these 12 files
1177         * device/include/mcs51/8051.h,
1178         * device/include/mcs51/8052.h,
1179         * device/include/mcs51/at89S8252.h,
1180         * device/include/mcs51/at89c55.h,
1181         * device/include/mcs51/at89x051.h,
1182         * device/include/mcs51/at89x51.h,
1183         * device/include/mcs51/at89x52.h,
1184         * device/include/mcs51/mcs51reg.h,
1185         * device/include/mcs51/reg51.h,
1186         * device/include/mcs51/reg764.h,
1187         * device/include/mcs51/regc515c.h,
1188         * device/include/mcs51/sab80515.h: and added them here
1189
1190 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1191
1192         * device/include/stdarg.h: changed SDCC specific keywords to double
1193           underlined form.
1194         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1195           mcs51 and ds390.
1196         * device/include/hc08/mc68hc908gp32.h,
1197         * device/include/hc08/mc68hc908jb8.h,
1198         * device/include/hc08/mc68hc908jkjl.h,
1199         * device/include/hc08/mc68hc908qy.h: fixed comments
1200         * device/include/mcs51/README: updated
1201         * device/include/mcs51/c8051f120.h: added PINRSF
1202         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1203         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1204           amidst code. Also inline is not supported.
1205
1206 2005-04-06 Raphael Neider <rneider AT web.de>
1207
1208         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1209         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1210           callers stack/frame pointers
1211
1212 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1213
1214         * device/include/pic16/usart.h: added, missing in previous commit,
1215         * device/include/pic16/adc.h: fixed typo,
1216         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1217         commit,
1218         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1219         <p18fxxx.inc>
1220         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1221         uninitialized because a bug appears with gplink
1222         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1223         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1224         complains for unrecognised option
1225
1226 2005-04-05 Raphael Neider <rneider AT web.de>
1227
1228         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1229           structs as well (using memcpy)
1230         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1231           on ISRs (GOTO has no label)
1232         * src/pic16/device.h: added OF_OPTIMIZE_DF
1233         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1234           new data flow analysis/optimization
1235         * src/pic16/pcode.c: added (prototypes for and implementation of)
1236           dataflow analysis functions, fixed pCodeInstructions' inCond and
1237           outCond values, made RCALL a branch instruction
1238         * (pic16_unlinkpCode): keep C line if possible
1239         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1240           C line moved if possible
1241         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1242         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1243           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1244         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1245           new flow)
1246         * (pic16_getJumptabpCode): NEW, needed in...
1247         * (LinkFlow): fixed handling of jumptables, calls and conditional
1248           branches
1249         * (pic16_InsertCommentAfter): NEW
1250         * (pic16_pCodeReplace): made verbose and flow preserving
1251         * (AnalyzeFlow): added call to data flow analysis
1252         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1253         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1254         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1255
1256 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1257
1258         * src/SDCCast.c (decorateType): fixed bug #1105626
1259
1260 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1261
1262         * device/include/asm/pic16/features.h,
1263         * pic18f*.h headers,
1264         * device/include/pic16/adc.h,
1265         * device/include/pic16/delay.h,
1266         * device/include/pic16/i2c.h,
1267         * device/include/pic16/malloc.h,
1268         * device/include/pic16/stdio.h,
1269         * device/include/pic16/stdlib.h,
1270         * device/include/pic16/string.h,
1271         * device/lib/pic16/libc/stdio/printf_tiny.c,
1272         * device/lib/pic16/libc/stdio/printf_small.c,
1273         * device/lib/pic16/libc/stdio/strmgpsim.c,
1274         * device/lib/pic16/libc/stdio/strmmssp.c,
1275         * device/lib/pic16/libc/stdio/strmusart.c,
1276         * device/lib/pic16/libc/stdio/vfprintf.c,
1277         * device/lib/pic16/libc/stdlib/ltoa.c,
1278         * device/lib/pic16/libc/stdlib/putchar.c,
1279         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1280         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1281         * device/lib/pic16/libc/stdlib/memchrram.c,
1282         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1283         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1284         * device/lib/pic16/libio/adc/adcbusy.c,
1285         * device/lib/pic16/libio/adc/adcread.c,
1286         * device/lib/pic16/libio/adc/adcsetch.c,
1287         * device/lib/pic16/libio/usart/ubaud.c,
1288         * device/lib/pic16/libio/usart/ubusy.c,
1289         * device/lib/pic16/libio/usart/udrdy.c,
1290         * device/lib/pic16/libio/usart/uopen.c,
1291         * device/lib/pic16/libio/usart/uputc.c,
1292         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1293         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1294         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1295         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1296         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1297         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1298         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1299         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1300         specific keywords to double underlined form,
1301         * device/lib/pic16/libc/Makefile.rules,
1302         * device/lib/pic16/libsdcc/Makefile.rules,
1303         * device/lib/pic16/libm/Makefile,
1304         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1305         to compile with C standard set in Makefile.common
1306         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1307         rand.c and crc.c in compilation process,
1308         * device/lib/pic16/libsdcc/int/divuint.c,
1309         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1310         `c' from signed to unsigned,
1311         * device/lib/pic16/startup/crt0.c,
1312         * device/lib/pic16/startup/crt0i.c,
1313         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1314         keywords to double underlined form, bug fixes in _do_cinit function
1315         which prevented the correct initialization of the .idata segment,
1316         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1317         core to enter a infinite loop
1318         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1319
1320 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1321
1322         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1323
1324 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1325
1326         * device/include/Makefile.in: add support for hc08 subdirectory
1327         * device/include/hc08/: new subdirectory
1328         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1329         Lucas Loizaga, thanks!
1330         * device/include/hc08/mc68hc908qy.h,
1331         * device/include/hc08/mc68hc908gp32.h,
1332         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1333         their own directory. Changed internal macro names to use the compiler
1334         reserved namespace. Changed SDCC specific keywords to double
1335         underlined form.
1336         * device/include/math.h,
1337         * device/include/malloc.h,
1338         * device/include/stdarg.h,
1339         * device/include/stdbool.h
1340         * device/include/string.h,
1341         * device/include/tinibios.h,
1342         * device/include/ds400rom.h,
1343         * device/include/8051.h,
1344         * device/include/8052.h,
1345         * device/include/80c51xa.h,
1346         * device/include/at89c55.h,
1347         * device/include/at89S8252.h,
1348         * device/include/at89x51.h,
1349         * device/include/at89x52.h,
1350         * device/include/ds80c390.h,
1351         * device/include/reg764.h,
1352         * device/include/regc515c.h,
1353         * device/include/sab80515.h,
1354         * device/include/mcs51/c8051f000.h,
1355         * device/include/mcs51/c8051f018.h,
1356         * device/include/mcs51/c8051f020.h,
1357         * device/include/mcs51/c8051f040.h,
1358         * device/include/mcs51/c8051f060.h,
1359         * device/include/mcs51/c8051f120.h,
1360         * device/include/mcs51/c8051f300.h,
1361         * device/include/mcs51/c8051f310.h,
1362         * device/include/mcs51/c8051f320.h,
1363         * device/include/mcs51/c8051f330.h,
1364         * device/include/mcs51/c8051f350.h,
1365         * device/include/z180.h: Changed SDCC specific keywords to double
1366         underlined form.
1367
1368 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1369
1370         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1371         18F4455,
1372         * (pic16_assignConfigWordValue): disable testing of configuration
1373         register value with config mask,
1374         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1375         function with port->fun_prefix,
1376         * (genFunction): when generating a naked interrupt function never
1377         create an absolute segment placed in interrupt vector address, place
1378         the actual interrupt function at IVA instead, when an interrupt
1379         function is generated with unspecified interrupt then do not create
1380         the absolute section,
1381         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1382         code for generating a call to generic pointer get/put function with
1383         a call to function pic16_callGenericPointer(),
1384         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1385         the call to the generic pointer get/put functions with prefixing the
1386         function name with port->fun_prefix,
1387         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1388         * src/pic16/main.c (_process_pragma): prefix function with
1389         port->fun_prefix,
1390         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1391         calling assembler, old 18Fxxxx macro is deprecated,
1392         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1393         PC_ASMDIR in while condition,
1394         * (findInstruction): add PC_ASMDIR in while condition,
1395         * (buildCallTree): prefix main with port->fun_prefix,
1396         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1397         identifier for variable with banked access in instructions BTFSS,
1398         BTFSC, BCF, BSF, BTG
1399         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1400         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1401         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1402         perform optimization when enviroment variable NO_REG_OPT is set,
1403         * (insideLRBlock): NEW, return 1 if register is inside an
1404         INF_LOCALREGS block,
1405         * (RemoveRegFromLRBlock): remove a register that is completely
1406         eliminated by register optimization, but it is still left in local
1407         register store/restore in/from stack block,
1408         * (Remove2pcodes): after removing register, check to see if it
1409         should be removed from local register store/restore in/from stack
1410         block,
1411         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1412         DUMMY_READ_VOLATILE,
1413
1414         * device/include/pic16/adc.h: minor prototype modifications and
1415         update,
1416         * device/include/pic16/malloc.h: added GPL notice various
1417         modifications,
1418         * device/include/pic16/stdint.h: NEW, standard header for ints
1419         * device/include/pic16/delay.h: NEW, header for delay functions,
1420         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1421         delay1mtcy,
1422         * device/include/pic16/signal.h: NEW, header providing helper macros
1423         for implementing signal handlers,
1424         * device/include/pic16/stdio.h: added prototypes for functions,
1425         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1426         prototypes for stdin and stdout, added macro PUTCHAR to
1427         automatically implement putchar function prototype,
1428         * device/include/pic16/usart.h: modified and updated USART library,
1429         * device/lib/pic16/libio/adc/,
1430         * device/lib/pic16/libio/i2c: some modifications to improve library
1431         performance,
1432         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1433         family of functions,
1434         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1435         family of functions and other sources,
1436         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1437         of the PIC18Fxx[28] devices,
1438         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1439         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1440         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1441         _do_cinit function, because the previous failed when local variables
1442         where not placed in the same memory bank,
1443         * device/lib/pic16/libsdcc/char/: various modifications to improve
1444         library performance,
1445         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1446         information on the new functions of the c library and more...
1447
1448 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1449
1450         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1451
1452 2005-03-26 Raphael Neider <rneider AT web.de>
1453
1454         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1455           if condition == CARRY)
1456         * (genCmp): adapted to new genSkipc semantics
1457         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1458           on rIfx (genCmp was broken)
1459
1460 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1461
1462         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1463         * src/z80/main.c (_keywords[]),
1464         * src/SDCCglobal.h (struct options),
1465         * src/SDCC.y,
1466         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1467         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1468         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1469         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1470         always available in leading double underscore form. The C99 support is
1471         mostly missing, but it's a start.
1472         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1473         reserved identifier "__data".
1474
1475 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1476
1477         * src/mcs51/peeph.def: fixed bug 1170013
1478
1479 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1480
1481         * device/include/mcs51reg.h: fixed bug 842007
1482
1483 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1484
1485         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1486         last time.
1487
1488 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1489
1490         * src/port.h (struct PORT),
1491         * src/avr/ralloc.c (avr_assignRegisters),
1492         * src/avr/main.c,
1493         * src/ds390/ralloc.c (ds390_assignRegisters),
1494         * src/ds390/main.c,
1495         * src/hc08/ralloc.c (hc08_assignRegisters),
1496         * src/hc08/main.c,
1497         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1498         * src/mcs51/main.c,
1499         * src/pic/ralloc.c (pic14_assignRegisters),
1500         * src/pic/main.c,
1501         * src/pic16/ralloc.c (pic16_assignRegisters),
1502         * src/pic16/main.c,
1503         * src/xa51/ralloc.c (xa51_assignRegisters),
1504         * src/xa51/main.c,
1505         * src/z80/ralloc.c (z80_assignRegisters),
1506         * src/z80/ralloc.h,
1507         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1508         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1509         * src/SDCCcse.h,
1510         * src/SDCCdflow.c (computeDataFlow),
1511         * src/SDCCdflow.h,
1512         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1513         * src/SDCCloop.h,
1514         * src/SDCCcflow.c (*),
1515         * src/SDCCcflow.h,
1516         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1517         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1518         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1519         immedDom() returning wrong block; probably fixes bug #1160833)
1520
1521 2005-03-20 Borut Razem <borut.razem AT siol.net>
1522
1523         * support/scripts/inc2h.pl: WIN32 port
1524
1525 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1526
1527         * device/lib/makefile.in: added abs.c and labs.c
1528
1529 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1530
1531         * device/include/stdint.h: added
1532         * device/lib/abs.c: added
1533         * device/lib/labs.c: added
1534         * device/include/stdlib.h: added abs() and labs() prototypes
1535         * device/lib/libsdcc.lib: added abs and labs
1536         * device/include/float.h,
1537         * device/lib/_fsmul.c,
1538         * device/lib/printf_fast.c,
1539         * device/lib/printf_tiny.c: updated comments
1540
1541 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1542
1543         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1544         bug #1164313
1545
1546 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1547
1548         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1549         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1550
1551 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1552
1553         * device/lib/printf_large.c: removed inline assembly for portability and
1554           readability. Use printf_fast if speed or size are more important.
1555         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1556         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1557
1558 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1559
1560         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1561         prevent compiler warning
1562
1563 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1564
1565         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1566         moved to level 0 and declared as static. Also they are explicit
1567         placed in access bank. This was necessery because some times they
1568         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1569         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1570         optimizations. Currently only compare to unsigned char is implemented,
1571         * src/pic16/gen.c: added fReturnIdx array,
1572         * (struct resolvedIfx) is moved to gen.h and made public,
1573         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1574         * (aopForSym): added an optimization to directly store in stack of
1575         the operand of a SEND iCode,
1576         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1577         but as registers instead (AOP_REG) using the fReturnIdx array,
1578         * (pic16_freeAsmop): remove the freed register from the
1579         _G.sregsAlloc field,
1580         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1581         a compare of 'WREG',
1582         * (pic16_popGetTempRegCond): changed function prototype, now
1583         function takes also a bitVector argument v which holds the current
1584         set of registers that are allocated for stack access by aopForSym,
1585         registers allocated in aopForSym for accessing stack symbols are not
1586         any more part of the functions usedRegs field,
1587         * (genCall): some times aopOp is called for a stack variable to be
1588         send, aopForSym might perform the push, if this is true make sure
1589         that genCall doesn't push the variable twice by testing _G.resDirect,
1590         * (genFunction): changed testing for unspecified interrupt number
1591         from 256 to INTNO_UNSPEC,
1592         * modified selection scheme of frame pointer generation. Previously
1593         if function did use local registers a frame pointer was generated,
1594         now a frame pointer is generated only if function has arguments
1595         (that need PLUSW2 register access), or has stack arguments, or the
1596         compiler is not instructed to omit the frame pointer,
1597         * (genEndFunction): before restoring local registers that were saved
1598         in the function preamble, also restore the registers that *might*
1599         have been allocated for stack access,
1600         * (genRet): removed some old comments,
1601         * (genCmp, the active (RN's) version): added a call to the
1602         pic16_genCmp_special function to perform the compare with a more
1603         robust and optimized way,
1604         * (genInline): a feature has been added in inline code generation,
1605         which allows a wildcard variable substitution when writing inline
1606         assembly. Code is incomplete and experimental therefore undocumented,
1607         * (genCast): changed order of aopOp for result and right to allow
1608         aopForSym to directly load the result if possible,
1609         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1610         perform an optimized compare on some selected special occasions,
1611         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1612         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1613         generate an IVT any more,
1614         * src/pic16/main.c (pic16_optionsTable): added command line option
1615         --optimize-cmp,
1616         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1617         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1618         macros,
1619         * src/pic16/NOTES: Raphael Neider added in list of active developers
1620         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1621         jumptable_end to prevent bug #,
1622         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1623         inCond and outCond fields,
1624         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1625         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1626         turn off register spilling,
1627         * (packRegsForOneUse): synced with other ports' versions although it
1628         is not used currently,
1629         * (pic16_packRegisters): added an optimization while reading
1630         structure bitfields, some registers may be saved (malloc code is
1631         decreased by 80 bytes)
1632
1633 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1634
1635         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1636         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1637         this can be optimized more?
1638
1639 2005-03-10 Raphael Neider <rneider AT web.de>
1640
1641         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1642           genNearPointerGet): (hopefully) fixed access to bitfields via
1643           pointers (p->bitN = x; and x = p->bitN; failed)
1644
1645 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1646
1647         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1648
1649 2005-03-09 Raphael Neider <rneider AT web.de>
1650
1651         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1652
1653 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1654
1655         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1656         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1657           (regTypeNum): set REG_BIT type if necessary
1658         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1659         * support/regression/tests/critical.c: check bug 1144613
1660
1661 2005-03-02 Raphael Neider <rneider AT web.de>
1662
1663         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1664
1665 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1666
1667         * src/avr/ralloc.c (serialRegAssign),
1668         * src/ds390/ralloc.c (serialRegAssign),
1669         * src/hc08/ralloc.c (serialRegAssign),
1670         * src/mcs51/ralloc.c (serialRegAssign),
1671         * src/pic/ralloc.c (serialRegAssign),
1672         * src/pic16/ralloc.c (serialRegAssign),
1673         * src/xa51/ralloc.c (serialRegAssign),
1674         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1675
1676 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1677
1678         * src/SDCCast.c (decorateType): fixed bug 1124787
1679
1680 2005-02-20 Hubert Sack <sack AT digiplan.de>
1681         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1682
1683         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1684         patch #1121755
1685
1686 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1687
1688         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1689         to keep the correct label reference count when adding/removing references
1690         to labels. A peephole file using this is appended to patch #1144962.
1691
1692 2005-02-14 Raphael Neider <rneider AT web.de>
1693
1694         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1695         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1696         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1697           retrievals of result operand's value on assignment
1698
1699 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1700
1701         * device/include/pic16/string.h: modified prototype for memccpy()
1702         to memccpy(void *, void *, char, size_t)
1703         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1704         check whether to omit frame pointer or not,
1705         * (genInline): convert all occurences of "\n" to LF in inline
1706         assembler blocks, this helps formatting the inline text,
1707         * (pic16_loadFSR0): modified prototype,
1708         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1709         removed some 8051 legacy code,
1710         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1711         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1712         before allocating temporary registers in functions,
1713
1714 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1715
1716         * support/regression/tests/bitvars.c: corrected the "fix"
1717
1718 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1719
1720         * support/regression/tests/bitvars.c,
1721         * support/regression/tests/bitwise.c,
1722         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1723
1724 2005-02-10 Raphael Neider <rneider AT web.de>
1725
1726         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1727           different size for Alpha
1728         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1729
1730 2005-02-09 Raphael Neider <rneider AT web.de>
1731
1732         * src/SDCC.lex(doPragma) : save and restore warning options as well
1733           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1734         * have #pragma less_pedantic set the errorlevel to WARNING
1735           (fixes #1117001)
1736         * (cloneOptimize) : fixed wrong malloc's size
1737         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1738           facilitate correct handling of #pragma (save|restore)
1739
1740 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1741
1742         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1743
1744 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1745
1746         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1747
1748 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1749
1750         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1751
1752 2005-02-02 Raphael Neider <rneider AT web.de>
1753
1754         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1755         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1756         * (pic16_storeForReturn): fixed to allow returning function pointers
1757         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1758         * device/include/pic16/{stddef.h,stdbool.h}: added
1759
1760 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1763
1764 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1765
1766         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1767         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1768          appeared to be required
1769
1770 2005-01-31 Borut Razem <borut.razem AT siol.net>
1771
1772         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1773           include/mcs51 and include/z80 directories to the package
1774
1775 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1776
1777         * src/hc08/gen.c (genFunction): fixed bug #1112752
1778
1779 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1780
1781         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1782
1783 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1784
1785         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1786
1787 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1788
1789         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1790
1791 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1792
1793         * device/include/c8051fxxx.h: removed these 6 files
1794         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1795
1796 2005-01-26 Raphael Neider <rneider AT web.de>
1797
1798         * src/pic16/gen.c (genAssign): fixed assignment from longs
1799           in codespace (were cut to three bytes)
1800         * (genDummyRead): implemented (except for CODESPACE...),
1801           fixed bug #1108575
1802         * src/pic16/glue.c (emitStatistics): beautified
1803         * device/lib/pic16/libm/Makefile: added include path
1804
1805 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1806
1807         * src/z80/gen.c (aopPut): fixed bug #1103902
1808
1809 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1810
1811         * device/lib/expf.c: fixed bug #1095792
1812
1813 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1814
1815         * device/lib/pic16/libm: added Math library sources
1816
1817 2005-01-24 Raphael Neider <rneider AT web.de>
1818
1819         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1820           to enable upcast to pCodeOpReg2 (there is no type tag to
1821           differenciate the two and pic16_popGet2p cast into PCOR2)
1822         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1823           (sizeof(sectNames) changed to sizeof(sectName))
1824           Both patches fix segfaults under MinGW.
1825
1826 2005-01-23 Raphael Neider <rneider AT web.de>
1827
1828         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1829           Safe_[mc]?alloc()'ed variables
1830         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1831           of (byte sized) temporaries (assign them to WREG for now)
1832         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1833           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1834           this might fix SIGSEGVs on MinGW...
1835         * src/SDCCopt.c (killDeadCode): restored original behaviour
1836           (volatile operands might get thrown away though)
1837
1838 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1839
1840         * src/pic16/gen.c: fixed bug #1106975,
1841         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1842         pointer update, INTCON is saved, global interrupts are disabled and
1843         restored after updateing TOS.
1844         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1845         * added function attribute 'shadowregs' to take advantage of shadow
1846         registers,
1847         * added function attribute 'wparam' as an alternative to the wparam
1848         pragma,
1849         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1850         user declares a non-ISR function as 'shadowregs',
1851         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1852
1853 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1854
1855         * .version: bumped version number to 2.4.8
1856         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1857         pic16 port,
1858         * device/lib/pic16/libio/i2c/: I2C module support library,
1859         * device/include/pic16/i2c.h: I2C support library header,
1860         * device/lib/pic16/libc/stdio/: standard IO support sources,
1861         * (printf_small.c): printf_small() source, supports float print,
1862         * (printf_tiny.c): printf_tiny() source, does not support floats,
1863         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1864         enable global optimizations for entire library source, other
1865         Makefiles in the source tree are also modified to reflect this,
1866         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1867         function,
1868         * doc/sdccman.lyx: updated to reflect new changes,
1869         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1870         sym->onStack if-case,
1871         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1872         sbit, idata, _idata, xdata, _xdata,
1873         * added pragma library, to link an external library, (see doc),
1874         * removed command line options, --pomit-config-words, --pomit-ivt,
1875         --pleave-reset-vector,
1876         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1877         when calling assembler to reflect memory model used, also define
1878         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1879         reflect stack model used,
1880         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1881         on stack return NULL,
1882
1883 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1884
1885         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1886           of the operands is volatile. Fixes #1020220
1887
1888 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1889
1890         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1891         * (OptimizeRegUsage): make sure that there is really no other flow where
1892           the first pCode is used
1893
1894 2005-01-22 Raphael Neider <rneider AT web.de>
1895
1896         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1897           to fix #1106967 (pCode->seq are not set up correctly)
1898
1899 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1900
1901         * src/SDCCglue.c (glue): make sure code area is declared before the
1902         static initialization area.
1903
1904 2005-01-21 Raphael Neider <rneider AT web.de>
1905
1906         * device/lib/Makefile.in: fixed test for pic16 install dir
1907         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1908           optimizations
1909         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1910           added --optimize-goto compiler switch and pragma wparam documentation
1911         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1912         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1913           and PRODH closing bug #1071770 (peephole optimizer)
1914
1915 2005-01-19 Raphael Neider <rneider AT web.de>
1916
1917         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1918           cmdLine buffers (used when calling sdcpp...) are large enough
1919           (MAX_PATH=256 truncates arguments leading to system halts when
1920           used in MinGW...)
1921         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1922         * (genUminus): rewritten to for efficiency
1923         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1924           used uninitialized in some cases)
1925         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1926           copy the third byte from the int -- now assumes 0x80 (data memory)
1927         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1928           operands (genAddLit expects the iCode's operands to swapped as
1929           well), fixed leftover bytes (crashed for short left operands)
1930         * (pic16_genMinusDec): performance improvements, removed false
1931           PIC14 emitSKPNCs
1932         * (pic16_genMinus): fixed to cope with differently sized operands
1933         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1934           for --obanksel > 1
1935         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1936         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1937           new banksel optimization
1938         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1939           analysis for temporary registers (segfaults...)
1940         * src/pic16/peeph.def: added rule
1941
1942 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1943
1944         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1945         which converts a float number to its ASCII representation
1946         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1947         functions to convert the fractional and integer part of a float to ASCII,
1948         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1949         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1950         ram
1951         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1952         _STATMEM macros,
1953         * device/include/pic16/adc.h: added GPL info,
1954         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1955         a pCodeOp as tested operand,
1956         * (genNearPointerGet): optimized bit testing, does not use
1957         intermediate register for bit value, test directly instead with
1958         BTFSS, BTFSC, works only for single bits,
1959         * (genpic16Code): dump the name of the iCode in the asm,
1960         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1961         renamed to pic16_decodeOp,
1962         * (serialRegAssign): do not allocate a temporary register for iCode
1963         sequences that test a single bit for 1/0
1964
1965 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1966
1967         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1968         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1969         access stack and frame pointers. They are initially assigned to
1970         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1971         accessing SFRs. Updated all occurences of modification of stack or
1972         frame pointer in gen.c and pcode.c,
1973         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1974         assigning of a literal value to pointers,
1975         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1976         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1977         selected
1978
1979 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1980
1981         * doc/sdccman.lyx: update documentation about stack pragma, added
1982         some info for stack memory models
1983
1984 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1985
1986         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1987
1988 2005-01-08 Raphael Neider <rneider AT web.de>
1989
1990         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1991           udata sections to fix bug #1097823
1992
1993 2005-01-05 Raphael Neider <rneider AT web.de>
1994
1995         * src/pic16/gen.c (genGenericShift): added handling of differently
1996           sized left operand and result
1997
1998 2005-01-04 Raphael Neider <rneider AT web.de>
1999
2000         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2001         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2002           to hold the condition bit)
2003         * added new version of genCmp (old code available via #define)
2004         * added new version of genShiftLeft/genShiftRight in a generic
2005           way, now supports shifting by negative values
2006         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2007           shiftCount (expected by genGenericShift)
2008         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2009         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2010           dump
2011         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2012           is an invalid literal too...)
2013
2014 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2015
2016         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2017         from Raphael Neider,
2018         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2019         for 8-bit literals. This fixes some literal operands which are sign
2020         extended to 16-bits ints when instruction needs only 8-bits.
2021
2022 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2023
2024         * device/lib/logf.c: added mcs51 assembly version
2025         * device/lib/expf.c: added mcs51 assembly version
2026         * device/lib/_logexpf.c: new shared asm code for expf and logf
2027         * device/include/math.h: add defines for assembly math library
2028         * device/lib/Makefile.in: build new _logexpf.c
2029         * device/lib/libfloat.lib: use new _logexpf.c
2030
2031 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2032
2033         * src/pic/device.c
2034         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2035           device types which have less than 0x7f registers.
2036
2037 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2038
2039         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2040
2041 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2042
2043         * device/lib/printf_fast.c: only build on supported arch.
2044         * device/lib/printf_tiny.c: only build on supported arch.
2045         * device/lib/printf_fast_f.c: only build if asm float lib
2046         * device/lib/_fsget1arg.c: only build if asm float lib
2047         * device/lib/_fsget2args.c: only build if asm float lib
2048         * device/lib/_fsnormalize.c: only build if asm float lib
2049         * device/lib/_fsreturnval.c: only build if asm float lib
2050         * device/lib/_fsrshift.c: only build if asm float lib
2051         * device/lib/_fsswapargs.c: only build if asm float lib
2052         * device/include/stdio.h: don't provide print_fast,
2053           print_fast_f, print_tiny prototypes if --xstack used
2054
2055 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2056
2057         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2058         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2059           to the SOURCES
2060
2061 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2062
2063         * device/lib/printf_fast_f.c: same as printf_fast, but
2064           with floating point enabled
2065         * device/lib/printf_fast.c: minor tweaks
2066         * device/include/stdio.h: add printf_fast_f
2067
2068 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2069
2070         * src/SDCCmain.c: make --float-reent default for mcs51
2071         * device/lib/_fsadd.c: added mcs51 assembly version
2072         * device/lib/_fssub.c: added mcs51 assembly version
2073         * device/lib/_fsmul.c: added mcs51 assembly version
2074         * device/lib/_fsdiv.c: added mcs51 assembly version
2075         * device/lib/_fseq.c: added mcs51 assembly version
2076         * device/lib/_fsneq.c: added mcs51 assembly version
2077         * device/lib/_fsgt.c: added mcs51 assembly version
2078         * device/lib/_fslt.c: added mcs51 assembly version
2079         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2080         * device/lib/Makefile.in: add _fscmp to build
2081         * device/lib/libfloat.lib: add _fscmp to build
2082
2083 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2084
2085         * device/lib/_fs2slong.c: added mcs51 assembly version
2086         * device/lib/_fs2sint.c: added mcs51 assembly version
2087         * device/lib/_fs2schar.c: added mcs51 assembly version
2088         * device/lib/_fs2ulong.c: added mcs51 assembly version
2089         * device/lib/_fs2uint.c: added mcs51 assembly version
2090         * device/lib/_fs2uchar.c: added mcs51 assembly version
2091         * device/lib/_slong2fs.c: added mcs51 assembly version
2092         * device/lib/_sint2fs.c: added mcs51 assembly version
2093         * device/lib/_schar2fs.c: added mcs51 assembly version
2094         * device/lib/_ulong2fs.c: added mcs51 assembly version
2095         * device/lib/_uint2fs.c: added mcs51 assembly version
2096         * device/lib/_uchar2fs.c: added mcs51 assembly version
2097         * device/include/float.h: added #define to select asm vs c
2098
2099 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2100
2101         * device/lib/printf_fast.c: improvements to float output
2102         * device/include/float.h: add defines for assembly float library
2103         * device/lib/_fsget1arg.c: receive 1 float arg
2104         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2105         * device/lib/_fsnormalize.c: normalize a float
2106         * device/lib/_fsreturnval.c: return float, various helper routines
2107         * device/lib/_fsrshift.c: right shift a float's mantissa
2108         * device/lib/_fsswapargs.c: swap 2 floats
2109         * device/lib/Makefile.in: build these 6 new files for mcs51
2110         * device/lib/libfloat.lib: add these 6 files to the library
2111
2112 2004-12-26 Borut Razem <borut.razem AT siol.net>
2113
2114         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2115           built by gcc 3.4.2
2116
2117 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2118
2119         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2120           and fully reentrant and register bank neutral.
2121         * device/lib/printf_fast.c: added float (not enabled by default),
2122           added compact/slower integer (also not enabled by default),
2123           improved size/speed of fast integer code, other minor changes
2124         * device/include/stdio.h, device/lib/Makefile.in,
2125           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2126
2127 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2128
2129         * src/pic16/pcode.c: declaring variables other than at the start of a
2130           block is not supported in C by VC6.
2131
2132 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2133
2134         * applied a previous patch from Raphael Neider that wasn't included
2135         in the previous commits, which fixes infinite loops within jumptable
2136         improvements,
2137         * made some fixes that previous patches introduced
2138
2139 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2140
2141         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2142         that fixes an issue with AOP_PCODE asmop's offset,
2143         * (pic16_popCopyReg): update instance field too,
2144         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2145         function of pic port,
2146         * (genCmp, genAnd, genAssign),
2147         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2148
2149 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2150
2151         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2152         variables initial values to idata section,
2153         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2154         variables in some functions. This utilizes parmBytes field of iCode
2155         structure to hold the offset of the variable in stack. (might be
2156         able to use the stack field too?)
2157         * applied patch from Raphael Neider # ### , # ###
2158         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2159         variable initial values in idata section,
2160         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2161         for static variables with initial value
2162         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2163         applied fix in while loop from Raphael Neider.
2164
2165 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2166
2167         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2168         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2169         * src/ds390/ralloc.c (serialRegAssign): spill bits
2170         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2171         * support/Util/SDCCerr.c,
2172         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2173         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2174         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2175
2176 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2177
2178         * device/include/sdcc-lib.h: inserted LGPL, added includes
2179           asm/ds390/features.h and asm/mcs51/features.h
2180         * device/include/asm/default/features.h,
2181         * device/include/asm/gbz80/features.h,
2182         * device/include/asm/z80/features.h: added empty _AUTOMEM
2183           and _STATMEM
2184         * device/include/asm/ds390/features.h,
2185         * device/include/asm/mcs51/features.h: added files with defines for
2186           _AUTOMEM and _STATMEM indicating automatic and static storage class
2187         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2188         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2189         * src/SDCCicode.c (geniCodeCast),
2190         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2191         * src/SDCCloop.c (loopInduction): removed unused variable lr
2192         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2193           to convertToFcall to include char modulo (RFE 1065037), added check
2194           if left operand is unsigned and use abs of literal value
2195         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2196           as it doesn't work after conversion from peephole.def to peephole.rul
2197         * src/mcs51/gen.c (toBoolean): added check for size,
2198           (genModOneByte): optimized code for signed char modulo a literal
2199           power of 2 (thanks to Hubert Sack),
2200           (genRRC): removed unnecessary "clr c",
2201           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2202         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2203           jump optimization,
2204           swapped rules 256.c and 256.d,
2205           extended 256.d by using new multiple checks (thanks Erik),
2206           added rules 256.e and 256.f,
2207           updated rule 261.a and 261.b to new generated code
2208         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2209
2210 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2211
2212         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2213           induction related bugs, including first part of bug #1074377
2214
2215 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2216
2217         * applied patch from bug-report #1076292,
2218         * applied patches for genAnd and Goto-optimizations for Raphael
2219         Neider,
2220         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2221         dump a less iCode information,
2222         * src/pic16/device.h (pic16_options_t): added field debgen,
2223         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2224         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2225         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2226         puclic,
2227         * (various functions): added macros FENTRY and FENTRY2 to functions,
2228         to emit function prologue,
2229         * (various functions): fixed indentation,
2230         * (genNearPointerGet): fixed loading of FSR0,
2231         * (genPackBits): applied patch from Raphael Neider to fix updating
2232         of FSR0 and touching only the modified bits,
2233         * src/pic16/genarith.c (various functions): added macros FENTRY to
2234         emit function prologue in comments,
2235         * src/pic16/pcode.h: added functions debugf2, debugf3,
2236         * src/pic16/ralloc.c: partial fix for packForPush caused
2237         segmentation fault,
2238
2239 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2240
2241         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2242           <stsp AT users.sourceforge.net> with reversed byte order
2243         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2244
2245 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2246
2247         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2248           bug #1074377
2249         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2250         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2251
2252 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2253
2254         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2255
2256 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2257
2258         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2259           conditions,
2260           (setFromConditionArgs): friendly operand parser for peephole rules,
2261           (operandBaseName, operandsNotRelated): new peephole condition
2262           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2263           architecture specific register naming into account, handles n-way
2264           comparisons, and supports quoted literals
2265         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2266
2267 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2268
2269         * src/mcs51/peeph.def: fixed bug #1076940
2270
2271 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2272
2273         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2274
2275 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2276
2277         Adding support for replacing ljmps with sjmps in jumptables
2278         generated for switch statements. For now you need to set the
2279         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2280         Now 4 algorithms for mcs51 jumptable generation are used:
2281         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2282         addresses loaded pc-relative for up to 112 cases and stack-pushing
2283         target addresses loaded with offset from dptr for up to 256 cases.
2284
2285         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2286         * src/mcs51/main.c: adapted constants for switch table generation
2287         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2288
2289 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2290
2291         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2292         * support/regression/tests/bug1057979.c: added test for bug 1073386
2293
2294 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2295
2296         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2297         compilers
2298
2299 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2300
2301         * src/pic16/device.h,
2302         * src/pic16/genarith.c,
2303         * src/pic16/glue.c,
2304         * src/pic16/main.c,
2305         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2306
2307 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2308
2309         Large cummulative patch for pic16 port.
2310         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2311         to call when a stack overflow occurs,
2312         * (malloc.h): added CVS Id tag,
2313         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2314         variable,
2315         * added libc directory. The current version of LibC contains string
2316         functions, ctype functions and macros and some functions of the
2317         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2318         be extensively tested in the future. Standard disclaimer here.
2319         Library is not automatically build yet. But one can build it by
2320         invoking 'make' inside the libc directory.
2321         * added ADC library under libio. Preliminary version yet.
2322
2323         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2324         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2325         aopForRemat() now and not by pic16_aopOp(),
2326         * (pic16_popGetTempReg): removed warning messgae when allocating
2327         temporary registers, its a buggy feature and will be removed,
2328         * (pic16_popGet): set register instance field in AOP_CRY,
2329         * (pic16_outBitC): fixed for results in size greater than 1,
2330         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2331         * (pic16_storeForReturn): optimized return of 0,
2332         * (genCmp): experimental code for new genCmp which uses PIC18's
2333         special compare&skip instructions. Initial tests fail some times
2334         with variables grater than 1 byte in size, so new code is disabled,
2335         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2336         a single bit,
2337         * (genCast): began a fix to optimize the casting of a bit to another
2338         bit, now assigning a bitfield to another bitfield will fail, sorry,
2339         * src/pic16/main.c: disabled the use of lr-support feature,
2340         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2341         * added some function prototypes, added function _debugf prototype,
2342         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2343         bits with offset (case PO_GPR_BIT),
2344         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2345         command line,
2346         * (isBankInstruction): modified to return 0 for no banking instruction,
2347         and 1 for banking instruction,
2348         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2349         caused stop processing pCodes after a inline assembly block,
2350         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2351         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2352         registers when it shouldn't,
2353         * src/pic16/ralloc.c (allocReg): add preliminary support for
2354         supporting a limited set of temporary registers,
2355
2356 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2357
2358         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2359           genDataPointerSet): ensure assignments always copy in MSB to LSB
2360           order,
2361           (loadRegFromAop): recognize CLRH optimization,
2362           (genFunction): optimize RECEIVE iCodes in reentrant functions
2363
2364 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2365
2366         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2367           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2368           selected.
2369         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2370         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2371           contiguous with data
2372
2373 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2374
2375         * device/lib/_gptrget.c (_gptrget),
2376         * device/lib/_gptrgetc.c (_gptrgetc),
2377         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2378           instead of sjmp to ret
2379         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2380           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2381
2382 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2383
2384         * .version: bumped version to 2.4.7
2385         * device/lib/_gptrget.c (_gptrget): is now _naked
2386         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2387         * device/lib/_gptrput.c (_gptrput): is now _naked
2388         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2389           (createFunction): fixed xstack
2390         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2391         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2392           or bit either,
2393           (geniCodeCritical): store original interrupt state in an iTemp bit
2394           var unless stack-auto
2395         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2396         * src/SDCCmain.c (setIncludePath): added include/target to search path
2397         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2398         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2399           prototype,
2400           (processFuncArgs): put bit vars in bit area
2401         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2402           unsaveRBank): fixed xstack,
2403           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2404           (genFunction, genEndFunction): fixed xstack,
2405           (genAssign): optimization don't walk backwards through mem
2406         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2407         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2408         * support/regression/Makefile: also make library (for stack-auto) when
2409           making "all" and added "test-mcs51-xstack-auto"
2410         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2411         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2412         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2413         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2414         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2415           make-library by MAKE_LIBRARY
2416         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2417           regression tests for xstack
2418         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2419         * support/regression/tests/critical.c: test for critical on mcs51
2420
2421 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2422
2423         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2424           built version of sdcc instead of installed version
2425
2426 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2427
2428         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2429         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2430           vprintf.c now
2431         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2432         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2433           WARNING: remove device/lib/build/z80/printf.o by hand when
2434           updating from previous build!
2435         * device/lib/z80/printf.c: updated comment
2436         * support/regression/tests/bug1057979.c: test all ports now
2437         * support/regression/tests/bug1065458.c: file added
2438
2439 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2440
2441         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2442           *_start and *_end symbols for static functions
2443
2444 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2445
2446         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2447           and search crt0.o in all library paths,
2448           (setIncludePath): proper handling of --nostdinc,
2449           (setLibPath): proper handling of --nostdlib
2450         * support/regression/Makefile,
2451         * support/regression/ports/ds390/spec.mk,
2452         * support/regression/ports/gbz80/spec.mk,
2453         * support/regression/ports/hc08/spec.mk,
2454         * support/regression/ports/mcs51/spec.mk,
2455         * support/regression/ports/mcs51-large/spec.mk,
2456         * support/regression/ports/mcs51-stack-auto/spec.mk,
2457         * support/regression/ports/z80/spec.mk: use include and lib files from
2458           built version of sdcc instead of installed version
2459         * doc/sdccman.lyx: fixed typo in --nostdinc
2460
2461 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2462
2463         * src/pic/pcode.c,
2464         * src/pic/device.c,
2465         * src/pic/ralloc.c,
2466         * src/pic/gen.c : added support to generate code for struct bit fields.
2467
2468 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2469
2470         * as/xa51/xa_version.h,
2471         * device/include/errno.h,
2472         * device/include/regc515c.h,
2473         * device/lib/_itoa.c,
2474         * device/lib/_ltoa.c,
2475         * device/lib/ser_ir_cts_rts.c,
2476         * sim/ucsim/xa.src/glob.cc,
2477         * sim/ucsim/xa.src/inst_gen.cc,
2478         * sim/ucsim/xa.src/xa_bit.cc,
2479         * sim/ucsim/xa.src/xa_sfr.cc,
2480         * sim/ucsim/z80.src/inst_dd.cc,
2481         * sim/ucsim/z80.src/inst_fdcb.cc,
2482         * support/scripts/keil2sdcc.pl,
2483         * src/pic16/pic16.dsp,
2484         * src/pic16/pic16a.dsp: corrected cvs line endings
2485         * device/lib/printf_large.c: fixed bug 1057979
2486         * src/pic16/gen.c: fixed non-C standard code
2487         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2488         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2489         * support/regression/ports/mcs51/support.c: reload T1 asap
2490         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2491           pdata use and clear idata startup behaviour
2492         * support/regression/tests/bug1057979.c: added
2493
2494 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2495
2496         * device/examples/ds390/ow390/ad26.h,
2497         * device/examples/ds390/ow390/cnt1d.h,
2498         * device/examples/ds390/ow390/crcutil.c,
2499         * device/examples/ds390/ow390/ownet.h,
2500         * device/examples/ds390/ow390/owsesu.c,
2501         * device/examples/ds390/ow390/swt12.h,
2502         * device/examples/ds390/ow390/swtoper.c,
2503         * device/examples/ds390/ow390/temp10.h,
2504         * device/examples/ds390/ow390/thermodl.c,
2505         * device/examples/ds390/tinitalk/tinitalk.dsp,
2506         * device/examples/ds390/tinitalk/tinitalk.dsw,
2507         * device/examples/mcs51/clock/hw.h,
2508         * device/examples/mcs51/simple2/go.bat,
2509         * device/examples/serialcomm/windows/serial.h,
2510         * device/examples/xa51/dummy.c,
2511         * device/examples/xa51/hello.c,
2512         * device/include/80c51xa.h,
2513         * device/include/at89x051.h: corrected cvs line endings
2514
2515 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2516
2517         * src/pic16/main.c (options): added command line --gstack, to trace
2518         stack over/under flows,
2519         * added pragma 'wparam' to allow passing first byte of function
2520         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2521         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2522         call to __gstack_test function and sets up the symbol as extern,
2523         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2524         * popaop): added call to pic16_testStackOverflow,
2525         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2526         wparamList list,
2527         * (genCall, genPcall): now all parameters are passed via stack
2528         except in functions that are pass to wparam pragma in which WREG is
2529         used too,
2530         * (genPcall): REENTRANT flag is checked to see if variable prototype
2531         contains reentrant keyword, don't call a non-reentrant function, via
2532         a reentrant function pointer or vice versa, functions are never
2533         passed via WREG,
2534         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2535         D.Winkler,
2536         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2537         SIGSEGV when accessing a NULL register stucture,
2538         * (pic16_printGPointerType): modified to handle UPPER modifier for
2539         function initializers, changed prototype of function to simpler one,
2540         * (pic16_printIvalFuncPtr): check to see if function is already
2541         added in externs list,
2542         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2543         optimized a move from W to SFR with a move to the same register
2544         later after a CALL,
2545         * device/lib/pic16/debug: NEW directory, contains debug features
2546         which are enabled when linking with libdebug.lib, currently command
2547         line option --gstack enables stack pointer tracing for over/under
2548         flow, corresponding sources are in debug/gstack
2549
2550 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2551
2552         * doc/sdccman.lyx: updated SDCC version,
2553         * (PIC16 port): update list of command line options,
2554         * src/pic16/device.h (structure pic16_options_t): added field gstack
2555         to enable stack overflow tracing on push/pops,
2556         * src/pic16/device.c (statistics structure): added statistics
2557         structure,
2558         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2559         pic16_dump_int_registers): increase statistics counters for each
2560         * variable which is encountered
2561         * (pic16_dump_usection): emit each .udata variable to its own udata
2562         section,
2563         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2564         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2565         parameters via stack, otherwise use old scheme,
2566         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2567         assembler output file,
2568         * src/pic16/main.c: added command line options --gstack to enable
2569         push/pop tracing for stack overflow,
2570         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2571         instructions): added size of each instruction,
2572         * (pic16_countInstruction): estimate size of instructions in
2573         the_pFile list, inline assembly blocks are not counted,
2574         * (pic16_FixRegisterBanking): trace previous register usage, when
2575         banksel optimizations is greater than 0, don't emit a redudant
2576         banksel directive,
2577
2578 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2579
2580         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2581         * src/pic16/ralloc.c : applied same fix for pic16.
2582         * src/pic/gen.c : tidied it up a little.
2583
2584 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2585
2586         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2587         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2588
2589 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2590
2591         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2592
2593 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2594
2595         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2596         non-reentrant function __modsint in the interrupt function (thus
2597         corrupting math operations during serial I/O)
2598         * device/lib/ser_ir.c: as above, changed buffersize
2599         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2600         256.c,d for zeroing
2601         * doc/Makefile: added option -t for rsync
2602
2603 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2604
2605         * src/SDCCast.h (struct ast),
2606         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2607
2608 2004-10-20 Borut Razem <borut.razem AT siol.net>
2609
2610         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2611         package
2612
2613 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2614
2615         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2616         makefile targets,
2617         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2618         support functions to replace long sequences of MOVFF's from access
2619         bank registers to stack and vice versa,
2620         * src/pic16/device.h: added new field opt_flags, where optimization
2621         flags can be set to enable certain features,
2622         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2623         * pBlock, (genFunction, genEndFunction): surroung loop for
2624         saving/loading used registers in stack with PC_INFO pCodes,
2625         INF_LREGS. Code in between can then be optimized by pCode optimizer
2626         to support function calls,
2627         * (genDataPointerSet): fixed bug which loaded float fields in
2628         structures with corrupt data,
2629         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2630         in a standard way debug info on stderr. Feature used for developing
2631         and debugging only,
2632         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2633         obsolete chunks of code,
2634         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2635         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2636         * pic16/src/pcode.c (pic16_newpCodeInfo,
2637         * (pic16_newpCodeOpLocalRegs),
2638         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2639         feature,
2640         * (pic16_pCodeConstString): printing of the initial value of a
2641         symbol as a comment is inhibited since parsing was already done by
2642         copyStr and output is corrupt,
2643         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2644
2645 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2646
2647         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2648
2649 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2650
2651         * as/mcs51/lkarea.c: removed old K&R style,
2652           (lnksect): changed check on boundary error,
2653           (lnksect2): changed check on boundary error,
2654           (lnksect2): extend XSTK to end of page if size = 1
2655         * as/mcs51/lkmain.c: removed old K&R style,
2656           (Areas51): create l_IRAM symbol
2657         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2658         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2659           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2660         * device/lib/_mullong.c: added version to be compiled with xstack
2661         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2662         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2663         * device/lib/mcs51/crtxstack.asm: fixed comment
2664         * src/SDCCglue.c: maxInterrupts defaults to 0,
2665           (emitMaps): added pdata,
2666           (createInterruptVect): (re)moved default,
2667           (glue): added pdata,
2668           (glue): moved __start__xstack to XSTK with default size 1
2669         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2670           and options.float_rent when options.stackAuto is set,
2671           (linkEdit): only write XDATA_NAME if provided on command line
2672         * src/SDCCmem.h,
2673         * src/SDCCmem.c: added pdata
2674         * src/port.h: added pdata_name to PORT
2675         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2676           (saveRegisters, unsaveRegisters): removed usage of B,
2677           (genMinus): fixed accumulator clash,
2678           (genJumpTab): added comment, this needs another look
2679         * src/mcs51/gen.c: added check for "B in use" paranoia,
2680           added pushB() and popB()
2681         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2682           chance
2683         * src/avr/main.c,
2684         * src/ds390/main.c,
2685         * src/hc08/main.c,
2686         * src/mcs51/main.c,
2687         * src/pic/main.c,
2688         * src/pic16/main.c,
2689         * src/xa51/main.c,
2690         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2691           added PSEG (PAG,XDATA) or NULL to port specifier
2692         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2693         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2694           (_mcs51_genInitStartup): removed __start__xstack equ,
2695           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2696         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2697         * src/z80/gen.c (_rleAppend): fixed warnings
2698         * support/regression/tests/zeropad.c: added pdata test
2699         * .version: bumped to 2.4.6
2700
2701 2004-10-17 Borut Razem <borut.razem AT siol.net>
2702
2703         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2704         as a part of nightly build
2705
2706 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2707
2708         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2709         WREG holds the first byte function parameters,
2710         * (aopForSym): take special case for symbols which are in FARSPACE
2711         but in CODESPACE too,
2712         * (assignResultValue): modified to take into account _G.useWreg,
2713         * (genCall): don't use wreg for parameter passing when function is
2714         declared as reentrant, too, added optimization INCF to stack
2715         pointer when stack parameter count is 1,
2716         * (genFunction, genEndFunction): refurnished and fixed to not using
2717         wreg for passing parameters when function has varargs or is
2718         reentrant, fixed bug with symbol name compare for generating
2719         functions in absolute address,
2720         * (pic16_storeForReturn): refurnished,
2721         * (genCmp): began writing a new version of the function, not ready
2722         yet, therefore it is disabled,
2723         * (genAssign): do not read code memory when assigning a function to
2724         a pointer function,
2725         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2726         array of characters, not pointer,
2727         * (pic16initialComments): in debug mode emit an .ident directive for
2728         the assembler,
2729         * (_process_pragma): emit a new warning type (internal to pic16)
2730         when setting stack to default length, emit a similar warning when
2731         placing a function at absolute address and address is not word aligned
2732         * (_pic16_parseOptions): added 'return TRUE' statement,
2733         * (_pic16_linkEdit): if compiling a source, then add the source's
2734         file object, first in the list of objects to link,
2735
2736 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2737
2738         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2739         * src/pic/main.c : removed VC warning.
2740         * src/pic/gen.c : changed comment.
2741
2742 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2743
2744         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2745         reference to a deprecated symbol _GPTRREG was causing failure to
2746         link. Thanks G. M. Gallant for the info.
2747
2748 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2749
2750         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2751         comments for Bugs item #954788.
2752
2753 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2754
2755         * src/pic16/device.c (pic16_dump_gsection,
2756         * pic16_groupRegistersInSection): handle symbols declared to be in
2757         access bank differently,
2758         * src/pic16/gen.c (struct _G): added field resDirect,
2759         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2760         send values read from stack directly to result and don't allocate
2761         temporary values,
2762         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2763         same registers,
2764         * (pic16_sameRegsOfs): NEW,
2765         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2766         free because they were not allocated from temporary pool,
2767         * pic16_popRegFromString): workaround to fix a problem with
2768         allocating variables twice or never,
2769         * (genGenPointerGet): using PRODL instead of FSR0H,
2770         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2771         instead of FSR0H,
2772         * (genAssign): take advantage of the _G.resDirect flag,
2773         * (genCast): around line 11844, use mov2f instead of directly
2774         MOVFF'ing between operands to account for literal values,
2775         * src/pic16/genutils.c: some new debug functions for gpsim have been
2776         added,
2777         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2778         float with integer part only,
2779         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2780         place variables in access bank
2781         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2782         updated sources to reflect recent changes in gen.c
2783
2784 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2785
2786         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2787         sources that searched for headers in installation path, now the
2788         device/include/pic16 is used,
2789         * src/pic16/glue.c (pic16glue),
2790         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2791         .line directives if not in debug mode, this suppresses assembler's
2792         warnings for ignored directives
2793
2794 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2795
2796         * src/port.h: made reset_regparms prototype void parameter explicit.
2797         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2798         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2799         * doc/sdccman.lyx: documented warning disabling and how to use
2800           printf_large to make it print floats.
2801         * device/include/stdbool.h: NEW
2802         * device/lib/_atof.c,
2803         * device/lib/_divuint.c,
2804         * device/lib/_divulong.c,
2805         * device/lib/expf.c,
2806         * device/lib/printf_large.c,
2807         * device/lib/sincosf.c,
2808         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2809         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2810           a completely reentrant lib.
2811
2812 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2813
2814         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2815         * device/include/pic16/stdio.h: fixed bug with colon
2816
2817 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2818
2819         * device/include/pic16/stdio.h,
2820         * device/include/pic16/stdlib.h,
2821         * device/include/pic16/math.h: NEW
2822         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2823         declared as _naked to reduce overhead
2824         * device/lib/Makefile.in (target port-specific-objects-pic16):
2825         changed * to *.* so to ignore the CVS directory,
2826         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2827         stacked variables back in stack,
2828         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2829         corruption
2830
2831 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2832
2833         * .version: bumped version number to 2.4.5
2834         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2835         * support/Util/SDCCerr.c (messages structure): added entry for
2836         W_POSSBUG2
2837
2838         Large cumulative patch for pic16 port and libraries.
2839         * device/include/pic16/sdcc-lib.h,
2840         * device/include/pic16/stdarg.h,
2841         * device/include/asm/pic16/features.h,
2842         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2843         * device/include/pic16/float.h: changes reentrant keyword with
2844         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2845         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2846         updated target build-libraries to include objects from gptr,
2847         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2848         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2849         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2850         all function headings,
2851         * src/SDCCmain.c: added global parameter userIncDirsSet,
2852         * (parseCmdLine): when option -I is encountered add directory to
2853         userIncDirsSet too,
2854         * src/version.awk: added space between control and long,
2855         * src/pic16/NOTES: added some notes for the port,
2856         * src/pic16/gen.c: added prototype for mov2fp function,
2857         * (fReturnpic16[]): properly named return value registers,
2858         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2859         * (aopForSym): added code to handle symbols with onStack flag set,
2860         symbols onStack are allocated PTRSIZE bytes,
2861         * (aopFreeAsmop): handles special case where asmops are stack objects,
2862         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2863         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2864         added argument lock to trace flaws in allocating temporary registers
2865         when developing port,
2866         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2867         * (pic16_popRegFromString): reenabled allocating a direct register
2868         from string,
2869         * (assignResultValue): various beautifications,
2870         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2871         referenced function argument,
2872         * (genIpush): reenabled to allow stacked arguments, handles only
2873         ic->parmPush iCodes,
2874         * (genCall, genPcall): major changes to allow for variable argument
2875         functions, fixed a bug with falsely restoring stack pointer after
2876         returning from call,
2877         * (genFunction): pending code for critical function,
2878         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2879         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2880         * (genNearPointerGet): fixed bug with indirect reading, was always
2881         reading from INDF0
2882         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2883         pointers,
2884         * (genAddrOf): rewrote code to take address of a stacked function parameter
2885         * (genCast): fixed casting to generic pointer type,
2886         * src/pic16/gen.h: added AOP_STA,
2887         * (struct asmop): added field stk,
2888         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2889         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2890         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2891         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2892         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2893         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2894         generic pointers,
2895         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2896         and library paths,
2897         * (pic16_port structure): generic pointer size is set to 3,
2898         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2899         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2900         compiler warning,
2901         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2902         operand is an iTemp,
2903
2904 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2905
2906         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2907         * debugger/mcs51/simi.c: addapt new syntax of s51
2908
2909 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2910
2911         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2912         * src/pic16/pcode.c: commented out some calls to free() in order to
2913         fix bug #989576,
2914
2915 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2916
2917         * src/SDCCicode.h,
2918         * src/SDCCicode.c (isiCodeInFunctionCall),
2919         * src/avr/ralloc.c (selectSpil),
2920         * src/pic/ralloc.c (selectSpil),
2921         * src/pic16/ralloc.c (selectSpil),
2922         * src/ds390/ralloc.c (selectSpil),
2923         * src/hc08/ralloc.c (selectSpil),
2924         * src/xa51/ralloc.c (selectSpil),
2925         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2926         stack in the middle of a function call sequence (fixes bug #1020268)
2927         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2928         costs associated with the minimum switch case.
2929
2930 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2931
2932         * src/SDCC.lex: fixed bug #1030549
2933
2934 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2935
2936         * src/SDCCcse.h (struct cseDef),
2937         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2938         over a function call if the CSE is derived from a symbol whose
2939         address has been taken (fixes bug #1029883)
2940         * support/regression/tests/bug-1029883: a new regression test for
2941         this bug
2942
2943 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2944
2945         * src/hc08/gen.c (emitinline): fixed bug #1029778
2946         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2947         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2948         and starts toward RFE #905167)
2949
2950 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2951
2952         * src/pic16/gen.c (mov2f): New function to move an operand to
2953         another without considering if it is a literal or a register,
2954         * (pic16_sameRegs): don't check if they are both AOP_REG,
2955         * (AccRsh): removed andmask=0 lines,
2956         * (genLeftShift): duplicated to be improved in future versions,
2957         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2958         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2959         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2960         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2961         * (insertBankSwitch): fixed inserting banksel directives algorithm
2962         for instructions that follow a skip instruction, this fixes a report
2963         for broken subtraction code generation,
2964         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2965         iCode is a left op, just in case result and right share the same
2966         registers
2967
2968 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         * src/hc08/main.c,
2971         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2972         preservation of HX
2973         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2974         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2975         on 2004-09-12; it was buggy
2976
2977 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2978
2979         * src/SDCCsymt.h: removed RESULT_CHECK
2980         * src/SDCCast.c,
2981         * src/SDCCglue.c,
2982         * src/SDCCval.c,
2983         * src/pic/glue.c,
2984         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2985
2986 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2987
2988         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2989         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2990         configuration values no more rejected by compiler, they are assigned
2991         to configuration registers with a warning message instead,
2992         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2993         the for-loop so last conf register is emitted too,
2994         * (_pic16_initPaths): link library libsdcc.lib by default,
2995         * (_hasNativeMulFor): modified test for multiplication according to
2996         Raphael Neider's remarks. Integer multiplication is also done with
2997         support functions,
2998         * device/include/pic16/pic18fregs.h: corrected type error in while
2999         testing and including 18f6720 header file
3000
3001 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3002
3003         * src/pic16/device.h (pic16_options): removed field use_crt,
3004         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3005         until an optimization to handle single bits is added,
3006         * (pic16_loadFSR0): moved before genUnpackBits,
3007         * (genAnd): some white lines removed,
3008         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3009         leave_reset flags in pic16_options when using crt modules,
3010
3011 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3012
3013         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3014           for bugs 898889 & 979599. Also used some safer print instructions.
3015
3016 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3017
3018         * src/pic16/device.h (pic16_options_t): added field use_crt,
3019         crt_name, no_crt,
3020         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3021         catch a probable future bug,
3022         * src/pic16/gen.c: aopIdx function commented out,
3023         * (genAssign): commented out old code which used aopIdx,
3024         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3025         code, added if conditionals to take into account the --use-crt
3026         command line options,
3027         * src/pic16/main.c (pic16_optionsTable): added new command line
3028         options, --use-crt= and --no-crt,
3029         * (_pic16_linkEdit): now the proper crt object is added in the
3030         linker command line except than when --no-crt is specified,
3031         * src/pic16/pcode.c,
3032         * src/pic16/pcode.h: added some structures and functions for a new
3033         optimization scheme to compansate for instruction overhead between
3034         same iCodes, this scheme is currently under development and is not
3035         working in any way,
3036         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3037         to && operator,
3038         * device/lib/pic16/startup/crt0i.c,
3039         * device/lib/pic16/startup/crt0iz.c: added global char variable
3040         __uflags to force the generation of an idata section
3041
3042 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3043
3044         * doc/Makefile,
3045         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3046         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3047
3048 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3049
3050         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3051         Frieder) and clarified the default code optimization mode
3052
3053 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3054
3055         * src/SDCC.lex (doPragma, process_pragma),
3056         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3057         "opt_code_size", and "opt_code_balanced"
3058         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3059         regrouped options by category, added support for category headers
3060         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3061         and "--opt-code-size"
3062         * doc/sdccman.lyx: documented these new options and pragmas
3063         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3064         preference into account
3065
3066 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3067
3068         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3069           geniCodePreDec): Fixed bug 904237 by generating a warning
3070         * src/SDCCerr.h,
3071         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3072
3073 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3074
3075         * src/pic/device.c : When no max ram set validate full memory range.
3076         * src/pic/pcode.c,
3077         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3078
3079 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3080
3081         * device/lib/_gptrget.c,
3082         * device/lib/_gptrput.c: updated comment
3083         * device/lib/calloc.c,
3084         * device/lib/free.c,
3085         * device/lib/malloc.c,
3086         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3087         * src/SDCCcse.c (cseBBlock),
3088         * src/SDCCicode.c (printOperand, geniCodeArray),
3089         * src/SDCCicode.h (struct operand): fixed bug 868103
3090         * support/regression/tests/bug-868103.c: added
3091         * src/SDCCast.c (searchLitOp),
3092         * src/SDCCcse.h (struct cseDef),
3093         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3094         * src/SDCCicode.h (struct operand),
3095         * src/SDCCsymt.h (struct sym_link),
3096         * src/avr/gen.c (hasInc),
3097         * src/ds390/gen.c (hasInc),
3098         * src/hc08/gen.c (genPlusIncr, hasInc),
3099         * src/mcs51/gen.c (hasInc),
3100         * src/pic16/glue.c (pic16_printIvalChar),
3101         * src/pic16/ralloc.c (regWithIdx),
3102         * src/xa51/gen.c (hasInc) : removed warnings
3103         * src/SDCCast.c (createBlock): added comment ???
3104         * src/hc08/ralloc.c: updated comments
3105
3106 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3107
3108         * doc/sdccman.lyx: updated section on switch statements, added
3109         section about semaphore locking
3110         * doc/Makefile: added option -info for latex2html
3111         * device/lib/_gptrget.c,
3112         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3113
3114 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3115
3116         * src/pic/device.h,
3117         * src/pic/device.c,
3118         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3119          maxram is less than 0x100.
3120
3121 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3122
3123         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3124
3125 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3126
3127         * src/port.h,
3128         * src/mcs51/main.c,
3129         * src/ds390/main.c,
3130         * src/z80/main.c,
3131         * src/hc08/main.c,
3132         * src/pic/main.c,
3133         * src/pic16/main.c,
3134         * src/avr/main.c,
3135         * src/xa51/main.c
3136         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3137         a jump table is the best form for a switch statement, including
3138         automatic insertion of missing cases to make the case range
3139         continuous. Developed in collaboration with Frieder Ferlemann.
3140
3141 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3142
3143         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3144         accumulator result if it needs sign extension
3145
3146 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3147
3148         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3149
3150 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3151
3152         * device/lib/gbz80/printf.c,
3153         * device/lib/z80/printf.c: removed define for NULL
3154
3155 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3156
3157         * as/xa51/xa_link.c,
3158         * device/examples/ds390/ow390/ad26.c,
3159         * device/examples/ds390/ow390/cnt1d.c,
3160         * device/examples/ds390/ow390/counter.c,
3161         * device/examples/ds390/ow390/ds2480.h,
3162         * device/examples/ds390/ow390/ds2480ut.c,
3163         * device/examples/ds390/ow390/findtype.c,
3164         * device/examples/ds390/ow390/gethumd.c,
3165         * device/examples/ds390/ow390/owllu.c,
3166         * device/examples/ds390/ow390/ownetu.c,
3167         * device/examples/ds390/ow390/swt12.c,
3168         * device/examples/ds390/ow390/swtloop.c,
3169         * device/examples/ds390/ow390/temp.c,
3170         * device/examples/ds390/ow390/temp10.c,
3171         * device/examples/ds390/ow390/thermo21.c,
3172         * device/examples/ds390/ow390/tinilnk.c,
3173         * device/examples/ds390/ow390/tstfind.c,
3174         * device/examples/serialcomm/windows/serial.cpp,
3175         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3176         * device/include/reg51.h: fixed line endings for cvs
3177
3178 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3179
3180         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3181         packRegsForAccUse, packRegisters): new accumulator register
3182         packing algorithm
3183         * support/regression/ports/hc08/support.c (_putchar): suppress
3184         warning of unused variable
3185         * src/SDCCicode.c: added SWAP entry to codeTable
3186
3187 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3188
3189         * device/lib/sprintf.c: forgot to add this file before previous commit
3190
3191 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3192
3193         * src/pic16/gen.c (genPackBits): added operand right in function
3194         parameters, load result directly if p_type is POINTER (that is
3195         called by genNearPointerSet)
3196         * (genUnPackBits): added operand left in function parameters,
3197         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3198         FSR0 if accessing bitfields,
3199
3200 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3201
3202         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3203           _print_format; updated printf, sprintf, vsprintf
3204         * device/include/asm/default/features.h: corrected comment/define
3205         * device/lib/Makefile.in: added sprintf.c
3206         * device/lib/libsdcc.lib: added sprintf module
3207         * device/lib/printf_large.c,
3208         * device/lib/vprintf.c,
3209         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3210           into these 3 files
3211         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3212         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3213         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3214           hc08 test
3215         * support/regression/tests/zeropad.c: define idata as data for hc08
3216
3217 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3218
3219         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3220         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3221         labels are referenced at least once (even if a reference is not found)
3222         * src/hc08/gen.c (emitcode): set isComment flag for comments
3223         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3224         loads), rules 6a..6b (optimize jumps to return)
3225
3226 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3227
3228         * device/lib/acosf.c (acosf),
3229         * device/lib/asinf.c (asinf),
3230         * device/lib/atanf.c (atanf),
3231         * device/lib/ceilf.c (ceilf),
3232         * device/lib/cosf.c (cosf),
3233         * device/lib/coshf.c (coshf),
3234         * device/lib/cotf.c (cotf),
3235         * device/lib/fabsf.c (fabsf),
3236         * device/lib/floorf.c (floorf),
3237         * device/lib/log10f.c (log10f),
3238         * device/lib/logf.c (logf),
3239         * device/lib/sinf.c (sinf),
3240         * device/lib/sinhf.c (sinhf),
3241         * device/lib/sqrtf.c (sqrtf),
3242         * device/lib/tanf.c (tanf),
3243         * device/lib/tanhf.c (tanhf),
3244         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3245         replaced all instances of "reentrant" in the library functions
3246         defined in math.h with this macro.
3247         * support/regression/tests/float_trans.c: reenabled test for hc08
3248
3249 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3250
3251         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3252         erroneously deleted
3253
3254 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3255
3256         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3257         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3258         multi-byte volatile operands are used
3259         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3260         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3261         initialization to area GSINIT0 so that it would always precede
3262         any static initializers in GSINIT
3263         * support/regression/tests/zeropad.c: fixed idata define for hc08
3264         * support/regression/tests/bug-927659.c,
3265         * support/regression/tests/float_trans.c: disabled tests for hc08
3266         pending missing library routines
3267         * .version: increased version number to 2.4.4 - hc08 port now passes
3268         regression tests
3269
3270
3271 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3272
3273         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3274         * Makefile.common.in,
3275         * as/Makefile,
3276         * as/hc08/Makefile.in,
3277         * as/mcs51/Makefile.in,
3278         * as/z80/Makefile.in,
3279         * debugger/mcs51/Makefile.in,
3280         * device/include/Makefile.in,
3281         * device/lib/Makefile.in,
3282         * doc/Makefile,
3283         * link/Makefile,
3284         * link/z80/Makefile.in,
3285         * packihx/Makefile.in,
3286         * sim/ucsim/main_in.mk,
3287         * sim/ucsim/avr.src/Makefile.in,
3288         * sim/ucsim/doc/Makefile.in,
3289         * sim/ucsim/gui.src/serio.src/Makefile.in,
3290         * sim/ucsim/hc08.src/Makefile.in,
3291         * sim/ucsim/s51.src/Makefile.in,
3292         * sim/ucsim/xa.src/Makefile.in,
3293         * sim/ucsim/z80.src/Makefile.in,
3294         * src/Makefile.in,
3295         * support/cpp2/Makefile.in,
3296         * support/librarian/Makefile,
3297         * support/makebin/Makefile: added DESTDIR to the install path proposed
3298         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3299         * doc/sdccman.lyx: added DESTDIR documentation
3300
3301 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3302
3303         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3304         instruction for interrupt handlers, use fast returns when returning
3305         from high priority interrupts
3306
3307 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3308
3309         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3310         code generation
3311         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3312         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3313         bugs, ported much of Bernhard's code from mcs51
3314         * src/mcs51/gen.c (genSend),
3315         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3316         than one when calling a reentrant function
3317         * device/lib/_mullong.c: defined an alternate struct layout for big
3318         endian ports (hc08)
3319
3320 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3321
3322         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3323         test
3324
3325 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3326
3327         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3328         are sane and complete before asking the port its prefered parameter
3329         passing method (fixes bug #1017633)
3330         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3331         and _ret3
3332
3333 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3334
3335         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3336         problem in bitfields >= 8 bits.
3337
3338 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3339
3340         * src/SDCCsymt.c: undid changes that were not meant to be committed
3341
3342 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3343
3344         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3345
3346 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3349           copied and wrong bit got inverted
3350
3351 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3352
3353         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3354         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3355         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3356         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3357         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3358         assignments to bitfields at known addresses
3359         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3360         reads from bitfields at known addresses
3361         * src/hc08/ralloc.c (packRegisters),
3362         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3363         genhc08Code): optimize pointer get values used as conditionals
3364         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3365         and branch
3366
3367 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3368
3369         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3370         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3371         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3372         as conditionals
3373
3374 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3375
3376         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3377
3378 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3379
3380         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3381         related problems
3382
3383 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3384
3385         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3386
3387 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3388
3389         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3390         mcs51 port
3391
3392 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3393
3394         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3395
3396 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3397
3398         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3399         cases use more compact code.
3400
3401 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3402
3403         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3404
3405 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3406
3407         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3408
3409 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3410
3411         * src/SDCCsymt.h,
3412         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3413         parameter of changePointer() from symbol* to sym_link*
3414         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3415         * src/SDCCsymt.c (compareType): void* type is castable to other
3416         pointers, but not necesarily an exact match.
3417         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3418         is no longer blindly treated as an exact match.
3419         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3420
3421 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3422
3423         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3424
3425 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3426
3427         * src/pic/gen.c,
3428         * src/pic/pcode.c,
3429         * src/pic/ralloc.h,
3430         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3431
3432 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3433
3434         * src/pic/device.c,
3435         * src/pic/device.h,
3436         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3437
3438 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3439
3440         * src/mcs51/gen.c (emitcode): fixed bug #992819
3441
3442 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3443
3444         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3445           there's no need to make it worse
3446
3447 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3448
3449         * src/mcs51/ralloc.c (deassignLR),
3450         * src/ds390/ralloc.c (deassignLR),
3451         * src/hc08/ralloc.c (deassignLR),
3452         * src/z80/ralloc.c (deassignLR),
3453         * src/pic/ralloc.c (deassignLR),
3454         * src/pic16/ralloc.c (deassignLR),
3455         * src/avr/ralloc.c (deassignLR),
3456         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3457         rlivePoint): fixed another part of bug #971834
3458
3459 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3460
3461         * src/z80/main.c: enabled "critical" keyword
3462         * src/z80/mappings.i,
3463         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3464         functions (fixes bug #979646)
3465         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3466
3467 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3468
3469         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3470           such as c:\mydir.
3471
3472 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3475           doesn't disable too much optimizations
3476
3477 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3478
3479         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3480
3481 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3482
3483         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3484
3485 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3486
3487         * src/pic/gen.c tidied up tabs
3488         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3489         * src/pic/main.c tidied up tabs
3490         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3491         * src/pic/pcoderegs.c tidied up tabs
3492         * src/pic/ralloc.c tidied up tabs
3493
3494 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3495
3496         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3497         to S_FIXED for pic16 port and when symbol is not in level 0,
3498         allocate for S_REGISTER storage class and pic16 port, too,
3499         * src/pic16/device.h: prototype for checkSym,
3500         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3501         * (pic16_assignConfigWordValue): test the value and the mask to
3502         validate that the value is suitable for the configuration word,
3503         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3504         collect extern declared symbols, don't emit symbol twice, check
3505         first if symbol is in publics set first,
3506         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3507         * added command line '--fstack' which enables an experimental
3508         feature for stack access, too buggy to be used yet...
3509         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3510         * (pic16_allocDirReg): when register has storage class S_REGISTER
3511         allocate in pic16_dynAccessRegs,
3512         * device/include/pic16/pic18f????.h: modified configuration word
3513         naming convention, words started as CONFIG0H but should be CONFIG1H
3514
3515 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3516
3517         * device/include/mcs51reg.h: fixed bug 970993
3518
3519 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3520
3521         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3522         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3523         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3524         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3525         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3526         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3527           error/warning numbers,
3528           added function setWarningDisabled()
3529         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3530         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3531           _memcmp.c _memmove.c calloc.c realloc.c free.c
3532         * support/regression/tests/malloc.c: added tests for new functionality
3533         * support/regression/tests/zeropad.c: added tests for truncated initializers
3534           and initialized char arrays starting with '\x0'
3535         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3536
3537 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3538
3539         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3540
3541 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3542
3543         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3544         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3545         peephole 177.e. Thanks to anonymous
3546
3547 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3548
3549         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3550         function isn't used in the source but referenced as a
3551         variable initializer then declare it as extern in .asm file
3552
3553 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3554
3555         * .version: increased version number to 2.4.3
3556
3557         Adding version extension according to ChangeLog CVS revision
3558         * src/Makefile.in (target all): added dependency 'version.h'
3559         * (rule version.h): added rule to create version.h from ChangeLog,
3560         * (rule dep): added dependency version.h,
3561         * src/version.awk: AWK script to create version.h
3562         * src/SDCCdwarf2.c (dwWriteModule),
3563         * src/SDCCglue.c (initialComments),
3564         * src/SDCCmain.c (printVersionInfo): modified to write after
3565         version string the version extension number,
3566         * src/SDCCutil.c: included "version.h"
3567         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3568         number,
3569         * src/SDCCutil.h: added prototype for getBuildNumber
3570
3571         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3572         includeDirsSet, too,
3573         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3574         const char [] is found in function prototype...
3575
3576         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3577         moving to WREG with source is already in WREG,
3578         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3579         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3580         * (aopForSym): stack'ed symbols are partially supported, added
3581         if-clause to support symbols in FARSPACE,
3582         * (sameRegs): added test for AOP_ACC to see if registers are same,
3583         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3584         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3585         * (pic16_popRegFromString): will not allocate a new register if it
3586         doesn't find one by name, bug may have introduced...
3587         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3588         * (genIpush): revived to use pic16 port's stack,
3589         * (genAddrOf): added incomplete case for stack'ed operand,
3590         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3591         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3592         can handle multibyte operands,
3593         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3594         * (pic16initialComments): added message for MPLAB compatibility
3595         mode enabled,
3596         * src/pic16/main.h: prototype for pic16_mplab_comp,
3597         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3598         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3599         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3600         because of increased complexity of procedure,
3601         * (_process_pragma): stack pragma changed to format 'stack pos len',
3602         emit symbol '_stack_end' to conform with gplink,
3603         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3604         to search for register,
3605         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3606         PO_GPR_REGISTER,
3607         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3608         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3609         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3610         case for PO_GPR_REGISTER,
3611         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3612         dies, the new era is ahead !...
3613         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3614         pic16_dynInternalRegs,
3615         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3616         * (pic16_allocDirReg): minor optimizations and bug fixes,
3617         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3618
3619         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3620         load stack and frame pointer with address of 'stack_end' symbol
3621
3622 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3623
3624         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3625         without source code but only variable initializers
3626
3627 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3628
3629         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3630         external are not declared as extern to reduce overhead while linking
3631
3632 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3633
3634         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3635
3636 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3637
3638         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3639           Yee Keat for the patch
3640         * src/SDCCast.c (decorateType): fixed bug #979599
3641         * src/ds390/gen.h: removed local fReturnSizeDS390
3642         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3643         * src/ds390/gen.c (genAnd, genOr, genXor),
3644         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3645
3646 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3647
3648         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3649         add relFilesSet to $3, manipulate $2 to handle linking of object
3650         files without source files in command line,
3651         * device/include/pic16 (all headers): added ID location macros,
3652         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3653         entries for ID location bytes,
3654         * (pic16_assignIdByteValue): NEW,
3655         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3656         added field dumpcalltree to pic16_options_t,
3657         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3658         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3659         emitting rFalseIfx label after check_carry label,
3660         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3661         pic16_emitDIRegs), NEW
3662         * (pic16glue): dump .calltree file when option --calltree found,
3663         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3664         * (_pic16_genAssemblerPreamble): emit ID locations after
3665         configuration registers,
3666         * (pic16_linkCmd): modifications of the link command,
3667         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3668         * (pic16_pCodeInitRegisters): don't init stack registers,
3669         * (pic16_findPrevInstruction): fixed bug,
3670         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3671         bug with immediate registers,
3672         * (buildCallTree): traces stack push and pop,
3673         * (pct2): dump also stack usage for each function,
3674         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3675         * (pic16_allocDirReg): various modifications,
3676         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3677         fixed to 1,
3678
3679 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3680
3681         * src/pic16/pcode.c: removed buggy double colon
3682
3683 2004-07-01 Borut Razem <borut.razem AT siol.net>
3684
3685         * support/scripts/sdcc.nsi: added include/pic16 to setup
3686
3687 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3688
3689         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3690         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3691         target 'clean',
3692         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3693         specific command line arguments. Also added sample lkr script
3694         for placing a variable at a specific memory bank.
3695         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3696         at a specific memory bank,
3697         * (pic16_dump_isection): fixed bug which caused string literals to
3698         be omitted when dumping idata section,
3699         * (pic16_groupRegistersInSection): added code to handle registers
3700         in specific memory banks,
3701         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3702         public, all references are renamed too,
3703         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3704         AOP_DPTR2,
3705         * (pic16_storeForReturn): added case to handle when dest is WREG,
3706         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3707         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3708         pic16_rel_udata, check to see if that register is marked as being
3709         a member of a specific memory bank,
3710         * (pic16_printIvalCharPtr): added code to add string literals either
3711         to code or the idata sections,
3712         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3713         also accept the 'udata' pragma,
3714         * src/pic16/main.h: new structure types sectName and sectSym
3715         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3716         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3717         * (pic16_findPrevInstruction): fixed, it returned nothing,
3718         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3719         instruction combinations,
3720         * (pic16_FixRegisterBanking): heavily reorganised,
3721         * (pic16_AnalyzeBanking): if generating banksel directives is
3722         disabled, then don't call FixRegisterBanking at all,
3723         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3724         completely removed,
3725         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3726
3727 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3728
3729         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3730         Phuah Yee Keat <yk.phuah AT nestac.com>
3731
3732 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3733
3734         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3735         correctly the IVT even if it is relocated to some other location
3736
3737 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3738
3739         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3740         * device/include/pic16/pic18f2220.h: NEW,
3741         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3742         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3743         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3744         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3745         nodefaultlibs, ivt_loc is the location of the interrupt vector
3746         table, and nodefaultlibs signs that default libraries should not be
3747         linked in link stage,
3748         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3749         according to --ivt-loc argument,
3750         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3751         when pragma stack is found,
3752
3753 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3754
3755         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3756         256 (range check), 257 (do while), 258.a-f (bit banging
3757         f.e. on 3-wire SPI bus)
3758
3759 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3760
3761         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3762         variables used exclusively within a loop
3763
3764 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3765
3766         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3767
3768 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3769
3770         * src/SDCClrange.c (computeClash): fixed bug #971834
3771
3772 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3773
3774         * src/mcs51/gen.c (genCmp): fixed bug #975903
3775         * src/hc08/gen.c (operandsEqu),
3776         * src/ds390/gen.c (operandsEqu),
3777         * src/z80/gen.c (operandsEqu),
3778         * src/pic/gen.c (operandsEqu),
3779         * src/pic16/gen.c (operandsEqu),
3780         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3781         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3782
3783 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3786
3787 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3788
3789         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3790         default case in switch statement,
3791         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3792         to eliminate problem with initialisation of pointers, but problem
3793         still exists,
3794         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3795         * (emitStaticSegment): removed various lines emitting debug info,
3796         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3797         added processor registers for utilizing EEPROM,
3798         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3799         configurable and set 8
3800
3801 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3802
3803         * .version: increased version number to 2.4.2,
3804
3805         Cumulative patch for pic16 port
3806         * src/pic16/device.c: changed scheme to dump initial values for
3807         variables in idata segment, all print_idata* functions were removed,
3808         now the pic16_printIval* will be called,
3809         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3810         * _pic16_printPointerType, pic16_printPointerType,
3811         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3812         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3813         NEW, similar to the respective functions in SDCCglue.c,
3814         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3815         way, emitting hex bytes,
3816         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3817
3818 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3819
3820         * src/avr/ralloc.c (serialRegAssign),
3821         * src/xa51/ralloc.c (serialRegAssign),
3822         * src/pic/ralloc.c (serialRegAssign),
3823         * src/pic16/ralloc.c (serialRegAssign),
3824         * src/hc08/ralloc.c (serialRegAssign),
3825         * src/z80/ralloc.c (serialRegAssign),
3826         * src/ds390/ralloc.c (serialRegAssign),
3827         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3828
3829 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3830
3831         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3832         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3833
3834 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3835
3836         Cumulative patch for pic16 port:
3837         * src/pic16/device.h (typedef PIC16_device) modified fields for
3838         defining microcontrollers,
3839         * src/pic16/device.c: added new info for all devices in Pics16 array,
3840         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3841         to be optimised out by the pCode optimiser,
3842         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3843         specially, bug reported by G.M. Gallant,
3844         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3845         as force'd so that cannot be optimised out by pCode optimiser,
3846         * src/pic16/pcode.c,
3847         * src/pic16/pcodepeeph.c,
3848         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3849         they are disabled by default, but can be enabled explicit with
3850         command argument --denable-peeps, for testing,
3851         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3852         --pomit-ivt in COMPILE_FLAGS
3853
3854 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3855
3856         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3857           compilation on MSVC
3858
3859 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3860
3861         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3862
3863 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3864
3865         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3866         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3867
3868 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3869
3870         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3871         would only assign 0x300001 register.
3872
3873 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3874
3875         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3876         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3877
3878 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3879
3880         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3881         for ds80c400
3882         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3883         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3884         added peephole 254 (left shift), 255 (jump table)
3885
3886 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3887
3888         * device/lib/Makefile.in: removed comment line with model-pic16,
3889         * (target port-specific-objects-pic16): the libraries and objects
3890         are copied to the build directory form the device/lib/pic16/bin
3891         directory
3892
3893         Cumulative patch concerning pic16 port:
3894         * library directory has been re-organized,
3895         * added support for PIC18F1220,
3896         * added headers and library sources for chips 18f1220,18f6520,
3897         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3898
3899         * configuration registers setting has changed, now each supported
3900         device has a complete description of the registers it uses,
3901         * all initialisations are moved to idata sections, these section
3902         can be absolute or relocatable,
3903         * fixed initialisation of codespace variables,
3904         * fixed warning about PCLATU and gpsim,
3905         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3906         * (genAssign): use table reads when assigning from variables in codespace,
3907         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3908         char/int variables placed in codespace,
3909         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3910         registers set in .asm file, no need for --pomit-config-words anymore,
3911         * (pic16glue): some 8051 legacy segments are commented out
3912         (to be removed completely),
3913         * added support for alternative assembler and linker with --asm=
3914         and --link= command line arguments,
3915         * peepholes are disabled automatically in the port, no need to
3916         specify on command line,
3917         * port supports natively char/int/long multiplication, but converts
3918         all divisions to support functions,
3919         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3920         to the file set in variable $2,
3921         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3922         strings in ASCII format and not in hex,
3923         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3924         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3925         allocate proper register if iCodes aren't temporary,
3926
3927 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3928
3929         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3930
3931 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3932
3933         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3934         is commented out
3935
3936 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3937
3938         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3939         computed address is reused
3940         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3941         multi-byte bitfields
3942
3943 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3944
3945         * src/z80/gen.c: (genArrayInit): must check for pointers too
3946
3947 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3948
3949         * support/regression/tests/zeropad.c: never meant to commit the
3950           nestedstruct test: removed, added check for GCC version
3951
3952 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3953
3954         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3955         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3956         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3957           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3958           bugs 928906 and 954082 half-empty initializers
3959         * src/SDCCsymt.h,
3960         * src/SDCCsymt.c (getAllocSize): added for above fix
3961         * src/z80/gen.c (genArrayInit): fixed bug 741044
3962         * support/regression/tests/zeropad.c: added tests
3963
3964 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3965
3966         * src/pic16/device.c (pic16_dump_section): corrected bug which
3967         caused some symbols of the libraries to be misplaced
3968
3969 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3970
3971         * src/pic16/glue.c,
3972         * src/pic16/ralloc.h,
3973         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3974         to fix conflict with pic port
3975
3976 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3977
3978         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3979         externs configuration variables,
3980         * src/pic16/ralloc.h,
3981         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3982         prototype in header, commented out some debug messages
3983
3984 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3985
3986         * src/pic16/glue.c,
3987         * src/pic16/main.c,
3988         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3989         for gpasm COFF object generation. Thanks to D. Hawkins for
3990         his patch info
3991
3992 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3993
3994         * src/ds390/main.c,
3995         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3996         Brock for spotting this)
3997         * src/ds390/gen.c (genEndFunction),
3998         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3999         interrupt handler and critical. Disable push/pop optimizations when
4000         peephole optimizations disabled.
4001
4002 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4003
4004         Updated pic16 library sources and headers.
4005         * device/lib/pic16/pic18f*/ ,
4006         * device/include/pic16/*.h: modified to handle structured SFR
4007         definitions
4008
4009 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4010
4011         * src/port.h (PORT structure): added hook initPaths, now each
4012         port can declare its own default search paths,
4013         which can been seen with the --print-search-dirs option,
4014         see pic16 port for example,
4015         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4016         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4017         * (doPrintSearchDirs): NEW, replaces in a central manner the
4018         printing of search dirs which was split in set*Paths functions,
4019         * (main): added call to port->initPaths and doPrintSearchDirs,
4020         * src/avr/main.c,
4021         * src/ds390/main.c,
4022         * src/hc08/main.c,
4023         * src/izt/i186.c,
4024         * src/izt/tlcs900h.c,
4025         * src/mcs51/main.c,
4026         * src/pic/main.c,
4027         * src/pic16/main.c: modified port structures to reflect addition of
4028         initPaths hook,
4029
4030         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4031         * (pic16_dump_section): for registers in same address reserve memory once,
4032         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4033         to no_banksel,
4034         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4035         result is greater in size than right or left,
4036         * (pic16_genUMult8X8_8): there are some cases where the result can
4037         be 16 bits size, so handle these,
4038         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4039         * (pic16_outBitC): modified to emit pcodes,
4040         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4041         or not,
4042         * (genDivOneByte): implemented algorithm to divide 8-bits,
4043         * (genCmp): uncommented goto, but issues still exist,
4044         * (genAnd): fixed a bug with variables >8bits,
4045         * (genPackBits): optimization added that uses BCF/BSF to change a
4046         single bit,
4047         * (genAssign): fixed bug when assigning floating point literals,
4048         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4049         __sdcc_gsinit_startup label,
4050         * src/pic16/main.c (_pic16_init): removed search directory
4051         initialisations,
4052         * (_pic16_initPaths): NEW, used to initialise search directories,
4053         * (_hasNativeMulFor): support functions for all except char/int
4054         multiplication, and char division,
4055         * (PIC16_port struct): modified entry for native mul support,
4056         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4057         no_banksel option,
4058         * (buildCallTree): call to register_usage is ifdef'ed out,
4059
4060 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4061
4062         * device/include/string.h: applied Stas Sergeev's patch to make this
4063         header file compatible with the preprocessor -Wundef option
4064         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4065         failure (fixes bug #941458)
4066
4067 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4068
4069         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4070         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4071         that the variable, not the function, should be static
4072         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4073         to be consistent with non-literal case
4074
4075 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * src/SDCCast.c (isConformingBody): fixed bug #949967
4078         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4079         convilong): fixed bug #952086
4080
4081 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4082
4083         * src/SDCCmem.c (allocVariables): fixed bug #955321
4084
4085 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * src/hc08/main.c (_hc08_genAssemblerEnd),
4088         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4089         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4090         completely eliminated the use of a temporary file
4091         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4092         when more than one file linked
4093         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4094
4095 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4096
4097         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4098         which fixes bug #543481
4099         * support/regression/tests/bug-751703.c: fixed comments left from a
4100         cut and paste error
4101         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4102         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4103         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4104         scopes
4105         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4106         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4107         are now changed to underscores in moduleName
4108
4109 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4110
4111         * as/mcs51/lkmem.c: better fix for bug #954173
4112
4113 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4114         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4115
4116         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4117         * device/include/c8051f000.h,
4118         * device/include/c8051f120.h,
4119         * device/include/c8051f300.h,
4120         * device/include/c8051f310.h,
4121         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4122         PWM16) and detab'ed
4123
4124 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4125
4126         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4127         and mailing lists, doc'ed --no-peep-comments, removed reference
4128         to knoppix (newest version has no LyX/LaTeX), other minor changes
4129         * src/SDCCglue.c (glue): save 2 bytes stack space with
4130         option --main-return. The ljmp could probably be avoided too
4131
4132 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4133
4134         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4135
4136 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4137
4138         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4139         * src/SDCCopt.c (isLocalWithoutDef),
4140         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4141         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4142         (credit to Maarten Brock for patch #949363, on which this is based)
4143         * support/regression/tests/bug-751703.c: some test cases of extern used
4144         within inner scopes.
4145
4146 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4147
4148         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4149         SPEC_STRUCT
4150         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4151         struct definitions
4152         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4153         dwWriteLabel): fix to create valid debugger symbols even when
4154         the module name has non-alphanumeric symbols in it
4155         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4156         when a variable's allocation has been optimized away
4157
4158
4159 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4160
4161         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4162         * src/hc08/main.c,
4163         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4164         * src/mcs51/main.c,
4165         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4166         * src/ds390/main.c,
4167         * src/z80/gen.c (z80_emitDebuggerSymbol),
4168         * src/z80/main.c,
4169         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4170         * src/pic/main.c,
4171         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4172         * src/pic16/main.c,
4173         * src/avr/gen.c (avr_emitDebuggerSymbol),
4174         * src/avr/main.c,
4175         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4176         * src/xa51/main.c,
4177         * src/SDCCdebug.c (emitDebuggerSymbol),
4178         * src/SDCCdebug.h,
4179         * src/port.h: added a debugger struct to the port struct. Added a
4180         callback for defining debugger symbols
4181
4182         * src/SDCCast.c (createLabel),
4183         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4184         with isitmp = 1
4185         * src/SDCCicode.h,
4186         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4187         iCode back to the ast for the function
4188
4189         * src/hc08/ralloc.c (hc08_assignRegisters),
4190         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4191         unneeded fields from the regs struct.
4192         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4193         pushReg() & pullReg() functions instead of emitcode()
4194
4195         * src/hc08/gen.c (genLabel, genhc08Code),
4196         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4197
4198         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4199         debugger hooks
4200
4201         * src/hc08/gen.c (genEndFunction, genhc08Code),
4202         * src/hc08/gen.h,
4203         * src/mcs51/gen.c (genEndFunction, gen51Code),
4204         * src/mcs51/gen.h,
4205         * src/ds390/gen.c (genEndFunction, gen390Code),
4206         * src/ds390/gen.h,
4207         * src/z80/gen.c (genEndFunction, genZ80Code),
4208         * src/z80/gen.h,
4209         * src/z80/z80.h,
4210         * src/pic/gen.c (genEndFunction, genpic14Code),
4211         * src/pic/gen.h,
4212         * src/pic16/gen.c (genEndFunction, genpic16Code),
4213         * src/pic16/gen.h,
4214         * src/avr/gen.c (genEndFunction, genAVRCode),
4215         * src/avr/gen.h,
4216         * src/xa51/gen.c (genEndFunction, genXA51Code),
4217         * src/xa51/gen.h,
4218         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4219         specific code to cdbFile.c and out of the backend code generators
4220
4221         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4222         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4223         starting address is now 0
4224
4225         * as/hc08/asm.h,
4226         * as/hc08/m08pst.c,
4227         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4228         assembler directive for DWARF support
4229         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4230
4231         * src/src.dsp,
4232         * src/Makefile.in,
4233         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4234
4235 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4236
4237         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4238         and inappropriate peephole optimization in jump tables
4239
4240 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4241
4242         * as/hc08/m08pst.c,
4243         * src/SDCCglue.c: sdccopt works for the hc08 port now
4244
4245 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4246
4247         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4248
4249 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4250
4251         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4252
4253 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4256         rules
4257         * src/SDCCmain.c,
4258         * src/SDCCglobl.h,
4259         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4260         comments from the peephole optimizer replacement rules
4261         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4262         symbols
4263         * src/SDCCcse.c (updateSpillLocation),
4264         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4265         equivalents
4266         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4267         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4268         objects far pointers
4269
4270 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4271
4272         * src/SDCCsymt.h: a missing part of my last change
4273         * src/pic/ralloc.c (regTypeNum),
4274         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4275
4276 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * src/SDCCicode.h,
4279         * src/SDCCicode.c (aggrToPtrDclType),
4280         * src/SDCCptropt.h,
4281         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4282         ptrPseudoSymConvert),
4283         * src/pic/ralloc.c (regTypeNum),
4284         * src/pic16/ralloc.c (regTypeNum),
4285         * src/hc08/ralloc.c (regTypeNum),
4286         * src/ds390/ralloc.c (regTypeNum),
4287         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4288         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4289
4290 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4291
4292         * link/z80/lkmain.c (afile),
4293         * as/hc08/lkmain.c (afile),
4294         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4295         prevent a pointer problem when a filename has no directory and
4296         no extension specified.
4297
4298 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * link/z80/lkmain.c (afile): allow periods in directory names
4301         * link/z80/lkmain.c (afile),
4302         * as/mcs51/lkmain.c (afile),
4303         * as/hc08/lkmain.c (afile): allow linker script file to have an
4304         extension other than ".lnk"
4305         * link/z80/lklex.c (getfid),
4306         * link/z80/lkmain.c (parse),
4307         * as/mcs51/lklex.c (getfid),
4308         * as/mcs51/lkmain.c (parse),
4309         * as/hc08/lklex.c (getfid),
4310         * as/hc08/lkmain.c (parse): Support comments in the linker script
4311         file on lines by themselves and after filenames
4312
4313 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4314
4315         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4316
4317 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4318
4319         * src/z80/peeph-z80.def: removed some peephole rules that don't
4320         work with multibyte arithmetic (fixed bug #937126)
4321         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4322         to registers and not global variables
4323         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4324         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4325         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4326         checking for assignments not internally generated (fixed bug #931895)
4327         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4328         structure member (fixed bug #930072)
4329
4330 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4331
4332         * src/SDCCmain.c (linkEdit),
4333         * src/hc08/main.c (_hc08_parseOptions),
4334         * as/hc08/Makefile.in,
4335         * as/hc08/aslink.h,
4336         * as/hc08/asm.h,
4337         * as/hc08/m08pst.c,
4338         * as/hc08/lkrloc.c (relr, rele),
4339         * as/hc08/lkarea.c (lnkarea)
4340         * as/hc08/lkmain.c (afile, parse),
4341         * as/hc08/lkelf.c: support for ELF output
4342         * as/hc08/lks19.c (s19),
4343         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4344
4345 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4346
4347         * as/mcs51/lkihx.c: Fixed bug #899105.
4348
4349 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4350
4351         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4352         .dsp files from Unix to DOS.
4353
4354 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4355
4356         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4357         function pointers; we have been compliant for several months now.
4358         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4359         change that was accidently commented out
4360         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4361         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4362         bug #922319
4363
4364 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4365
4366         * src/hc08/gen.c: output of all of the internal debugging information
4367         is now controlled by the D() macro; it is disabled by default
4368
4369 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4370
4371         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4372         harder to keep the same registers during a CAST iCode
4373         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4374         long via int can be done in a single cast, if the signedness is
4375         correct.
4376         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4377         putchar() in tinibios.c in ds390's library
4378
4379 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4380
4381         * src/SDCCast.c (decorateType): fixed bug #898889,
4382         cast result of a literal complement too
4383         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4384         fixed check for bitfields
4385
4386 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4387
4388         * src/SDCCicode.c (geniCodeLogic): made it static,
4389         (geniCodeLogicAndOr): added in order to fix bug #905492,
4390         (ast2iCode): fixed bug #905492
4391         * support/regression/tests/bug-905492.c: added
4392         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4393         (processParms): fixed bug #927659: don't copy parms, this will clear
4394         decorated flag
4395         * support/regression/tests/bug-927659.c: added
4396
4397 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4398
4399         * src/SDCCast.c (addCast): don't cast float to char
4400         * device/lib/libsdcc.lib: added _memmove
4401
4402 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4403
4404         * device/lib/large/Makefile: fixed parallel execution by
4405         replacing `make` by `$(MAKE)`
4406
4407 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4408
4409         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4410         offsets (fixes bug #923936)
4411
4412 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4413
4414         * device/lib/small/Makefile: fixed parallel execution by
4415         replacing `make` by `$(MAKE)`
4416
4417 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4418
4419         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4420
4421 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4422
4423         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4424         * src/regression/Makefile: Regression test was not running.
4425
4426 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4427
4428         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4429         complement if possible
4430         * src/SDCCval.c (valComplement),
4431         * src/SDCCicode.c (operandOperation): fixed complement of literal
4432         * support/regression/tests/onebyte.c (testComplement): added
4433
4434 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4435
4436         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4437         return an optimized tree; actually replace actParm with the new tree
4438         * src/SDCCast.h: added some parantheses to remove side effects
4439         * support/regression/tests/bug-920866.c
4440
4441 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4442         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4443         Bit operands were not being handled properly in the pic14 port.
4444         (now src/regression/add.c passes again).
4445
4446 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4447
4448         * src/SDCC.y (labeled_statement): case and default no longer require
4449         a following statement (RFE #893037)
4450
4451 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4452
4453         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4454         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4455         disabled (fixes bug #916294)
4456         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4457         "mov a,acc"; patch provided by Lenny Story
4458         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4459
4460 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4461
4462         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4463         functions
4464         * src/ds390/gen.c (genFunction, genEndFunction),
4465         * src/ds390/ralloc.c (ds390_assignRegisters),
4466         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4467         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4468         pushed if there are parameters passed on the stack. Also, a cleaner
4469         way to decide if r0/r1 should be pushed/popped. (Together they fix
4470         bug #918693)
4471
4472 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4473
4474         * doc/sdccman.lyx,
4475         * device/lib/mcs51/crtpagesfr.asm,
4476         * device/lib/mcs51/crtxinit.asm,
4477         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4478         to avoid confusion with Si Lab's SFRPAGE register.
4479
4480 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4481
4482         * src/SDCCglue.c (emitMaps): allow public sfr variables
4483         * src/SDCCglue.c (initialComments): include compiler build date
4484         with compiler version and put the timestamp of the generated
4485         assembly file on a serperate line to be less confusing.
4486         * src/port.h: added genInitStartup hook
4487         * src/avr/main.c,
4488         * src/ds390/main.c,
4489         * src/hc08/main.c,
4490         * src/pic/main.c,
4491         * src/pic16/main.c,
4492         * src/xa51/main.c,
4493         * src/z80/main.c: genInitStartup initialize as NULL (default to
4494         historical behaviour)
4495         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4496         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4497         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4498         library instead of hard coding it into the compiler.
4499         * support/regression/ports/mcs51-stack-auto/spec.mk,
4500         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4501         * device/lib/mcs51/Makefile,
4502         * device/lib/small/Makefile,
4503         * device/lib/large/Makefile,
4504         * device/lib/mcs51/crtpagesfr.asm,
4505         * device/lib/mcs51/crtstart.asm,
4506         * device/lib/mcs51/crtxclear.asm,
4507         * device/lib/mcs51/crtxinit.asm,
4508         * device/lib/mcs51/crtclear.asm,
4509         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4510         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4511         and into user configurable files.
4512         * device/lib/clean.mk: clean mcs51 directory too
4513         * support/regression/tests/longlit.c: added static to T1 declaration
4514         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4515         accesses in the initialization code
4516
4517 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4518
4519         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4520         OSCTRIMVAL as noted in bug #916008
4521
4522 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4523
4524         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4525         in loops with multiple exits (reported as incorrect registers
4526         used by Martin Helmling in Sdcc-user list)
4527
4528 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4529
4530         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4531         made ds390 register extensions look less like error messages
4532
4533 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4534
4535         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4536         reported by Adam Wozniak in Sdcc-user list
4537
4538 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4539
4540         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4541         arithmetic optimizations, added debug output
4542
4543 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4544
4545         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4546         * sdcc.spec: updated and split sdcc into 3 rpms
4547         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4548         needed for literals of LEFT_OP and '+'
4549         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4550         introduced RESULT_TYPE_NOPROM
4551         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4552         left shift
4553         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4554         limited promotion to int only for '*'
4555         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4556
4557 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4558
4559         * src/pic16/gen.c (genSkip),
4560         (genc16bit2lit), (gencjneshort): commented out
4561         (is_LitOp): new helper function, checks operand type
4562         (genCmpEq): rewritten
4563
4564 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4565
4566         * support/regression/tests/bug-908454.c: added
4567
4568 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4569
4570         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4571         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4572         (geniCodeCast): cosmetic, don't preserve bit storage class
4573         (geniCodeLeftShift): added promotion
4574         (geniCodeLogic): fixed regression
4575         * src/SDCCsymt.c (computeTypeOr): accept bits too
4576         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4577
4578 2004-03-07  Borut Razem <borut.razem AT siol.net>
4579
4580         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4581
4582 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4583
4584         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4585         version of pic16_genPackRegisters which does not check if ic is a
4586         CAST operator,
4587         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4588         function cause string1.c regression test fails
4589
4590 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4591
4592         * sim/ucsim/configure.in,
4593         * sim/ucsim/configure,
4594         * sim/ucsim/doc/Makefile.in: use docdir
4595         * src/SDCC.y: fixed sbit atrributes
4596         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4597         * src/SDCCast.c (decorateType): |^& need special promotion handling
4598         * src/SDCCast.h,
4599         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4600         * src/SDCCsymt.h (computeType),
4601         * src/SDCCicode.c: computeType() needs op
4602         * src/SDCCsymt.c (checkTypeSanity),
4603         * doc/sddman.lyx: "plain" bitfields are unsigned
4604         * src/SDCCsymt.c (computeTypeOr): added
4605         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4606         |^& ops
4607         * src/SDCCval.c (val*): computeType() needs op
4608         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4609         * support/regression/tests/onebyte.c: added tests for |^&
4610
4611 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4612
4613         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4614         for writing icode into asm output.
4615
4616 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4617
4618         * src/pic16/device.c: added some debug lines enabled
4619         with macro DEBUG_CHECK,
4620         * src/pic16/genarith.c: more debug in genPlus,
4621         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4622         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4623         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4624         * (aopForSym): onStack symbols are re-placed in data memspace,
4625         and onStack flag is cleared,
4626         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4627         copy temporary pcodeop,
4628         * (genPcall): added warning for not updating PCLATU,
4629         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4630         always true for pic16 port,
4631         * (genMultOneWord): NEW, supports integer multiplication,
4632         * (genMult): modified to call genMultOneWord,
4633         * (ifxForOp): added warning when return NULL,
4634         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4635         flag is set before call to operandFromSymbol for implicit
4636         added structures,
4637         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4638         options.intlong_rent are set by default,
4639         * (_hasNativeMulFor): modified to allow port generation of integer
4640         multiplication,
4641         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4642         set regtype to REG_SFR for all registers, restricting seting the
4643         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4644
4645 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4646
4647         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4648         more than 500 times in the regression tests
4649
4650 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4651
4652         * support/Util/SDCCerr.h,
4653         * support/Util/SDCCerr.c,
4654         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4655         enumerator_list),
4656         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4657         for symbol conflicts.
4658         * support/valdiags/tests/enum.c,
4659         * support/valdiags/tests/tentdecl.c,
4660         * support/valdiags/tests/struct.c: expect possible error messages
4661         referring to original symbol definitions.
4662         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4663         * src/SDCCsymt.h,
4664         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4665
4666 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4667
4668         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4669
4670 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4671
4672         * src/pic16/ralloc.c (newReg): fixed bug #908929
4673
4674 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4675
4676         * src/ds390/gen.c: added missing #include "main.h"
4677
4678 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4679
4680         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4681         checking if symbol is already in set,
4682         * src/pic16/device.h: prototype for checkAddSym,
4683         * src/pic16/gen.c: (_G): added entry interruptvector,
4684         * (assignResultValue): removed some commented out lines,
4685         * (genFunction): check for ISR via sym->type, absolute section for
4686         interrupt code is created via a new pBlock, the goto instruction is
4687         placed now correctly at the interrupt vector position, changed all
4688         references from ivec to _G.interruptvector,
4689         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4690         is the interrupt is a high priority one, same for return from ISR,
4691         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4692         externs to calls of checkAddSym,
4693         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4694         pic16_pcode_verbose flag is set,
4695         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4696         * src/pic16/pcoderegs.c: message about how many registers are saved
4697         will only be emitted if pic16_pcode_verbose flag is set,
4698
4699 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4700
4701         * src/ds390/ralloc.h,
4702         * src/ds390/ralloc.c (ds390_regWithIdx),
4703         * src/ds390/gen.c (emitcode),
4704         * src/ds390/main.h,
4705         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4706         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4707         ds390operandCompare, getRegsRead, getRegsWritten,
4708         initializeAsmLineNode): customized instruction size calculation for
4709         ds390, started basis for some register optimizations
4710         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4711         corresponding assembly output
4712         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4713         missing push/pop of r0/r1. Optimized push/pops
4714
4715 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4716
4717         * src/mcs51/main.c (instructionSize): fixed ACALL size
4718         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4719
4720 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4721
4722         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4723         the sorting of rlist with NULL elements
4724         * (print_idataType, print_idata): NEW to create idata sections
4725         * src/pic16/device.h: idataSymSet new variable
4726         * src/pic16/gen.c (genFunction): fixed some bugs in string
4727         comparing, improved the absolute section creation for ISRs,
4728         added FSR0L/FSR0H in registers that are saved in an ISR,
4729         * (genInline): fixed the processing of inline snippets,
4730         now they undergo no process by the peephole optimizer
4731         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4732         are placed in idataSymSet,
4733         * (pic16emitStaticSeg): extern symbols are added in externs,
4734         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4735         switching when aboslute variables are placed in access bank memory
4736         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4737         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4738         commented out with #if,
4739         * (pic16_packRegisters): reintroduce the check for CAST because some
4740         symbols are not correctly handled,
4741         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4742         pCodeInstruction instead of pCode,
4743         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4744         pCodeAsmDir definition,
4745         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4746         directive, then the argument directive is emitted without the leading
4747         tab, hack for inline labels which must be in the first column,
4748         * (compareLabel,pic16_findNextInstruction),
4749         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4750         * (insertBankSwitch): modified for the new pCodeAsmDir,
4751
4752 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4753         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4754
4755         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4756         instance,
4757         * (pushSide): commented out with #if,
4758         * (assignResultValue): fixed some typos in saving
4759         registers,
4760         * (genPcall): FIXED and sync'ed with genCall,
4761         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4762         * (genNearPointerGet): fixed to handle some more cases,
4763         implementation scheme via table reads,
4764         * (genConstPointerGet): modified to access code memory correct,
4765         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4766         and improved to handle some cases
4767         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4768         instead of "RETLW" for init data
4769         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4770         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4771         variables are placed in access bank memory (<0x80 and >=0xf80),
4772         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4773         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4774         TBLWT_POSTDEC,TBLWT_PREINC
4775         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4776         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4777         directives
4778         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4779         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4780         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4781         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4782
4783 2004-02-29  Borut Razem <borut.razem AT siol.net>
4784
4785         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4786         support/Util/findme.h, support/Util/system.h: enhance binary relative
4787         search for lib and include by using findProgramPath()
4788
4789 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4790
4791         * src/SDCCpeeph.h,
4792         * src/SDCCpeeph.c (pcDistance),
4793         * src/port.h,
4794         * src/mcs51/ralloc.h,
4795         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4796         * src/mcs51/main.h,
4797         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4798         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4799         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4800         size calculation port specific, started basis for some register
4801         optimizations
4802         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4803         missing push/pop of r0/r1. Optimized push/pops
4804         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4805         * device/lib/_modsint.c (_modsint),
4806         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4807         and stack version so regression tests pass
4808
4809 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4810
4811         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4812         * src/SDCCast.c (decorateType): catch another small optimization
4813         with '?' operator
4814         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4815         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4816         modified to finally use computeType() all over SDCC,
4817         see Feature Request #877103
4818         * src/SDCCval.h: cosmetic
4819         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4820         valCompare(); regression tested in muldiv.c
4821         * support/regression/tests/muldiv.c (testMod): mod sign follows
4822         dividend only
4823
4824 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4825
4826         * src/SDCCast.c (decorateType): fixed bug #902362
4827         * doc/INSTALL.txt: fixed install instructions for win32
4828
4829 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4830
4831         * device/include/Makefile.in (install): fixed by replacing spaces
4832         by tabs
4833         * doc/README.txt,
4834         * doc/INSTALL.txt: updated for release
4835         * doc/sdccman.lyx: added warning for --xstack being buggy
4836
4837 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4838
4839         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4840         to eliminate build warnings.
4841         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4842
4843 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4844            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4845
4846         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4847         removed -penable-stack, added comment for stack pragma, added
4848         warning for not initializing the stack/frame registers, removed
4849         comment at interrupts section
4850
4851         Stack is made permanent, there is no ability to disable stack usage.
4852         * src/pic16/device.h,
4853         * src/pic16/device.c: removed all references to USE_STACK macro,
4854         * src/pic16/device.c (pic16_dump_section): when no elements in
4855         rlist, free rlist before return,
4856         * (pic16_dump_int_registers): NEW, internal registers are a new set
4857         of general purpose registers reused by each function,
4858         * (checkAddReg): returns 1 if registers is added to set,
4859         * (pic16_groupRegistersInSection): when a registers is of type
4860         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4861         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4862         SRCASECMP macro is moved here from device.c
4863         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4864         PO_PCLATU, PO_PRODL, PO_PRODH,
4865         * (pic16_pCodeOpType, genMinus,
4866         changed compares to "a" register, with AOP_ACC,
4867         * (pic16_genPlus): fixed some bugs and indented properly,
4868         * (pic16_addSign): changed size to size+offset in the MOVWF
4869         instruction,
4870         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4871         multiply 8-bit operand by literal, result is 8-bit,
4872         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4873         multiply 2 8-bit operand, result is 8-bit,
4874         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4875         genUMult8X*_16,
4876         * src/pic16/gen.c: changed accUse to contain WREG only,
4877         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4878         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4879         true, do not use immediate addressing any more unless sym is a
4880         pointer in codespace,
4881         * (aopForRemat): do not use immediate addressing when symbol not in
4882         codespace and when symbol's address is requested,
4883         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4884         accUse size (= 1),
4885         * (aopGet): added case for AOP_ACC and don't return "accumulator
4886         bug" but WREG instead,
4887         * (popGetTempReg): pushes contents of temporary register in stack,
4888         * (popReleaseTempReg): pops contents of temporary register from
4889         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4890         * (pic16_popGet): separated case AOP_ACC to return register WREG
4891         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4892         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4893         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4894         the use of immediate pointers to certain cases only.
4895
4896         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4897         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4898         * (assignResultValue, genCall, genRet): modified to use the new
4899         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4900         genPcall is still broken,
4901         * (genFunction): added code to create 'A' type pBlocks when
4902         interrupt functions are generated, code not extensively tested yet,
4903         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4904         * (genEndFunction): modified so ISRs pop stored registers from stack,
4905         * (genMultOneByte): cleanup,
4906         * (AccRsh): added flag andmask, to and result with appropriate mask,
4907         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4908         * (genDataPointerGet): fixed and reenabled its use,
4909         * (genNearDataPointerGet): bugs fixed,
4910         * (genDataPointerSet): bugs fixed,
4911         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4912         pic16_DumpSymbol, pic16_DumpOp,
4913         * src/pic16/genutils.h: function prototypes for the above functions,
4914         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4915         pointers,
4916         * (pic16emitRegularMap): many many many improvements, but needs a
4917         major cleanup,
4918         * src/pic16/main.c: enable_stack in pic16_options is removed,
4919         * (_pic16_parseOptions): removed command line options -penable-stack,
4920         * (_process_pragma): emit stack symbol only when stack pragma is
4921         processed,
4922         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4923         redirected to FSR0L/FSR0H pair,
4924         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4925         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4926         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4927         for immediates,
4928         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4929         * (dumpPicOptype): NEW,
4930         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4931         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4932         with movff instruction,
4933         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4934         added pic16_int_regs, some packRegsFor* functions are commented out,
4935         because produce errors,
4936         * src/pic16/NOTES: minor modifications
4937
4938 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4939
4940         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4941         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4942         --pack-iram.
4943         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4944         * as/mcs51/lkaomf51.c: fixed bug #895763
4945
4946 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4947
4948         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4949
4950 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4951
4952         * doc/sdccman.lyx: added details about the HC08 storage classes and
4953         interrupts, fixed the register usage info for z80 & gbz80
4954
4955 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4956
4957         * doc/sdccman.lyx: added more pic16 port documentation
4958         * device/include/pic16/: added header pic18fregs.h
4959
4960 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4961
4962         * doc/sdccman.lyx: added Vangelis' contribution
4963
4964 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4965
4966         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4967         extend to the next CALL or PCALL, not just to the next CALL.
4968
4969 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4970
4971         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4972
4973 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4974
4975         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4976         bug #895752 and a better fix for bug #716790
4977
4978 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4979
4980         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4981
4982 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4983
4984         * doc/sdccman.lyx: minor changes, minor changed
4985
4986 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4987
4988         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4989         which can't handle SDCC_NEWONEBYTEOPS,
4990         (geniCodeMultiply): removed conversion from mult to shift for pic14
4991         and pic16
4992
4993 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * src/hc08/gen.h,
4996         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4997         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4998         thus fixing bug #895406
4999
5000 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5001
5002         * device/lib/_modsint.c,
5003         * device/lib/_modslong.c: sign follows divisor only
5004         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5005         signs or signedness can be ignored
5006         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5007         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5008         added optimization for IFX,
5009         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5010         arguments;
5011         reenabled optimization for IFX, which was removed on 2004-01-11
5012         * src/SDCCast.h: added return type IFX
5013         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5014         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5015         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5016         SDCC_OLDONEBYTEOPS selects the old behaviour
5017         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5018         changed again and commented promotion rule
5019         * src/SDCCval.c (valDiv): promotion no longer necessary
5020         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5021         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5022         rewritten
5023         * support/regression/tests/onebyte.c: added
5024
5025 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5026
5027         * gen.c (genInline): reverted to old code for assemnling inline
5028         code because of bug reported James Chadd
5029
5030 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5031
5032         * ralloc.h: missing declarations from previous patch,
5033         seems that patch for ralloc.h was never applied, fixed
5034
5035 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5036            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5037
5038         * pcode.c,
5039         * pcode.h,
5040         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5041         indirect addressing. Marked FSR0 as deprecated
5042         * gen.c (pointerCode): commented out, not needed now
5043         (pic16_popGet2p): new MOVFF helper function
5044         (genGenPointerGet),
5045         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5046         (shiftRLong): removed duplicate debugging info
5047
5048 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5049
5050         * src/ds390/gen.c (genNearPointerGet),
5051         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5052         optimization with bits, but not bitfields.
5053         * src/ds390/ralloc.c (packRegisters),
5054         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5055
5056 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5057
5058         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5059
5060 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/SDCCsymt.h,
5063         * src/SDCCicode.c (operandFromSymbol),
5064         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5065         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5066         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5067         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5068         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5069         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5070         bug #892038
5071         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5072         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5073         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5074         * src/SDCCsymt.c (newSymbol),
5075         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5076         enumerator_list),
5077         * src/SDCCval.h,
5078         * src/SDCCval.c (newiList): fixed bug #885705
5079
5080 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5081
5082         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5083         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5084
5085 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5086
5087         * device/include/c8051f120.h,
5088         * device/include/c8051f300.h,
5089         * device/include/c8051f310.h: added/updated header files for Silicon
5090         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5091         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5092         in new section Submitting patches
5093
5094 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5095
5096         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5097         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5098         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5099         genGenPointerSet),
5100         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5101         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5102         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5103         genGenPointerSet),
5104         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5105         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5106         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5107         genGenPointerSet),
5108         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5109         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5110         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5111         genGenPointerSet): fixed bug #892400
5112         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5113         to eliminate build warnings.
5114         * src/SDCCast.c (processParms),
5115         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5116         fixed bug 751859
5117         * support/valdiag/valdiag.py: added GCC to the list of defines active
5118         when compiling with gcc
5119
5120 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5121
5122         * support/Util/SDCCerr.h,
5123         * support/Util/SDCCerr.c,
5124         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5125         with an incomplete type (fixed bug #883734)
5126         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5127
5128 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5129
5130         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5131
5132 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5133
5134         * src/SDCCast.c (decorateType),
5135         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5136         function pointer implementation
5137         * support/regression/tests/funptrs.c: added tests to verify both forms
5138         of function pointers work correctly. Added tests to verify parameters
5139         are passed in the correct order.
5140
5141 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5142
5143         * device.c (regCompare): registers are sorted by ascending
5144         address and increasing size,
5145         * main.c (_pic16_finaliseOptions): removed the declaration
5146         of compiler macro MCU. Now a macro of the format pic18fxxxx
5147         will be defined from the command line
5148
5149 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5150             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5151
5152         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5153         PCOP_RLCF was overwritten!
5154         * gen.c (genSkip): commented out calls to pic16_emitcode,
5155         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5156         * (genlshTwo),
5157         * (genRRC): added debugging info,
5158         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5159         overwritten while shifting,
5160         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5161         overwritten while shifting,
5162         * (AccLsh),
5163         * (AccRsh),
5164         * (shiftLLeftOrResult),
5165         * (shiftRLeftOrResult),
5166         * (shiftRLong),
5167         * (shiftLLong): Implemented with pic16_emitpcode
5168         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5169         * (genLeftShift): Fixed bug, operand for shift by variable always
5170         was "and"ed with 0x0f,
5171         * (genLeftShiftLiteral),
5172         * (genrshTwo),
5173         * (genRightShiftLiteral): added debugging info,
5174         * (genrshFour): added comment,
5175         * (genRightShift): determined signedness from operand "left"
5176         instead of "result"
5177
5178 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5179
5180         * src/SDCCicode.c (geniCodeParms),
5181         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5182         function pointers, fixed function pointer bugs #861242 and #861896
5183
5184 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5185
5186         * device/include/c8051f000.h,
5187         * device/include/c8051f120.h,
5188         * device/include/c8051f300.h: added header files for Silicon
5189         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5190
5191 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5192
5193         * src/SDCCast.c (processParams): added new type flow and restructured
5194         (gatherAutoInit): added new type flow
5195         (addCast): cosmetic changes
5196         (getLeftResultType): added new type flow for array indices, patch
5197         provided by Stas, see FR #877103
5198         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5199         array index patch by Stas
5200         * src/SDCCast.h: added prototype getResultTypeFromType()
5201         * src/SDCCval.h,
5202         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5203         * src/pic/glue.c (pic14emitStaticSeg),
5204         * src/pic16/glue.c (pic16emitStaticSeg),
5205         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5206         for initialization of symbols
5207         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5208         * support/Util/SDCCerr.h:
5209         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5210         * .version: bumped version number to 2.3.8
5211         * device/include/Makefile.in (install),
5212         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5213         avoid warnings
5214
5215 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5216
5217         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5218         Slade Rich fixed an optimization bug
5219         * src/pic/pcodepeep.c,
5220         * src/pic/pcoderegs.c
5221         * doc/Makefile (install): added test for directory
5222
5223 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5224
5225         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5226         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5227         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5228         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5229         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5230         * as/mcs51/asexpr.c (term),
5231         * as/hc08/asexpr.c (term): fixed bug #887146
5232
5233 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5234
5235         * src/z80/gen.c (genMult): handle single byte result product
5236         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5237         DUMMY_READ_VOLATILE (fixed bug #886367)
5238
5239 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5240
5241         * support/regression/tests/libmullong.c: fixed logic, on little endian
5242         hosts we ended without a mullong_wrapper()
5243
5244 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5245
5246         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5247         virus/worm forged address usage.
5248
5249 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5250
5251         Fixed promotion, it should be done on AST level:
5252         * src/SDCCast.c (addCast): added promotion to int
5253         (decorateType): updated call to upCast()
5254         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5255         usualUnaryConversions()
5256
5257 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5258
5259         * support/regression/tests/literalop.c (mulWrapper): Added a
5260         wrapper to remove integer overflow warnings.
5261
5262         * support/regression/tests/float_trans.c: Made work on host.
5263
5264         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5265         location of sz80.
5266
5267         * support/regression/generate-cases.py (main): Changed from inline
5268         to a main method.
5269
5270         * doc/Makefile (install): Changed to depth first to get rid of
5271         missing directory install warning.
5272
5273         * as/Makefile (install-doc): Made work on Mac.
5274
5275 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5276
5277         * src/SDCCast.c: added an additional type flow in decorateType() of
5278         opposite direction, see feature request #860006; it's enabled at runtime
5279         by setting the environment variable SDCC_NEWTYPEFLOW
5280         * src/SDCCast.h: changed prototype of decorateType()
5281         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5282         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5283         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5284         see feature request #877103
5285         * src/SDCCval.c: updated call of decorateType()
5286         (valBitwise): fixed bug #882876
5287         (valMinus): added promotion
5288         (valLogicAndOr): result is unsigned
5289         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5290         * src/SDCCsymt.c (computeType),
5291         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5292         must not cause an unsigned operation
5293         * src/pic/glue (pic14emitRegularMap),
5294         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5295
5296 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5297
5298         * src/pic/pcode.c (PCodeID): commented out left over debug code
5299
5300 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5301
5302         * support/valdiag/tests/overflow.c: added shift tests
5303         * src/pic/device.c,
5304         * src/pic/gen.c,
5305         * src/pic/gen.h,
5306         * src/pic/glue.c,
5307         * src/pic/main.c,
5308         * src/pic/pcode.c,
5309         * src/pic/pcode.h,
5310         * src/pic/pcodepeep.c,
5311         * src/pic/pcoderegs.c,
5312         * src/pic/ralloc.c,
5313         * src/pic/ralloc.h: applied patch from Slade Rich;
5314         added support for multiple code pages and multiple RAM banks on the
5315         PIC 14 port. The ASM files now no longer simply assume all the
5316         code / RAM are in the same page / bank. This means the linker can
5317         safely allocate code/RAM of separate ASM files to different pages/banks.
5318         * doc/sdccman.lyx: added Slade's tips
5319         * src/mcs51/peeph.def: fixed bug #880768
5320
5321 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5322
5323         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5324         * src/SDCCast.c (decorateType): fixed bug #880197
5325
5326 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5327
5328         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5329         getopt.h.
5330
5331         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5332         strtof is not part of C89 and isn't included with Mac OS X.
5333
5334 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5335
5336         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5337         shiftL2Left2Result): fixed bug #879326
5338         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5339         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5340         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5341         address fetch for clr instruction
5342         * device/lib/hc08/_mulint.c: created optimized assembly version
5343         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5344
5345 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5346
5347         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5348         proposed in FR #877103
5349
5350 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5351
5352         * src/SDCCval.c (cheapestVal): added missing checks
5353         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5354         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5355
5356 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5357
5358         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5359         equal operands
5360
5361 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5362
5363         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5364         loaded with the linker search paths (-L arguments) and the libraries
5365         to be linked with the current source (-l arguments). Changes
5366         currently will affect only the pic16 port.
5367         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5368         include path the port specific paths and port specific libraries,
5369         * gplink command now contains the $3 argument,
5370         * src/pic16/device.h,
5371         * src/pic16/device.c,: structure PIC_device is made public and
5372         renamed to PIC16_device, the same for variable Pics which is renamed
5373         to Pics16. Updated all references to them.
5374         * src/pic16/glue.c (pic16glue): corrected bug with code
5375         initialization which bypassed the variable initializations block.
5376
5377         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5378         COMPILE_FLAGS and added the --nostdinc option
5379
5380 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * device/include/mc68hc908jb8.h: Register defs for another member
5383         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5384
5385 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5386
5387         Documenting changes from previous commits.
5388         * configure.in (version 1.56),
5389         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5390         when generating output files to configure the pic16 library,
5391         but now I've commented it out, since gputils aren't installed in the
5392         SF compile farm, so library won't compile
5393
5394         * device/lib/Makefile.in (version 1.56): initially I've added in
5395         target 'all' the prerequestive 'model-pic16' so it compiled the
5396         pic16 library, but now I've commented it out for the same reasons
5397         above,
5398         * added targets 'model-pic16' and 'objects-pic16' to compile the
5399         library
5400         * added target 'port-specific-objects-pic16' to handle the
5401         generated libraries and copy them into the build/ directory
5402         * added target 'clean-intermediate-pic16' to clean intermediate
5403         files into pic16 directory
5404         * in target 'installdirs' added line to create directory pic16 in
5405         the installation path
5406
5407         * device/include/Makefile.in (version 1.11): in target 'install'
5408         added lines to copy all header files to installation path,
5409         * in target 'installdirs' added line create directory for pic16
5410         headers in the installation path
5411
5412 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5413
5414         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5415          a function call
5416
5417 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5418
5419         * configure,
5420         * device/lib/configure.in,
5421         * device/lib/configure: fixed for autoconf 2.57
5422
5423 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5426         option so that it actually works. Made it specific to the z80, since
5427         the gbz80 doesn't have these kinds of I/O ports.
5428
5429 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5430
5431         * device/include/z180.h,
5432         * device/lib/_memcpy.c,
5433         * device/lib/_memmove.c,
5434         * device/lib/_mulint.c,
5435         * device/lib/ser_ir.c,
5436         * device/lib/ser_ir_cts_rts.c,
5437         * device/lib/_strcmp.c,
5438         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5439         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5440         portmode; added deprecation warning for bank= and protmode= forms.
5441         Also, guard against buffer overflow.
5442         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5443
5444 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5447         changed interrupt vector table generation to only emit declared vectors.
5448         * device/include/Makefile.in: added missing backslash
5449         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5450
5451 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5452
5453         Mainly changes to support compilation of the device libraries
5454         * src/pic16/device.c: stack is allocated via symbol and not
5455         via literal number. The symbol is placed in the corresponding
5456         position of the data ram
5457         * (pic16_dump_section): relocatable and absolute uninitialized
5458         data are now emitted in sorted order to reduce section naming,
5459         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5460         weren't marked as being in the access bank,
5461
5462 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5463
5464         Added portion of GNU PIC Library under the directory
5465         device/include/pic16 and device/lib/pic16. These files
5466         contain the declarations of SFRs for the PIC18Fxx2 devices.
5467         The directory is initialized via configure from toplevel.
5468
5469 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5470
5471         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5472         the spilllocations to be compared correctly
5473
5474 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5475
5476         * src/SDCCast.c (decorateType): fixed bug introduced today
5477
5478 2004-01-12  Borut Razem <borut.razem AT siol.net>
5479
5480         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5481         doc/sdccman.lyx: upper case pragmas are deprecated
5482
5483 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5484
5485         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5486         in simpler and even better code
5487
5488 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5489
5490         * src/SDCCicode.c (operandOperation): fixed bug #874819
5491         * src/SDCCast.c (decorateType): fixed
5492         char foo (unsigned long ul) { return ul > 0; }
5493
5494 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5495
5496         * doc/sdccman.lyx: Moved and added some sections, small changes
5497         all over. Telling LaTeX to be less strict with word spacing
5498         to better keep the right margin. Changed some notes about
5499         maintainance of the ports in section 3.2.1 - is it OK like this?
5500
5501 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5502
5503         SDCC source changes:
5504         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5505         convilong): modified to inform the pic16 port that builtin functions
5506         are external
5507
5508         PIC16 PORT specific changes:
5509         * src/pic16/device.c pic16_dump_equates() added,
5510         processor registers declared internally by the port are emitted in
5511         the translation as equates,
5512         * src/pic16/gen.c: inline code is passed unprocessed to the
5513         translation,
5514         * (pic16_popGetLit2): fnuction modified to take second operand as
5515         pCodeOp pointer and not as literal,
5516         * (popRegFromIdx): prefixed with pic16_,
5517         * (pic16_popCombine2): modified to receive already allocated pCode
5518         operands,
5519         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5520         * (genFunction): initializes local stack frame and pushes on stack
5521         all the registers used by this function,
5522         * (genEndFunction): restores all registers from stack and restores
5523         stack frame,
5524         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5525         improvements,
5526         * (pic16glue): changed the program startup sequence,
5527         * added new dbName code 'A' for functions placed in absolute section
5528         * src/pic16/main.c: added function attribute _naked,
5529         * added pragma 'code' to place a fnuction at an absolute address,
5530         * added command line arguments --debug-ralloc and --pcode-verbose,
5531         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5532         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5533         * (pic16_newpCodeOpLit2): modified to take the second operand as
5534         pCodeOp pointer,
5535         * (pic16_printpBlock): modified to emit each function in a separate
5536         section,
5537         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5538         UPPER for immediate operands,
5539         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5540         instruction,
5541         * src/pic16/peeph.def: all peepholes with movff are commented out,
5542         because there is a problem in the pcode peep optimizer,
5543         * src/pic16/ralloc.c: the register allocator can now reuse local
5544         function symbols for another function. This saves register usage.
5545         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5546
5547         Added file src/pic16/NOTES with information about program writing on
5548         the current port version.
5549
5550 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5551
5552         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5553         and peephole 252 (array access)
5554
5555 2004-01-09  Borut Razem <borut.razem AT siol.net>
5556
5557         * src/SDCCmain.c : fixed #872250: -l command line defined library
5558           files are scanned before standard library files
5559
5560 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5561
5562         * src/SDCCast.c (decorateType): fixed bug #874046
5563
5564 2004-01-09  Borut Razem <borut.razem AT siol.net>
5565
5566         * support/scripts/sdcc.nsi: remove previous installation
5567
5568 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5569
5570         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5571         bytes for last interrupt vector (mcs51)
5572         * sdcc.spec: fixed typo
5573
5574 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5577         gen51Code): more efficient parameter receive for --model-large
5578         ("bug" #845294)
5579
5580 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5581
5582         * src/ds390/main.c,
5583         * src/z80/main.c: added missed needLinkerScript flags (more than
5584         one port structure defined in these file)
5585         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5586         bug #795325
5587
5588 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5589
5590         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5591         * src/port.h: added flag needLinkerScript in port->linker
5592         structure to inform whether to create a .lnk file or not,
5593         * src/avr/main.c,
5594         * src/ds390/main.c,
5595         * src/hc08/main.c,
5596         * src/mcs51/main.c,
5597         * src/pic/main.c,
5598         * src/pic16/main.c,
5599         * src/xa51/main.c,
5600         * src/z80/main.c: changed appropriately to configure
5601         needLinkerScript flag
5602         * src/pic/gen.c,
5603         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5604         * src/pic/glue.c: added variable udata_section_name to
5605         override default uninitialized data segment definition for
5606         devices only with SHAREBANK memory (reported from Erik Epetrich)
5607         * (pic14emitOverlay): modified to emit a commented overlay segment
5608         directive when no overlay data exist
5609         * (picglue): modified to emit uninitialized data segment
5610         according to udata_section_name
5611         * src/pic/main.c (_pic14_parseOptions): added command line
5612         options --udata-section-name=[name] to override default
5613         udata definition name
5614         * modified _linkCmd and _asmCmd to include compiler passed
5615         arguments via -W option
5616         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5617         object file from '.rel' to '.o' in port->linker structure,
5618         changed size of fptr from 2 to 3 in port structure
5619
5620 2004-01-07  Borut Razem <borut.razem AT siol.net>
5621
5622         * support/scripts/sdcc.nsi: update PATH
5623         * support/scripts/sdcc.ico: craeted
5624
5625 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5626
5627         * device/include/Makefile.in: fix install
5628         * doc/Makefile: fix install
5629
5630 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5631
5632         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5633         in bug #860505
5634         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5635         how the function variable allocation summary is displayed; also
5636         include information about variables allocated to the overlay
5637         segment
5638
5639 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5640
5641         * as/mcs51/lkmain.c: Help about -Y option
5642         * as/mcs51/lkarea.c: Fixed gcc warnings
5643
5644 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5645
5646         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5647         fixed warning
5648         * support/valdiag/tests/overflow.c: added
5649         * src/SDCCast.c (decorateType),
5650         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5651         LEFT_OP (left shift)
5652
5653 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5654
5655         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5656         (default behaviour).
5657
5658 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5659
5660         A python script to validate compiler diagnostic messages. It can be
5661         used to verify that sdcc complains about bad c source code and
5662         gives a good location of the error.
5663         * support/valdiag/Makefile,
5664         * support/valdiag/valdiag.py,
5665         * support/valdiag/tests/*
5666
5667 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5668
5669         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5670         * src/SDCCsymt.c (newEnumType),
5671         * src/SDCCsymt.h
5672         * support/Util/SDCCerr.c,
5673         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5674         enum related bugs.
5675         * support/regression/tests/enum.c: added test for enum values that
5676         require at least 2 bytes of storage.
5677
5678 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5679
5680         * src/common.h: added ifndef/define/endif macros
5681         around the header file.
5682         Bug reported from Jesus Calvino-Fraga
5683
5684 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5685
5686         * sdcc.spec: updated
5687         * device/include/Makefile.in: don't install CVS directories
5688         * device/lib/Makefile.in: added removal of CVS directories after install
5689         * doc/Makefile: fixed install, added local_icons
5690         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5691         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5692         * src/ds390/gen.c (genRightShift): fixed bug #870788
5693         * src/SDCCast.c (decorateType): fixed bug #870781
5694
5695 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5696
5697         PIC16 port related changes:
5698         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5699         added variable stackPos,
5700
5701         * gen.c: genCall, assignResultValue: added support for
5702         pushing/retrieving function parameters to/from stack,
5703         genFunction,genEndFunction: setup stack frame for the
5704         generated function,
5705         genAddrOf: will be changed according to bug 863624
5706
5707         * added files genutils.c and genutils.h which contain gen*
5708         debugged and optimised functions extracted from gen.c
5709
5710         * glue.c: added variable 'externs' which holds extern symbols,
5711         pic16emitRegularMap: is modified to properly handle relocatable
5712          symbols under the new scheme,
5713         pic16createInterruptVect: is modified
5714         pic16printPublics: is modified to emit 'global' assembler directives,
5715         added pic16_printExterns to print extern symbols,
5716         pic16glue: initializes stack/frame pointer in the beginning of
5717         the assembly output. Temporary hack, will be corrected later,
5718         because gplink yet does not support stack and SDCC does not
5719         yet support a type of crt0.o object to create the final binary.
5720
5721         * Removed many lines that contain 8051 legacy code.
5722         * The code is finally placed under a 'code' directive.
5723         * Added port specific options.
5724
5725         * _process_pragma: simplified since now we do not need *special*
5726         include file to define SFR registers. But a separate header
5727         will be needed. This will be developed later.
5728         * _pic16_parseOptions: added, parses port specific options:
5729         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5730         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5731         --preplace-udata-with=
5732
5733         * _pic16_setDefaultOptions: modified to initialize section names,
5734         but hack is temporarly out of order since it needs improvement.
5735         * _pic16_genAssemblerPreamble: configuration words are emitted by
5736         their address instead of their name. This part is incomplete and
5737         supports only the 18Fxx2 devices. Other devices will emit an error
5738         during assembly since they do not contain the same set of config
5739         registers
5740         * _pic16_genIVT: is modified,
5741
5742         * pcode.c: added definitions for some hardware registers that are needed
5743         for stack support
5744         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5745         All PCI entries are updated. Now LFSR is supported.
5746         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5747         * added pic16_newpCodeOpLit2 to support instructions with
5748         two literal arguments
5749         * pic16_pCode2str: corrected code that emits assembler instructions
5750         with two literal operands and those that have an access bit modifier
5751         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5752         this fixes a bug which caused some labels to be lost, when an
5753         assembler directive was added, i.e. banksel,
5754         * pic16_FixRegisterBanking: improved logic that causes the insertion
5755         of bank switching,
5756         * InlineFunction: functions that are called once, are not any more
5757         inlined. This can be a port option in the future,
5758
5759         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5760
5761         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5762         hold the corresponding uninitialized symbols,
5763         * pic16_allocProcessorRegister: registers have explicit marked the
5764         accessBank field,
5765         * pic16_allocInternalRegister: registers are explicit marked as
5766         not used,
5767         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5768         processing list, so bit registers were lost,
5769         *
5770
5771         * ralloc.h: added field 'accessBank' and original symbol operand
5772         in register definition,
5773         * removed the field isMapped from register definition,
5774
5775         ** Several functions have been removed from various sources:
5776         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5777         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5778         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5779         pic16_assignRelocatableRegisters
5780
5781         ** others have been introduced:
5782         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5783         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5784
5785 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5786
5787         * support/scripts/inc2h.pl: changed definition of BIT_AT
5788         to emit 'sbit at' instead of 'bit at'. This was a request.
5789
5790         PIC16 port related preliminary changes:
5791         * gen.c: prefixed function popRegFromString with
5792         pic16_ and all references to it corrected
5793         * pcode.c: all pic16_pc_* hardware registers prefixed
5794         with underscore (_),
5795         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5796         * ralloc.c: newReg(): when register is REG_SFR then
5797         set address to rIdx,
5798         pic16_allocProcessorRegister(): marks register wasUsed=0
5799         pic16_writeUsedRegs(): added a call to assign processor
5800         registers via pic16_assignFixedRegisters
5801
5802 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5803
5804         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5805         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5806         variables in unused register banks.  Also the SSEG is placed
5807         wherever there is enough space for it, and IDATA can be anywhere
5808         in internal RAM.  For now compile using -Wl-Y[stack_size].
5809         The mem file is different for this option as well, since it
5810         makes no sense of talking about DSEG lenght.
5811
5812 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5813
5814         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5815         in certain cases, e.g. when ROM assignment, patch provided
5816         from Albert den Haan.
5817
5818 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5819
5820         Many signedness and type propagation fixes:
5821         * src/SDCCicode.c: made geniCodeCast() static
5822         replaced SPEC_ by IS_ (cosmetic)
5823         (operandOperation): fixed div and mod operation
5824         (usualBinaryConversions): added support for promotion of char
5825         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5826         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5827         (geniCodeAdd): an array index will stay unsigned, even if promoted
5828         from char to int
5829         (geniCodeArray): ditto
5830         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5831         * src/SDCCsymt.c (computeType): added more support for char;
5832         promotion of char is selectable by promoteCharToInt, fixed signedness
5833         for all cases
5834         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5835         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5836         * src/SDCCval (val*): replaced signedness calculation by
5837         computeType()
5838         rearranged if-branches (cosmetic)
5839         (valShift): added warning W_SHIFT_CHANGED
5840         (valCompare): fixed problem with different types
5841         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5842         * support/regression/tests/literalop.c: added many cases
5843         * support/regression/tests/ast_constant_folding.c: changed finally to
5844         'unsigned int'
5845         * .version: new year, new version: 2.3.7
5846         * src/SDCCmain.c (main): applied patch #866468
5847         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5848         provided by Scott Bronson
5849         * doc/sdccman.lyx: updated documentation for sdcdb
5850         updated and added chapter tips
5851
5852 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5853
5854         * src/SDCCsymt.h: missing from yesterday's commits
5855
5856 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/SDCC.y (struct_or_union_specifier),
5859         * support/Util/SDCCerr.c,
5860         * support/Util/SDCCerr.h: verify that struct & union tags are used
5861         as declared.
5862
5863 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5864
5865         * src/SDCCglobl.h: missing from yesterday's commits
5866
5867 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5870         sft_attributes, struct_declaration, parameter_declaration,
5871         type_name, start_block, declaration_list),
5872         * src/SDCC.lex (check_type): support redefinition of typedef names
5873
5874 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5875
5876         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5877         aligned xdata arrays. Erik helped me with the if clause.
5878
5879 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5880
5881         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5882         warning
5883
5884 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/SDCCast.h,
5887         * src/SDCCast.c (newAst_),
5888         * src/SDCCicode.h,
5889         * src/SDCCicode.c (ast2iCode, newiCode),
5890         * src/SDCCglobl.h,
5891         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5892         expr, statement, expression_statement, selection_statement,
5893         iteration_statement, expr_opt, jump_statement): foundation for tracking
5894         sequence points
5895         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5896         point code too)
5897
5898 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5899
5900         * support/Util/SDCCerr.c,
5901         * src/SDCCast.h,
5902         * src/SDCCast.c (createCase, createDefault, decorateType),
5903         * src/SDCClabel.c (labelUnreach),
5904         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5905         to error messages.
5906         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5907         (with thanks to Stas Sergeev)
5908         * device/include/time.h,
5909         * device/lib/time.c (CheckTime): suppress unreachable code warning
5910
5911 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5912
5913         * src/SDCCast.c (createIvalCharPtr),
5914         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5915         bug #753752)
5916         * support/regression/tests/nullstring.c: tests for these two bugs
5917
5918 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5919
5920         * support/Util/SDCCerr.h,
5921         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5922         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5923         about storage class and 'at' used inside struct or union
5924         * src/SDCCBBlock.c (iCodeFromeBBlock),
5925         * src/SDCCcse.c (ifxOptimize),
5926         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5927         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5928         printIval, emitStaticSeg, emitOverlay),
5929         * src/SDCClabel.c (deleteIfx),
5930         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5931         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5932         gatherAutoInit, processParms),
5933         * support/Util/SDCCerr.h,
5934         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5935         reporting for post-parse errors.
5936
5937 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5938
5939         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5940         implicit casts via union; they don't work on big endian systems
5941         (possible fix for bug #861138)
5942
5943 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5944
5945         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5946         * src/mcs51/main.c: fixed the fix for bug #737001
5947
5948 2003-12-15  Borut Razem <borut.razem AT siol.net>
5949
5950         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5951
5952 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5953
5954         * support/makebin/makebin.c: put output in binary mode
5955
5956 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5957
5958         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5959         xdata and data memory on startup. Set the environment variable
5960         SDCC_NOGENRAMCLEAR to disable this.
5961         * src/mcs51/peephole.def,
5962         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5963         (allows non-interrupt and interrupt code to safely compete for a resource
5964         without the non-interrupt code having to disable interrupts)
5965
5966 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5967
5968         * src/SDCCicode.c (geniCodeAdd),
5969         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5970         with valFromType if type might be a pointer and host is big endian).
5971         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5972         types, not just integer types.
5973         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5974         multiply defined with mismatching "at" address.
5975
5976 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5977
5978         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5979         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5980         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5981         with embedded nulls (fixed bug #753752)
5982
5983 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5984
5985         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5986         Apparently this did not see much testing (endless loop)
5987
5988 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5989
5990         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5991
5992 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5993
5994         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5995         gracefully handle NULL memmap pointers
5996
5997 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5998
5999         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6000         instead of deleting the iCode when an operand is volatile
6001         * src/z80/gen.c (genDummyRead),
6002         * src/mcs51/gen.c (genDummyRead),
6003         * src/ds390/gen.c (genDummyRead),
6004         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6005         not just IC_RIGHT
6006         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6007         * src/SDCC.y: fixed bug #850420
6008
6009 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         Applied z80 i/o port patch from Peter Townson and fixed some operators
6012         to better handle operands in A register.
6013         * device/include/z180.h
6014         * src/SDCC.y
6015         * src/SDCCglue.c
6016         * src/z80/gen.c
6017         * src/z80/gen.h
6018         * src/z80/main.c
6019         * src/z80/peeph-z80.def
6020         * src/z80/peeph.def
6021         * src/z80/z80.h
6022
6023 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6024
6025         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6026
6027 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * device/lib/hc08/_mullong.c: Removed extra #endif
6030
6031 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6032
6033         * sim/ucsim/hc08.src/inst.cc,
6034         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6035         carries from x to h
6036         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6037         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6038         * device/include/stdarg.h: fixed varargs for hc08
6039         * device/lib/Makefile.in,
6040         * device/lib/hc08/Makefile,
6041         * device/lib/hc08/_mulint.c,
6042         * device/lib/hc08/_mullong.c: fixed some endian problems
6043
6044 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6045
6046         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6047         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6048         * device/lib/_gptrget.c,
6049         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6050
6051 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6052
6053         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6054         * src/SDCCast.c (astErrors): fixed bug #846007
6055         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6056
6057 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/SDCCast.c (decorateType): disabled a transformation I added in
6060         revision 1.188 (access to fields of a structure at an absolute address);
6061         it breaks with bitfields, extern declarations, and gcse analysis.
6062         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6063         could be assigned through a pointer, so don't complain.
6064         * src/SDCCast.c (astErrors),
6065         * src/SDCCast.h,
6066         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6067
6068 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6069
6070         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6071         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6072         output of __config directives, since gpasm now supports them
6073         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6074         pre-processor macro, i.e. -DMCU=p18f452
6075         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6076         and modified to handle 'cast' icode similarly to '=' icode
6077         * src/pic16/device.h (typedef struct PIC_device): added field
6078         'extMIface' to indicate that chip has external memory interface
6079         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6080         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6081         18F8720
6082
6083 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * src/SDCC.y (pointer): fixed bug #846006
6086         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6087         * src/SDCCast.c (decorateType): fixed bug #846009
6088         * src/ds390/peeph.def,
6089         * src/ds390/gen.c (genAnd, genOr),
6090         * src/mcs51/peeph.def,
6091         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6092
6093 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6096         * src/SDCCdflow.c
6097         * src/SDCCcse.c
6098         * src/SDCCcse.h
6099         * src/SDCCBBlock.h
6100         * src/SDCCBBlock.c
6101
6102 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6103
6104         fixed bug #845089
6105         * src/SDCCbitv.h,
6106         * src/SDCCbitv.c: added function to free a bitvector
6107         * src/SDCClrange.h,
6108         * src/SDCClrange.c: added function to recompute the liveranges
6109         * src/avr/ralloc.c,
6110         * src/ds390/ralloc.c,
6111         * src/hc08/ralloc.c,
6112         * src/mcs51/ralloc.c,
6113         * src/pic/ralloc.c,
6114         * src/pic16/ralloc.c,
6115         * src/xa51/ralloc.c,
6116         * src/z80/ralloc.c: recompute the liveranges after register packing
6117
6118 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6119
6120         * src/SDCCloop.c (newInduction): fixed bug #845630
6121
6122 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6123
6124         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6125         inadvertantly left behind from my 2003-11-12 change
6126
6127 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6128
6129         Updated headers I neglected to commit yesterday.
6130         * src/SDCClrange.h,
6131         * src/SDCCicode.h
6132
6133 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6134
6135         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6136         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6137         * src/SDCCopt.c (eBBlockFromiCode),
6138         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6139         the creation of the key hash table from the sequencing so it can be used
6140         earlier (for some GCSE bug fixes still pending)
6141
6142 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6143
6144         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6145         * support/regression/tests/addsub.c: testing genPlus shortcut
6146
6147 2003-11-15  Borut Razem <borut.razem AT siol.net>
6148
6149         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6150
6151 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6154         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6155         ordering is immaterial.
6156         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6157
6158 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6161         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6162         (SIGSEV) of bug #840381
6163         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6164         unlink new file before rename if new and old filenames are the same)
6165
6166 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6167
6168         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6169         uninitialized variables) for the mcs51. Set environment variable
6170         SDCC_GENRAMCLEAR to test.
6171         xdata initialization slightly shorter
6172
6173 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/SDCCsymt.h,
6176         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6177         #838241 & 780691 (basicly the same bug)
6178         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6179         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6180
6181 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6182
6183         * src/SDCCmain.c (linkEdit): "fix" #834252
6184
6185 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6186
6187         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6188         * src/SDCCast.h,
6189         * src/SDCC.y: fixed bug #819403
6190
6191 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6192
6193         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6194         the reentrant attribute.
6195         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6196         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6197         simulation
6198         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6199         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6200         erroneously reduced to a literal.
6201         * src/hc08/ralloc.c (packRegisters, rematStr),
6202         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6203         some cases
6204
6205 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6206
6207         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6208         * doc/sdccman.lyx: changed from 'article' to 'book'
6209         * doc/Makefile: readded test_suite_spec and cdbfileformat
6210
6211 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6212
6213         * device/include/stdlib.h: include malloc.h to comply with ANSI
6214         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6215
6216 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6217
6218         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6219         * doc/clean.mk: also remove *.out files
6220         * doc/sdccman.lyx: some additions, larger top/bottom margins
6221
6222 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6223
6224         * src/SDCC.y: fixed bug #837365
6225         * support/regression/tests/bitopcse.c
6226         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6227         a symbol (might be valop instead)
6228         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6229         * device/lib/clean.mk: added hc08 to the cleaning list
6230
6231 2003-11-04  Borut Razem <borut.razem AT siol.net>
6232
6233         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6234           made 2003-11-04
6235         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6236           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6237           malloc is declared in standard stdlib.h
6238
6239 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6240
6241         * device/lib/hc08/Makefile: need to clean .rel not .o files
6242         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6243
6244 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6245
6246         * src/port.h,
6247         * src/hc08/main.c,
6248         * src/mcs51/main.c,
6249         * src/ds390/main.c,
6250         * src/z80/main.c,
6251         * src/avr/main.c,
6252         * src/pic/main.c,
6253         * src/pic16/main.c,
6254         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6255         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6256         tests (which uses the port's oclsExpense function)
6257         * src/SDCC.y,
6258         * src/SDCCast.c,
6259         * src/SDCCicode.c,
6260         * src/hc08/gen.c,
6261         * src/ds390/gen.c,
6262         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6263
6264 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6265
6266         * src/SDCCcse.c (ifxOptimize),
6267         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6268         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6269         deleting the IFX iCode.
6270         * src/hc08/ralloc.c: reduced unneeded slocs
6271         * src/hc08/gen.c: fixed bug in asmopToBoolean
6272
6273 2003-11-04  Borut Razem <borut.razem AT siol.net>
6274
6275         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6276           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6277           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6278           transferred to configure
6279
6280 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         Use headers defined in the C[++] standards:
6283         * sim/ucsim/gui.src/serio.src/fileio.cc
6284         * sim/ucsim/gui.src/serio.src/frontend.cc
6285         * sim/ucsim/gui.src/serio.src/main.cc
6286         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6287         * support/Util/NewAlloc.c
6288         * as/hc08/lklibr.c
6289         * as/mcs51/lklibr.c
6290         * as/z80/aslist.c
6291         * as/z80/assym.c
6292
6293 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6294
6295         * Added MSVC projects for hc08 assembler and linker:
6296         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6297         /as/hc08/link_hc08.dsp
6298
6299 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6300
6301         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6302
6303 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6304
6305         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6306
6307 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6308
6309         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6310
6311 2003-10-31  Borut Razem <borut.razem AT siol.net>
6312
6313         * support/cpp2/cpplib.h,
6314           support/cpp2/cpplib.c,
6315           support/cpp2/cpplex.c,
6316           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6317           to switch _asm block preprocessing on / off. Default is
6318           #pragma preproc_asm +
6319
6320 2003-10-31  Borut Razem <borut.razem AT siol.net>
6321
6322         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6323           when outputting comment blocks (when executed with -C option) and
6324           _asm (SDCPP specific) blocks
6325
6326 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6329
6330 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6331
6332         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6333
6334 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6335
6336         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6337         * src/SDCCast.c (decorateType): fixed bug #832664
6338
6339 2003-10-31  Borut Razem <borut.razem AT siol.net>
6340
6341         * support\cpp2\cpplex.c: fixed for SDCPP:
6342           comments(when executed with -C option) and _asm blocks
6343           were included even if they where in skipped #if block.
6344           Applied solution from GCC cpp 3.3.2
6345
6346 2003-10-31  Borut Razem <borut.razem AT siol.net>
6347
6348         * src/SDCC.lex: sdcc now understands both formats:
6349           '# <line_number> <file_name>' and
6350           '#line <line_number> <file_name>'
6351         * support/cpp2/cppmain.c: sdcpp now generates the standard
6352           '# <line_number> <file_name>' instead of former
6353           '#line <line_number> <file_name>'
6354
6355 2003-10-30  Borut Razem <borut.razem AT siol.net>
6356
6357         * support/cpp2/cpphash.h,
6358         * support/cpp2/cpplib.h
6359         * support/cpp2/cpplex.c,
6360         * support/cpp2/cppmain.c,
6361         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6362
6363 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6364
6365         Fixed a number of problems revealed by bug #827883.
6366         * src/SDCCloop.c (loopInvariants): Spill location of the
6367         result operand should be recomputed if extracted from
6368         a loop. Also, don't extract assignments of an iTemp
6369         from a literal.
6370         * src/SDCCast.c (isConformingBody): loop reversal should
6371         not occur if the control variable is involved with a
6372         relational operator.
6373
6374 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6375
6376         * .version: bumped to 2.3.6 to reflect the big improvements
6377         made by Erik and Klaus. Thanks!
6378
6379 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6380
6381         Replaced the livrange code.
6382         * src/SDCClrange.c: added new LR code
6383         * src/SDCCloop.c,
6384         * src/SDCCBBlock.h: removed remainig parts from old LR code
6385         * src/ds390/ralloc.c,
6386         * src/ds390/gen.c: minor fixes to make it work with new code
6387
6388 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6389
6390         * as/hc08/asm.h,
6391         * as/hc08/lkrloc.c,
6392         * src/hc08/gen.c,
6393         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6394         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6395         (tweaked fix for bug #818696)
6396
6397 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6398
6399         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6400
6401 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6402
6403         * src/SDCCmain.c,
6404         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6405         * src/mcs51/gen.c (gencjneshort),
6406         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6407         more efficient (per Scott Bronson's suggestion)
6408
6409 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         Extended the semantics of the critical keyword to include
6412         individual statements. See RFE #827755 and #799831
6413         * src/SDCC.y
6414         * src/SDCCicode.c
6415         * src/SDCCopt.c
6416         * src/SDCCast.c
6417         * support/Util/SDCCerr.c
6418         * support/Util/SDCCerr.h
6419         * src/mcs51/gen.c
6420         * src/ds390/gen.c
6421         * src/hc08/gen.c
6422
6423 2003-10-19  Borut Razem <borut.razem AT siol.net>
6424
6425         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6426
6427 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6428
6429         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6430         Fixed bug #818696
6431         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6432         and predecrement operand is displayed
6433
6434 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6435
6436         * src/SDCCval.c (valMinus): fixed bug #826041
6437
6438 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6439
6440         Some hc08 related updates that I missed earlier
6441         * sim/ucsim/stypes.h
6442         * support/regression/ports/hc08/spec.mk
6443
6444 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6445
6446         New target "hc08" for the Motorola 68hc08 family of micros
6447
6448         * configure
6449         * configure.in
6450         * Makefile
6451         * src/hc08/*
6452         * src/SDCCmain.c
6453         * src/port.h
6454         * sim/ucsim/hc08.src/*
6455         * sim/ucsim/configure.in
6456         * src/ucsim/configure
6457         * sim/ucsim/packages_in.mk
6458         * as/hc08/*
6459         * as/Makefile
6460         * device/include/mc68hc908qy.h
6461         * device/lib/hc08/*
6462         * device/lib/Makefile.in
6463         * support/regression/ports/hc08/*
6464         * support/regression/Makefile
6465
6466 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6467
6468         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6469         regression test
6470         * src/ds390/gen.c (genCast): fixed bug #821957
6471
6472 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6473
6474         * device/lib/logf.c: "fixed" overlay bug
6475         * support/regression/ports/host/spec.mk: added m library
6476         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6477         * support/regression/tests/float_trans: added (for Eric)
6478
6479 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6480
6481         * src/mcs51/gen.c (genCpl): fixed bug
6482         http://sf.net/mailarchive/message.php?msg_id=6263915
6483
6484 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6485
6486         * src/SDCCast.c (decorateType): added extended constant folding
6487         * src/SDCCsymt.c (computeType): cleanup
6488         * src/SDCCval.c (valShift): minor optimization
6489         * support/regression/tests/ast_constant_folding.c: added
6490
6491 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6492
6493         * src/SDCCmain.c: removed some unintended changes
6494
6495 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6496
6497         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6498         * src/z80/gen.c: fixed part of bug #817589
6499         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6500
6501 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6502
6503         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6504         * src/SDCCcflow.c
6505         * src/SDCCcse.c
6506         * src/SDCCdflow.c
6507         * src/SDCClabel.c
6508         * src/SDCClrange.c
6509         * src/SDCCmem.c
6510         * src/SDCCopt.c
6511         * src/SDCCpeeph.c
6512         * src/SDCCset.c
6513         * src/avr/ralloc.c
6514         * src/ds390/ralloc.c
6515         * src/izt/ralloc.c
6516         * src/mcs51/ralloc.c
6517         * src/pic/ralloc.c
6518         * src/pic16/ralloc.c
6519         * src/xa51/ralloc.c
6520         * src/z80/ralloc.c
6521         * src/z80/gen.c: removed unused label "release:"
6522
6523 2003-10-06  Borut Razem <borut.razem AT siol.net>
6524
6525         * src/SDCC.lex: removed definition of unused variables
6526           save_optimize and save_options
6527
6528 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6529
6530         * clean.mk: removed '=' in "-maxdepth=1"
6531         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6532         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6533
6534 2003-10-06  Borut Razem <borut.razem AT siol.net>
6535
6536         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6537           my_unput() replaced by unput()
6538
6539 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6540
6541         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6542         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6543         type-punned pointer will break strict-aliasing rules"
6544         Old LR behaviour is again default; Klaus' LR can be choosen by
6545         defining the environment variable LRKLAUS
6546         * src/SDCCBBlock.h
6547         * src/SDCCloop.c
6548         * src/SDCClrange.c
6549         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6550         * clean.mk: fixed removal of files in bin/CVS/
6551         * device/lib/clean.mk: fixed removal of directories small and large
6552         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6553         * src/SDCCicode.c,
6554         * src/SDCCval.c: removed superflous test for pedantic
6555
6556 2003-10-05  Borut Razem <borut.razem AT siol.net>
6557
6558         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6559           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6560           message "unmatched #pragma SAVE and #pragma RESTORE"
6561
6562 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6563
6564         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6565           assembly, critical functions, atomic, nojtbound)
6566
6567 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6568
6569         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6570         * src/SDCCBBlock.h
6571         * src/SDCCloop.c
6572         * src/SDCCloop.h
6573         * src/SDCClrange.c
6574
6575 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * src/z80/gen.h,
6578         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6579         * src/mcs51/gen.h
6580         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6581         * src/ds390/gen.h
6582         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6583         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6584         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6585
6586 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * src/z80/gen.c (genRet): fixed bug #524753
6589         * src/z80/gen.c (genCast): fixed internal error on cast from
6590         pointer to long
6591         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6592         fix for bug #477835 to the z80
6593         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6594         for tracking iCodes in the peephole optimizer for z80
6595
6596 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6597
6598         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6599         the other part of bug #814548
6600         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6601
6602 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6603
6604         * src/SDCCcse.c: fixed part of bug #814548
6605
6606 2003-09-28  Borut Razem <borut.razem AT siol.net>
6607
6608         * src/asm.c: rewrite of printILine() to use temporary file instead
6609           a pipe
6610         * src/xa51/main.c: commented out declaration of int rewinds
6611
6612 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6615
6616 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6617
6618         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6619         * src/asm.c (printILine): Fixed bug #811015
6620
6621 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6622
6623         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6624         freeing.
6625
6626 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6627
6628         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6629         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6630         to correctly handle general case of AOP_PAIRPTR
6631         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6632
6633 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/mcs51/ralloc.c (fillGaps),
6636         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6637         register positioning bug)
6638
6639 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6640
6641         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6642
6643 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6644
6645         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6646         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6647         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6648         (ralloc doesn't intentionally do this now, but perhaps later)
6649         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6650         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6651         register positioning bugs (Fixed bug #762602 and #795325)
6652         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6653         (Fixed bug #808779)
6654         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6655         lines that --i-code-in-asm generates
6656
6657 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6658
6659         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6660         trying to fclose a FILE* that was already closed.
6661
6662 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6663
6664         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6665         of const struct should be treated as if const themselves)
6666
6667 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6668
6669         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6670
6671 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6672
6673         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6674         Unix (/n) and DOS (/r/n) line terminations.
6675
6676 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6677
6678         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6679         bug #613775
6680
6681 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6682
6683         * src/mcs51/gen.c (genFunction, genEndFunction),
6684         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6685         and restore of EA so that stack offsets to parameters are
6686         correct when using both critical and reentrant/stack-auto.
6687         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6688         size (can be triggered in error if sloc is shared between
6689         different sized objects)
6690         * device/include/float.h: fixed macros to explicitly use
6691         unsigned long where needed
6692
6693 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6694
6695         Feature req. 799831: added code to allow nesting of critical functions
6696         * src/mcs51/gen.c (genFunction, genEndFunction)
6697         * src/ds390/gen.c (genFunction, genEndFunction)
6698
6699 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6700
6701         * src/SDCCsymt.c (sclsFromPtr),
6702         * src/SDCCsymt.h,
6703         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6704         support for standard C idiom of memory mapped variables; for
6705         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6706         to xdata int at 0x1234 tempvar = 1.
6707         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6708         provided by Akiya ISHIDA
6709
6710 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6713         * src/SDCCval.c (constVal): added reduction from int to char
6714         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6715         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6716         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6717         to ignore the sign
6718         * support/regression/tests/shifts.c: fixed
6719
6720 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6721
6722         * src/z80/gen.c (genXor): Fixed bug #805445
6723
6724 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6725
6726         Fixed bug #621531 (const & volatile confusion in the type chain).
6727         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6728         refer to the const or volatile state of the pointer itself.
6729
6730         * src/SDCCast.c
6731         * src/SDCCglue.c
6732         * src/SDCCicode.c
6733         * src/SDCCsymt.c
6734         * src/SDCCval.c
6735         * src/SDCC.y
6736         * src/SDCCsymt.h
6737         * src/pic/gen.c
6738         * src/pic/ralloc.c
6739         * src/pic16/gen.c
6740         * src/pic16/ralloc.c
6741         * support/regression/tests/const.c
6742
6743 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6744
6745         When checking for duplicated modules, use absolute paths
6746         instead of relative paths.  Files changed:
6747
6748         * as/mcs51/lklib.c
6749         * link/z80/lklib.c
6750
6751 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6752
6753         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6754
6755 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6756
6757         * device/include/string.h: added size_t typedef, changed
6758         prototypes to use size_t, eliminated separate reentrant and
6759         non-reentrant declarations, added _memmove declaration
6760         * device/lib/_memcpy.c: changed to use size_t instead of int,
6761         changed /4 to >>2 to avoid division library call
6762         * device/lib/_memcmp.c,
6763         * device/lib/_memset.c,
6764         * device/lib/_strncat.c,
6765         * device/lib/_strncpy.c,
6766         * device/lib/_strncmp.c: changed to use size_t instead of int
6767         * device/lib/_memmove.c: new file (fixed bug #772294)
6768         * device/lib/Makefile.in: added _memmove.c
6769         * device/lib/z80/asm_strings.s: fixed bug #772290
6770         * support/regression/tests/bitfields.c: attempt to fix host assertion
6771         failure on amd64-unknown-linux2.2
6772
6773 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6776         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6777         * as/z80/asmain.c (main): fixed bug #801766
6778
6779 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6780
6781         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6782         compilers
6783
6784 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6787         reported in bug #800609
6788
6789 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6790
6791         * Top header beautifications in src/pic16 directory:
6792           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6793           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6794           pcoderegs.h, ralloc.c, ralloc.h
6795         * main.c: added top header and GPL license notice
6796         * pcode.c: fixed the if-conditional warning
6797
6798 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6799
6800         * device/lib/_mullong.c: replaced int by short for gcc
6801
6802 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6805         and JUMPTABLE iCodes properly now (worked by accident before)
6806         * src/mcs51/gen.c (leftRightUseAcc),
6807         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6808         iCode properly now. Use getSize instead of nRegs since a & b
6809         aren't part of the nRegs tally.
6810
6811 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6812
6813         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6814         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6815           before instructions that use the _STATUS register
6816
6817 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6818
6819         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6820         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6821         fetching of the pointer
6822         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6823         copied from genNearPointerSet()
6824         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6825         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6826         If they pop r0/r1 they must be called in the opposite order than aopOp().
6827         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6828         (resp. --stack-auto), prepared for --xstack
6829
6830 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6831
6832         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6833
6834 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6835
6836         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6837         these ports have their own __sdcc_external_start()
6838
6839 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6840
6841         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6842         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6843         type for bits was changed. It resulted in bit variables becoming
6844         global, which is not permitted in PIC 14 assembly output.
6845
6846 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6847
6848         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6849
6850 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6851
6852         Z80 and MCS51 linkers complaint if a public symbol is defined
6853         in more than one library module:
6854
6855         * as/mcs51/lklib.c
6856         * link/z80/lklib.c
6857         * as/mcs51/Makefile.in
6858
6859 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6860
6861         A few small changes that speed up the peephole optimizer.
6862
6863         * src/SDCCpeeph.c
6864
6865 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6866
6867         Try to make the peephole optimizer smarter by maintaining
6868         an association between the assembly source code and the
6869         iCodes that originated them. Put this information to use
6870         with a new peephole rule condition "notVolatile" so that
6871         the rules can be aggressive yet still safe.
6872
6873         * src/SDCCpeeph.c
6874         * src/SDCCpeeph.h
6875         * src/mcs51/gen.c
6876         * src/mcs51/peeph.def
6877
6878 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6879
6880         Fixed bug #741761
6881
6882         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6883         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6884         if the left or right operand symbols have the accuse flag set.
6885
6886 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6887
6888         Changed the type of the result of the ! (NOT) operator to char;
6889         previously it returned the same type as the source. This allows
6890         us to eliminate all the genFloatNot functions (all of its target
6891         implementations were very buggy) since !float can use the same
6892         code as !long now.
6893
6894         * src/SDCCicode.c (ast2iCode): ! returns char
6895         * src/mcs51/gen.c (genNot, genNotFloat),
6896         * src/ds390/gen.c (genNot, genNotFloat),
6897         * src/z80/gen.c (genNot, genNotFloat),
6898         * src/pic/gen.c (genNot, genNotFloat),
6899         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6900
6901 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6902
6903         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6904         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6905            during interrupts. Ensure WSAVE is located at a shared bank address.
6906         2. Fixed page selection in some places
6907         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6908            the registers name strings.
6909         4. Fixed "signed / unsigned compare" compiler warnings.
6910         5. The PIC port manages its own allocation of the general purpose
6911            registers, but makes no attempt to reuse them. As a result when
6912            compiling it soon runs out of general purpose registers. Some
6913            additional code was added to the files pcode.c and device.c to walk
6914            through the function call tree and rename the registers so that they
6915            get reused.
6916
6917         * src/pic/device.c
6918         * src/pic/gen.c
6919         * src/pic/glue.c
6920         * src/pic/pcode.c
6921         * src/pic/pcode.h
6922         * src/pic/ralloc.c
6923         * src/pic/ralloc.h
6924         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6925         genPlus() & genMinus() when the result is the same as left or right
6926
6927 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6928
6929         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6930
6931 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6932
6933         Made bitfield a distinct type from bit so that bitfields
6934         convert as per ANSI C and bits retain their traditional
6935         boolean style behaviour. Implemented bitfield support in
6936         the z80 port.
6937
6938         * src/SDCCsymt.h,
6939         * src/SDCCsymt.c,
6940         * src/SDCCast.c,
6941         * src/cdbFile.c,
6942         * src/mcs51/gen.c,
6943         * src/ds390/gen.c: bit v bitfield split
6944         * src/z80/gen.c: New support for bitfields
6945         * support/regression/tests/bitfields.c: reenabled z80,
6946         added more tests
6947
6948 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6949
6950         Rules 246.x, 247.x relate to bitfields, the others speed up
6951         access to xdata mapped I/O devices.
6952
6953         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6954
6955 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6956
6957         Cleaned up genPackBits and genUnpackBits and added two helper
6958         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6959         for literal assignments in genPackBits (thanks to Frieder for
6960         reminding me).
6961
6962         * src/mcs51/gen.c
6963         * src/ds390/gen.c
6964
6965 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6966
6967         Fixed bug #748310 (pointer to function type mishandled when the
6968         function name is omitted). Also fixed a SIGSEGV when a function
6969         attribute (reentrant, etc) is used on a non-function or on a
6970         function but misplaced before the parameter list.
6971
6972         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6973         bug #748310
6974         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6975         * support/Util/SDCCerr.h,
6976         * support/Util/SDCCerr.c: Added func attr misuse error msg
6977
6978 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6979
6980         Fixed bug #787649 by anonymous
6981         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6982         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6983
6984 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6985
6986         Fixed numerous bitfield problems.
6987
6988         * src/SDCC.y: More bitfield related error checking
6989         * src/SDCCsymt.h,
6990         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6991         * support/Util/SDCCerr.h,
6992         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6993         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6994         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6995         * support/regression/tests/bitfields.c: tests added
6996
6997 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6998
6999         Made the constant following the "interrupt" keyword optional. If
7000         omitted, the function will not automatically be given an entry
7001         in the interrupt vector table (similar to #pragma NOIV, but
7002         less syntacticly kludgy). The interrupt number is also now
7003         range checked. Also fixed a bug in the high order bit example
7004         in the manual.
7005
7006         * src/SDCC.y
7007         * src/SDCCmem.c
7008         * src/SDCCglue.c
7009         * src/SDCCsymt.h
7010         * support/Util/SDCCerr.c
7011         * support/Util/SDCCerr.h
7012         * doc/sdccman.lyx
7013
7014 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7015
7016         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7017         * src/SDCCicode.c (operandOperation): rewritten some ops
7018         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7019         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7020         other type
7021         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7022         be re-activated by defining REDUCE_LITERALS)
7023         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7024         unsigned, but are signed by default
7025         * src/SDCCval.c (constVal): rearranged
7026         * src/SDCCval.c (valMod): preliminary fix
7027         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7028         * support/regression/literalop.c: added, work in progress
7029
7030 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7031
7032         Generate warnings for useless declarations like "char data;"
7033         that don't do what new users expect.
7034
7035         * src/SDCC.y
7036         * support/Util/SDCCerr.h
7037         * support/Util/SDCCerr.c
7038
7039 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7040
7041         * src/SDCCval.c (valMult): fix overflow detection of negative int
7042
7043 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7044
7045         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7046
7047         Changes to support big endian targets:
7048
7049         * src/ports.h
7050         * src/SDCCglue.c
7051         * src/avr/main.c
7052         * src/ds390/main.c
7053         * src/izt/i186.c
7054         * src/mcs51/main.c
7055         * src/pic/main.c
7056         * src/pic16/main.c
7057         * src/xa51/main.c
7058         * src/z80/main.c
7059
7060 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7061
7062         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7063         * device/lib/time.c: fixed warning "integer overflow in expression"
7064
7065 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7066
7067         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7068         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7069         constants are unsigned; added recognition of "u" flag for unsigned
7070         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7071         * src/SDCCval.c (valDiv, valMod): fixed signdness
7072         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7073         signedness of modulo, left and right shift
7074         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7075         * support/Util/SDCCerr.h: added warning W_INT_OVL
7076         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7077         * src/SDCCast.c (ast_print): improved output of constants
7078
7079 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7080
7081         Fixed some warnings when building with MSVC:
7082
7083         * as\mcs51\asdata.c
7084         * as\z80\asdata.c
7085         * as\mcs51\asm.h
7086         * as\z80\asm.h
7087         * link\z80\aslink.h
7088         * link\z80\lkdata.c
7089         * link\z80\lkeval.c
7090         * link\z80\lkgb.c
7091         * link\z80\lkihx.c
7092         * link\z80\lks19.c
7093         * link\z80\lksym.c
7094         * support\cpp2\cpplib.c
7095         * src\ds390\gen.c
7096         * src\mcs51\gen.c
7097
7098 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7099
7100         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7101
7102 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7103
7104         * support\librarian\clean.mk: Do not remove Makefile.
7105         * support\librarian\Makefile: added.
7106
7107 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7108
7109         Added librarian to MSVC build:
7110         * all.dsp
7111         * sdcc.dsw
7112         * support\librarian\librarian.dsp
7113
7114         'configure' not needed for librarian, removed:
7115         * support\librarian\configure
7116         * support\librarian\configure.in
7117         * support\librarian\config_in.h
7118         * support\librarian\Makefile.in
7119
7120         Hopefully these ones built the librarian and the rest of sdcc properly:
7121         * Makefile
7122         * Makefile.common.in
7123
7124         Messed up 'configure', so revert to previous version:
7125         * configure
7126         * configure.in
7127
7128 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7129
7130         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7131         there, while the mantissa of a double is "only" 53 bits wide.
7132
7133 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7134
7135         Adding sdcclib to the build.  MSVC project coming soon.
7136         Files added/changed:
7137
7138         * support\librarian\clean.mk
7139         * support\librarian\configure
7140         * support\librarian\configure.in
7141         * support\librarian\config_in.h
7142         * support\librarian\Makefile.bcc
7143         * support\librarian\Makefile.in
7144         * support\librarian\sdcclib.c
7145         * Makefile.bcc
7146         * Makefile
7147         * Makefile.common.in
7148         * configure
7149         * configure.in
7150
7151 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7152
7153         Linker now complaints if linked modules have conflicting options, for
7154         example, one compiled using --model-large and another one compiled with
7155         --model-small.  The following files were modified:
7156
7157         * as\mcs51\asdata.c
7158         * as\mcs51\aslink.h
7159         * as\mcs51\asm.h
7160         * as\mcs51\asmain.c
7161         * as\mcs51\asout.c
7162         * as\mcs51\i51pst.c
7163         * as\mcs51\lkdata.c
7164         * as\mcs51\lklibr.c
7165         * as\mcs51\lkmain.c
7166         * as\z80\asdata.c
7167         * as\z80\asm.h
7168         * as\z80\asmain.c
7169         * as\z80\asout.c
7170         * as\z80\z80pst.c
7171         * link\z80\aslink.h
7172         * link\z80\lkdata.c
7173         * link\z80\lklibr.c
7174         * link\z80\lkmain.c
7175         * src\SDCCglue.c
7176
7177 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7178
7179         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7180         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7181
7182 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7183
7184         * src/z80/mappings.i: fix _mul[us][int,long] entries
7185
7186 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7187
7188         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7189
7190 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7191
7192         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7193         * support/regression/tests/bitopcse.c: added
7194         fixed warning:
7195         * src/avr/gen.c:
7196         * src/pic/gen.c:
7197         * src/pic16/gen.c:
7198         * src/z80/gen.c:
7199         * src/xa51/gen.c:
7200
7201 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7202
7203         added support for new library format to z80, gbz80 linkers:
7204         *link/z80/aslink.h
7205         *link/z80/lklex.c
7206         *link/z80/lklib.c
7207         *link/z80/lklist.c
7208
7209 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7210
7211         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7212         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7213
7214 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7215
7216         added DUMMY_READ_VOLATILE:
7217         * src/SDCC.y:
7218         * src/avr/gen.c:
7219         * src/xa51/gen.c:
7220         * src/z80/gen.c:
7221         * src/pic/gen.c:
7222         * src/pic16/gen.c:
7223         * src/mcs51/gen.c:
7224         * src/ds390/gen.c:
7225         * src/SDCCcse.c (algebraicOpts): many improvements
7226         * src/SDCCcse.h: removed algebraicOpts()
7227         * src/SDCCicode.c (picDummyRead): added
7228
7229 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7230
7231         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7232         "Insufficient space in data memory".
7233
7234 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7235
7236         * src/mcs51/gen.c: fixed bug #771358
7237         * src/z80/gen.c: fixed bug #759087
7238
7239 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * src/pic16/glue.c: minor cleanup by Vangelis
7242
7243 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7244
7245         * device/include/regc515c.h: fixed #758477
7246         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7247         * device/lib/_gptrput.c: saved a few bytes
7248         * my tab spacing is 8, yours too?)
7249         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7250         * device/lib/serial.c: process RX bytes earlier than TX bytes
7251         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7252
7253 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7254
7255         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7256
7257 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7258
7259     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7260
7261 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7262
7263         * device/lib/Makefile.in: bad fix, reverted to 1.43
7264
7265 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * device/lib/Makefile.in: added missing z80 object files
7268
7269 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7272         pic16 progress by Vangelis:
7273         * src/SDCCglobl.h:
7274         * src/SDCCmain.c:
7275         * src/pic/Makefile:
7276         * src/pic:
7277         * pic/Makefile:
7278         * pic16/device.c:
7279         * pic16/device.h:
7280         * pic16/gen.c:
7281         * pic16/gen.h:
7282         * pic16/genarith.c:
7283         * pic16/glue.c:
7284         * pic16/main.c:
7285         * pic16/pcode.c:
7286         * pic16/pcode.h:
7287         * pic16/pcodepeep.c:
7288         * pic16/peeph.def:
7289
7290 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7291
7292     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7293
7294 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7295
7296     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7297     added gbz80 build to MSVC project.
7298     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7299     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7300     from 8051 stuff and setup so it links using a .lnk file.
7301
7302 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7303
7304     * support/librarian/sdcclib.c: sdcc librarian.
7305     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7306     with sdcclib.
7307
7308 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7309
7310     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7311
7312 2003-07-02  Borut Razem <borut.razem AT siol.net>
7313
7314         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7315         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7316         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7317         src/xa51/main.c, src/z80/main.c:
7318         virtualization of glue() function: each port has it's own glue function,
7319         which is accessed by do_glue function pointer in PORT.general structure
7320
7321 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7322
7323         * DS800C400 fun, improved ROM interface and tinibios.
7324
7325 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7326
7327         * More support for DS80C400. Now includes beginning of interface to ROM.
7328
7329 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7330
7331         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7332
7333 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7334
7335         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7336
7337 2003-06-19  Borut Razem <borut.razem AT siol.net>
7338
7339         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7340
7341 2003-06-19  Borut Razem <borut.razem AT siol.net>
7342
7343         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7344         fixed Z80 port - crt0.o: cannot open.
7345
7346 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7347
7348         * support/Util/MySystem.c (merge_command): revert bad fix
7349
7350 2003-06-18  Borut Razem <borut.razem AT siol.net>
7351
7352         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7353
7354 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7355
7356         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7357         option --use-stdout sends errors to stdout instead of stderr.
7358
7359 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7360
7361         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7362
7363 2003-06-15  Borut Razem <borut.razem AT siol.net>
7364
7365         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7366         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7367         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7368         fixed width array of pointers replaced with sets;
7369         multiple include and lib paths ared transferred to preprocessor and linker
7370         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7371         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7372         fixed width array of pointers
7373         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7374         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7375         fixupPath(), getPathDifference()
7376         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7377         fixed width array of pointers
7378
7379 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         * src/pic16/ralloc.c: fix warnings
7382         * src/pic16/pcode.c: fix warning
7383
7384 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7385
7386          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7387         know all the details, but essentially this set of changes enable
7388         the pic16 port to generate movff instructions and generate assembler
7389         directives,
7390         * src/SDCCmain.c:
7391         * src/pic16/gen.c:
7392         * src/pic16/glue.c:
7393         * src/pic16/pcode.c:
7394         * src/pic16/device.c:
7395         * src/pic16/main.c:
7396         * src/pic16/pcode.h:
7397         * src/pic16/pcoderegs.c:
7398         * src/pic16/ralloc.c:
7399         * src/pic16/ralloc.h:
7400
7401 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7402
7403         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7404         added option --vc, so sdcc errors and warnings are compatible with
7405         Microsoft Visual Studio.
7406
7407 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7408
7409         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7410           device/lib/libfloat.lib: added atof function.
7411
7412 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7413
7414         * doc/sdccman.lyx: updated to Lyx 1.3
7415         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7416         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7417         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7418
7419 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7420
7421         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7422
7423 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7424
7425         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7426           additions to the "related tools/documentation" section
7427
7428 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7429
7430         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7431
7432 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7433
7434         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7435         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7436
7437 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7438
7439         * doc/sdccman.lyx: fix double dash and other minor things
7440         * doc/Makefile: fix double dash
7441
7442 2003-05-28  Karl Bongers(patches from Martin Helmling)
7443         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7444           condition and ignore commands.
7445
7446 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7447
7448         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7449           is in parts still quite out of date, I did changes as far as I felt makes sense
7450           for a non-native english speaker.
7451           Please feel free to add to the manual or to correct my changes.
7452         * doc/Makefile: undid touching the date of intermediate tex files.
7453
7454 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7455
7456         * doc/sdccman.lyx: Manual has an index now
7457
7458 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         Finalize muluint/mulsint and mululong/mulslong merging:
7461         * device/lib/_mulint.c
7462         * device/lib/_mullong.c
7463         * device/lib/gbz80/mul.s
7464         * device/lib/gbz80/stubs.s
7465         * device/lib/z80/mul.s
7466         * device/lib/z80/stubs.s
7467         * src/SDCCsymt.c (initCSupport)
7468
7469 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7470
7471         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7472         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7473           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7474           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7475           instead of /Zm500.
7476
7477 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7478
7479         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7480           the regression tests I'm not brave enough to enable 245.b, 245.c
7481         * doc/sdccman.lyx: added latex preamble for hyperref package.
7482           Using pdflatex this will give you a hyperlinked pdf file with
7483           bookmarks. (prepend '%' before /usepackage if this breaks something)
7484
7485 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7486
7487          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7488
7489 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7490
7491         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7492
7493 2003-05-21    <johan AT balder>
7494
7495         * src/SDCCglue.c (printIval): fixed bug #739934
7496
7497 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7498
7499         Applied patch from bug 737905 (renamed yylineo to mylineno):
7500         * src/altlex.c
7501         * src/SDCCast.c
7502         * src/SDCglobl.h
7503         * src/SDCC.lex
7504         * src/SDCCsymt.c
7505         * src/SDCCval.c
7506         * src/pic16/pcode.c: Cleaned warnings
7507         * src/pic16/pcodeflow.c: Cleaned warnings
7508         * src/pic16/pcoderegs.c: Cleaned warnings
7509
7510 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7511
7512         * src/pic16/pcode.c: Cleaned warnings
7513         * src/pic16/pcodepeep.c: Cleaned warnings
7514         * src/pic16/ralloc.c: Cleaned warnings
7515
7516 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         * doc/sdccman.lyx: fixed bug 739745
7519         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7520
7521 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7522
7523         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7524         it can be defined with CFLAGS when running configure
7525         * src/SDCCmain.c: fixed compiling + linking with object files
7526
7527 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7528
7529         * configure.in: configure for pic16 port,
7530             added --disable-pic16-port
7531         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7532         * src/SDCCmain.c: linkOptions is changed to set *,
7533             added if/endif conditional macros to remove options help
7534             messages from optionsTable when a port is not configured, added
7535             support for the PIc16 port in the ports table, when executing
7536             the compiler with no port specified on command line, a default
7537             port is selected with the new macro DEFAULT_PORT which is
7538             defined in port.h, in setDefaultOptions() linkOptions is removed
7539             from initialization assignment, since now it is a set,
7540             parseCmdLine uses setParseWithComma for linkOptions, in
7541             linkEdit() linkOptions are accessed with new function indexSet()
7542             which returns the i'th item of a set variable. See SDCCset.c, in
7543             linkEdit() when calling buildCmdLine(), added linkOptions as
7544             last argument. Now users can pass arguments to gplink via the
7545             -Wl option, main() uses pic16glue() to glue up pic16 programs
7546         * src/SDCCpeeph.c: various changes to support pic16
7547         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7548             return the i'th item of the set
7549         * src/SDCCset.h: added function prototype for indexSet()
7550         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7551         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7552         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7553             added macro DEFAULT_PORT
7554         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7555         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7556             generated
7557         * src/pic16/glue.c: commented out some error producing lines
7558         * src/pic16/main.c: __config directives are commented out to stop
7559             gpasm complaining and test the linkage with gplink, _linkCmd and
7560             _asmCmd changed to be more gplink and gpasm friendly
7561         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7562             produced an error when parsed, peep rule 12 is added to utilize
7563             movff, but it is commented out since the pCode does not support
7564             yet a command with 2 address arguments
7565
7566 2003-05-18    <johan AT balder>
7567
7568         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7569         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7570 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7571
7572         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7573   Added feature to script commands from file.
7574
7575 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7576
7577         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7578         * src/SDCCutil.c: include ctype.h for win32
7579
7580 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7581
7582         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7583
7584 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7585
7586         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7587   Fixed so you can set breakpoints prior to run, run does not stop
7588   on entry now.  Add tbreak.  Other enhancements and fixes for use
7589   with ddd.
7590
7591 2003-05-12  Borut Razem <borut.razem AT siol.net>
7592
7593         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7594
7595 2003-05-11  Borut Razem <borut.razem AT siol.net>
7596
7597         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7598         the path of bin directory, so that PATH is the only env. variable, which has to be set
7599         in case of standard installation.
7600         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7601         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7602         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7603
7604 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7607         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7608         temp files are in the port dir; clean the gen/test directory when
7609         generating new test.c
7610         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7611         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7612         * support/regression/tests/zeropad.c: added
7613
7614 2003-05-09    <johan AT balder>
7615
7616         * src/SDCCglue.c: fixed bug #597940
7617
7618 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7619
7620         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7621   cache sfr, optimize next,step, fix off by one sourceline,
7622   support ddd list function.
7623         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7624
7625 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7626
7627         * support/regression/HTMLgen.py: added compare_s2f()
7628         * support/regression/Makefile: redo 1.27
7629         * support/regression/generate-cases.py: redo 1.5
7630
7631 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7632
7633         * support/regression/tests/float.c: workaround 33 bit hex constant
7634         * support/regression/tests/simplefloat.c: fix division for host
7635
7636 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7637
7638         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7639         that tame's the PIC's over-aggressive optimizer.
7640
7641 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7642
7643          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7644          support for MSVC.
7645
7646 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7647
7648         Initial support for DS80C400. "Hello world" runs on TINIm400
7649         (with polled I/O).
7650
7651 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7652
7653          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7654          * Some notes on ddd usage added in debugger/README
7655          Martin Helmling adding more features and fixes for ddd GUI debugger.
7656          Code added for nexti, stepi, up, down, and other adjustments.
7657
7658 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7659
7660         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7661         * src/pic/peeph.def Added two rules to optimize carry manipulation
7662         * src/pic/* removed debug printfs
7663
7664 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7665
7666         * debugger/mcs51/cmd.c: added header newalloc.h
7667
7668 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7669
7670         * as/Makefile: new EXEEXT
7671         * as/z80/Makefile: remove trailing slash of BUILDIR
7672         * as/z80/clean.mk: new EXEEXT
7673         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7674         * support/cpp2/Makefile.in: new EXEEXT
7675         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7676
7677 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7678
7679         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7680         EXEEXT was introduced to fix all related problems with targets
7681         "clean", "install" and "uninstall"; a couple of further flaws
7682         especially with "clean" have been fixed too
7683         * as/mcs51/Makefile.in
7684         * as/mcs51/clean.mk
7685         * as/z80/Makefile
7686         * Makefile
7687         * clean.mk
7688         * debugger/mcs51/Makefile.in
7689         * debugger/mcs51/clean.mk
7690         * link/z80/Makefile
7691         * link/z80/Makefile.in
7692         * link/z80/clean.mk
7693         * link/Makefile
7694         * packihx/Makefile.in
7695         * packihx/clean.mk
7696         * sim/ucsim/Makefile
7697         * sim/ucsim/clean.mk
7698         * sim/ucsim/avr.src/Makefile.in
7699         * sim/ucsim/avr.src/clean.mk
7700         * sim/ucsim/s51.src/Makefile.in
7701         * sim/ucsim/s51.src/clean.mk
7702         * sim/ucsim/xa.src/Makefile.in
7703         * sim/ucsim/xa.src/clean.mk
7704         * sim/ucsim/z80.src/Makefile.in
7705         * sim/ucsim/z80.src/clean.mk
7706         * sim/ucsim/main_in.mk
7707         * sim/ucsim/packages_in.mk
7708         * sim/ucsim/gui.src/Makefile.in
7709         * sim/ucsim/gui.src/serio.src/Makefile.in
7710         * sim/ucsim/gui.src/serio.src/clean.mk
7711         * src/Makefile.in
7712         * src/clean.mk
7713         * support/cpp2/Makefile.in
7714         * support/cpp2/clean.mk
7715         * support/makebin/Makefile
7716         * support/makebin/clean.mk
7717         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7718         * doc/sdccman.lyx: --program-suffix no longer needed
7719
7720 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7721
7722          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7723          Martin Helmling added support for ddd GUI debugger.
7724          Code added to display assembly, set variables, and other commands
7725          to interface to ddd.
7726
7727 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7728
7729         * as/Makefile: fix target clean
7730         * as/clean.mk: fix target clean
7731         * as/z80/clean.mk: fix target clean
7732
7733 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         * Makefile.common.in: added  AT EXEEXT AT
7736         * configure.in: removed all mingw32 stuff
7737         * configure: rebuilt from configure.in
7738         * doc/sdccman.lyx: updated section "installation"
7739         * support/scripts/sdcc_mingw32: adapted to configure
7740         * support/scripts/sdcc_cygwin_mingw32: added
7741
7742 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7743
7744         * src/pic Added object file support for the PIC port
7745         * src/pic Applied patch from Craig Franklin (this started the object file support)
7746         * src/regression Updated the PIC regression tests for object files
7747
7748 2003-04-20  Borut Razem <borut.razem AT siol.net>
7749
7750         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7751           lklex.c: In function `getfid':
7752           lklex.c:203: warning: array subscript has type `char'
7753         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7754           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7755         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7756           stack handling macros
7757
7758 2003-04-19  Borut Razem <borut.razem AT siol.net>
7759
7760         * "handling space characters in file path" task:
7761         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7762         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7763         * support/Util/MySystem.h: make it self-sufficient
7764         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7765           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7766           handling space characters in file path
7767         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7768           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7769         * support/Util/MySystem.c: handling space characters in executable's path
7770
7771 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7772
7773         * as/z80/Makefile: fix permanent rebuild of z80
7774         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7775         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7776
7777 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7778
7779         * src/SDCCopt.c: add special case optimization to replace modulo by
7780           a power of two with a bitwise AND.
7781
7782 2003-04-18    <johan AT balder>
7783
7784         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7785
7786 2003-04-17    <johan AT balder>
7787
7788         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7789         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7790
7791 2003-04-13  Borut Razem <borut.razem AT siol.net>
7792
7793         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7794         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7795           fixed mingw problem in adl_NORMALIZE_PATH
7796
7797 2003-04-12  Borut Razem <borut.razem AT siol.net>
7798
7799         * fixed "#pragma SAVE/RESTORE can not be nested":
7800         * src/SDCC.lex: reworked pragma handling functions
7801         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7802         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7803
7804 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7805
7806         * src/SDCCutil.c (pathEquivalent): defined but not used
7807         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7808         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7809         * configure: rebuilt from configure.in
7810         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7811         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7812         * device/include/Makefile.in: replace sdcc_datadir
7813         * device/lib/Makefile.in: replace sdcc_datadir
7814         * Makefile.common.in: add LDFLAGS from configure
7815         * packihx/Makefile.in: use LDFLAGS
7816         * src/Makefile.in: use LDFLAGS
7817         * support/cpp2/Makefile.in: add LDFLAGS from configure
7818         * support/makebin/Makefile: use LDFLAGS
7819         * .version: bumped version number to 2.3.5
7820
7821 2003-04-12  Borut Razem <borut.razem AT siol.net>
7822
7823         * completed "different paths" task:
7824         * src/SDCCmacro.c: fixed bug in handling quotes
7825         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7826         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7827
7828 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7829
7830         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7831
7832 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7833
7834         * ds390/gen.c ds390/peeph.def: fix bug 706781
7835
7836 2003-04-11  Borut Razem <borut.razem AT siol.net>
7837
7838         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7839
7840 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7841
7842         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7843         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7844          set - this bit used to not be set...).
7845         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7846           bad code in PIC Port
7847         * src/regression/and2.c added to test bug 609268
7848         * src/regression/Makefile added and2.c to regression test
7849
7850
7851 2003-04-08    <johan AT CP255758-A>
7852
7853         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7854         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7855         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7856
7857 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7858
7859         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7860         fix bug #487815
7861         * support/cpp2/Makefile.in: fix bug #487815
7862         * configure: rebuilt from configure.in
7863         * Makefile.common.in: docdir changed, new path suffixes
7864         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7865         * sdcc_vc_in.h: reflect changes from sdccconf.h
7866         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7867         * src/SDCCutil.h: remove BINDIR hack
7868         * doc/sdccman.lyx: update new path hierarchy
7869
7870 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7871
7872         * src/SDCCpeeph.c: added okToRemoveSLOC test
7873
7874 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7875
7876         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7877
7878 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7879
7880         * src/SDCCpeeph.c: added labelIsReturnOnly test
7881         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7882
7883 2003-04-05    <johan AT balder>
7884
7885         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7886         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7887         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7888         * src/SDCCast.c: fixed a warning
7889         * src/SDCCast.h: fixed a warning
7890         * src/SDCCicode.c (operandFromAst): fixed a warning
7891
7892 2003-04-04    <johan AT balder>
7893
7894         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7895         * src/SDCCast.c (decorateType): fixed bug #715076
7896         * src/SDCC.y: fixed bug #702907
7897
7898 2003-04-03    <johan AT balder>
7899
7900         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7901         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7902         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7903         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7904         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7905
7906 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7907
7908         * _decdptr.c: fix return values
7909         * _gptrget.c: fix return values
7910         * _gptrgetc.c: fix return values
7911         * _gptrput.c: fix return values
7912         * _mulint.c: fix return values
7913         * as/z80/Makefile: fix 'make -j' problem
7914
7915 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7916
7917         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7918         * configure.in: big cleanup, updated to autoconf 2.5x
7919         * configure: rebuilt from configure.in
7920         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7921         * sdcc_vc_in.h: reflect changes from sdccconf.h
7922         * doc/Makefile: fixed a flaw in "make install"
7923
7924 2003-04-02    <johan AT balder>
7925
7926         * src/ds390/gen.c (genCmp): no comments
7927         * src/mcs51/gen.c (genCmp): no comments
7928         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7929         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7930
7931 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7932
7933         * support/regression/generate-cases.py: place generated file in given sub directory
7934         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7935         * support/regression/Makefile: improvements for 'make -j';
7936         side effect: it's simpler and faster now
7937
7938 2003-03-31  Borut Razem <borut.razem AT siol.net>
7939
7940         * src/z80/main.c: link-{port} and as-{port} defined without path
7941         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7942
7943 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7946
7947 2003-03-30  Borut Razem <borut.razem AT siol.net>
7948
7949         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7950           changed type of list parameter to set
7951         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7952         * src/port.h: changed type of do_assemble() parameter to set
7953         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7954           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7955           definition of "cppoutfilename" macro with NULL value in preProcess()
7956         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7957         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7958         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7959           replaced with set *binPathSet
7960         * shash_add() deallocates the item, if allready exsists, before adding the new one
7961         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7962
7963 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7964
7965         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7966           a nested for loop bug in the PIC port
7967         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7968           for loops
7969
7970 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * support/Util/dbuf.h: remove C++ stuff to make it portable
7973
7974 2003-03-28  Borut Razem <borut.razem AT siol.net>
7975
7976         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7977           literal strings in stringLiteral()
7978         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7979         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7980           to the project
7981
7982 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7983
7984         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7985
7986 2003-03-26    <johan AT balder>
7987
7988         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7989         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7990         * src/SDCCast.c (decorateType): fixed " -v < 3"
7991
7992 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7993
7994         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7995         Added Lenny Story's debug infrastructure changes:
7996         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7997         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7998         * src/cdbFile.c: added
7999         * src/SDCCdebug.c: added
8000         * src/SDCCdebug.h: added
8001         * src/SDCCast.c (createFunction)
8002         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8003         * src/SDCCmain.c (parseCmdLine, main)
8004         * src/SDCCmem.c (redoStackOffsets)
8005         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8006         * src/SDCCsymt.h
8007         * src/common.h
8008         * src/avr/gen.c (genAVRCode)
8009         * src/ds390/gen.c (gen390Code)
8010         * src/mcs51/gen.c (gen51Code)
8011         * src/pic/gen.c (genpic14Code)
8012         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8013         * src/xa51/gen.c (genXA51Code)
8014         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8015
8016 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8017
8018         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8019         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8020
8021 2003-03-22    <johan AT balder>
8022
8023         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8024
8025 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8026
8027         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8028         * doc/cdbfileformat.lyx: added, written by Lenny Story
8029         * doc/Makefile: added cdbfileformat.lyx
8030         * doc/clean.mk: added cdbfileformat.lyx
8031
8032 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8033
8034         * src/mcs51/peeph.def: fix bug #705773
8035
8036 2003-03-20    <johan AT balder>
8037
8038         An sfr/sbit can have an "at #" AND an initializer
8039         * src/SDCCsymt.c (checkSClass):
8040         * src/SDCCmem.c (allocGlobal):
8041         * src/SDCCmem.c (allocLocal):
8042         * src/SDCCast.c (createBlock):
8043
8044 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8045
8046         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8047
8048 2003-03-16    <johan AT balder>
8049
8050         Undid the hackup of const and volatile, the problem is much bigger
8051         * src/SDCC.y:1.65
8052         * src/SDCCast.c:1.171
8053         * src/SDCCglue.c:1.138
8054         * src/SDCCicode.c:1.146
8055         * src/SDCCsymt.c:1.150
8056         * src/SDCCval.c:1.65
8057
8058 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8059
8060         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8061         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8062
8063 2003-03-13    <johan AT balder>
8064
8065         Hackup const and volatile modifiers in type chains a bit:
8066         * src/SDCC.y:1.63
8067         * src/SDCCast.c:1.169
8068         * src/SDCCglue.c:1.136
8069         * src/SDCCicode.c:1.143
8070         * src/SDCCsymt.c1.146
8071         * src/SDCCsymt.h1.59
8072         * src/SDCCval.c:1.63
8073
8074 2003-03-12    <johan AT balder>
8075
8076         * src/SDCCBBlock.h: more LRH debugging junk
8077         * src/SDCCcflow.h: more LRH debugging junk
8078         * src/SDCCloop.c: more LRH debugging junk
8079         * src/SDCC.y (struct_declaration): fixed bug #697590
8080         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8081         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8082         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8083
8084 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8085         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8086         test function names must now match exactly).
8087         * src/SDCCcse.c: added special case in findCheaperOp to allow
8088         extending a short integer. Makes less awful code for bug 700121 test case.
8089
8090 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8091
8092         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8093         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8094
8095 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8096
8097         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8098         actually called (operandsNotEqual() was called for all
8099         operandsNotEqualX tests).
8100
8101 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8102
8103         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8104         with shorter literals. Fixes bug 700121.
8105
8106 2003-03-11    <johan AT balder>
8107
8108         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8109
8110 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8111
8112         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8113         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8114
8115 2003-03-10  Borut Razem <borut.razem AT siol.net>
8116
8117         * src/SDCCmain.c: pipe preprocessor's output
8118         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8119         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8120         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8121         which closes all pipes in pipeSet set
8122         * src/SDCCset.c: free deleted item in function deleteSetItem()
8123         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8124         moved from z80 to src subproject
8125         * .version: increased version number to 2.3.4
8126
8127 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8128
8129         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8130         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8131         * support/regression/ports/xa51/spec.mk: fix typo
8132
8133 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8134
8135         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8136
8137 2003-03-09  Borut Razem <borut.razem AT siol.net>
8138
8139         * src/SDCCmain.c: pipe preprocessor's output
8140         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8141         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8142         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8143         which closes all pipes in pipeSet set
8144         * src/SDCCset.c: free deleted item in function deleteSetItem()
8145         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8146         moved from z80 to src subproject
8147
8148 2003-03-09  Borut Razem <borut.razem AT siol.net>
8149
8150         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8151         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8152         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8153         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8154         * src/SDCCglobl.h: unification of WIN32 native definitions
8155
8156 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8157
8158         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8159
8160 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8161
8162         * src/configure.in:   check for endianess (even while cross-compiling)
8163         * src/configure:      check for endianess (even while cross-compiling)
8164         * src/configure_in.h: check for endianess (even while cross-compiling)
8165         * src/avr/gen.c:        remove old endianess stuff
8166         * src/mcs51/gen.c:      remove old endianess stuff
8167         * src/ds390/gen.c:      remove old endianess stuff
8168         * src/pic/gen.c:        remove old endianess stuff
8169         * src/pic/genarith.c:   remove old endianess stuff
8170         * src/pic/glue.c:       fix endianess check
8171         * src/pic16/gen.c:      remove old endianess stuff
8172         * src/pic16/genarith.c: remove old endianess stuff
8173         * src/pic16/glue.c:     fix endianess check
8174         * src/xa51/gen.c:       remove old endianess stuff
8175         * src/z80/gen.c:        fix endianess check
8176         * src/SDCCglue.c:       fix endianess check
8177         * src/ds390/peeph.def: fix bug 700036
8178
8179 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8180
8181         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8182         * src/configure: find appropriate data-types on host for SDCC's int and long
8183         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8184         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8185         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8186
8187 2003-03-07    <johan AT balder>
8188
8189         Just a big NOOP:
8190                 some minor cleanups before the big shot
8191                 OP_DEFS and OP_USES now use Kevin's protection
8192                 new option --nolabelopt
8193
8194         * src/SDCCBBlock.c:
8195         * src/SDCCast.c,:
8196         * src/SDCCcflow.c:
8197         * src/SDCCcse.c:
8198         * src/SDCCicode.c:
8199         * src/SDCCicode.h:
8200         * src/SDCClabel.c:
8201         * src/SDCCloop.c:
8202         * src/SDCCmain.c:
8203         * src/ds390/ralloc.c:
8204         * src/mcs51/ralloc.c:
8205         * src/pic/ralloc.c:
8206         * src/xa51/ralloc.c:
8207         * src/z80/ralloc.c:
8208
8209 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * src/pic/pcode.c (get_op): fix 64 bit warnings
8212         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8213         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8214         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8215         * support/regression/tests/malloc.c: fix 64 bit warnings
8216
8217 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * src/mcs51/gen.c (genMinus): fixed bug 696436
8220
8221 2003-03-02  Borut Razem <borut.razem AT siol.net>
8222
8223         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8224
8225 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8226
8227         * configure.in: test for mkstemp
8228         * sdccconf_in.h: add HAVE_MKSTEMP
8229
8230 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8231
8232         * device/include/ctype.h: removed warning while using --stack-auto
8233         * device/include/malloc.h: removed warning while using --stack-auto
8234         * device/include/string.h: removed warning while using --stack-auto
8235
8236 2003-02-23  Borut Razem <borut.razem AT siol.net>
8237
8238         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8239         because NDEBUG is defined (see man assert)
8240         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8241
8242 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8243
8244         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8245         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8246
8247 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8248
8249         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8250         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8251
8252 2003-02-18    <johan AT balder>
8253
8254         * as/mcs51/asmain.c (asmbl): module can start with a digit
8255         * as/z80/asmain.c (asmbl): module can start with a digit
8256
8257 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8258
8259         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8260         * src/asm.c: fix pipe() for Mingw32
8261
8262 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8263
8264         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8265         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8266         make -V work again; --c1mode reads now from stdin
8267         * doc/sdccman.lyx: added --c1mode
8268         * support/Util/SDCCerr.c: new messages for c1 mode
8269         * support/Util/SDCCerr.h: new messages for c1 mode
8270         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8271
8272 2003-02-15    <johan AT balder>
8273
8274         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8275
8276 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8277
8278         * doc/sdccman.lyx: Environment variables, -o and other minor things
8279
8280 2003-02-14    <johan AT balder>
8281
8282         * src/xa51/main.c: before anyone really tries to use it :)
8283
8284         * Install doc's in share/sdcc/doc
8285         * removed some obsolete files
8286         * Do a proper make distclean and uninstall
8287         M Makefile.common.in
8288         R sdccbuild.sh
8289         M as/Makefile
8290         M device/include/Makefile.in
8291         M device/lib/Makefile.in
8292         M doc/sdccman.lyx
8293         M link/Makefile
8294         M sim/ucsim/doc/Makefile.in
8295         M src/clean.mk
8296         R src/avr/peeph.rul
8297         R src/xa51/peeph.rul
8298         M support/cpp2/Makefile.in
8299         M support/makebin/Makefile
8300
8301
8302 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8305
8306 2003-02-10  Borut Razem <borut.razem AT siol.net>
8307
8308         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8309         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8310         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8311         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8312         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8313         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8314         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8315         src/z80/Makefile.bcc: Borland Makefile cleanup
8316         * as/z80/Makefile.bcc: Added Borland Makefile
8317         * support/cpp2/borland.h: Removed
8318
8319 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8320
8321         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8322         * src/SDCC.lex: new pragma NOIV
8323         * src/SDCCglobl.h: new pragma NOIV
8324         * src/SDCCmem.c: new pragma NOIV
8325
8326 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8329
8330 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8331
8332         * src/SDCCmain.c: signal handling is switched off by --debug
8333         * doc/Makefile: small fix for install; use clean.mk again
8334         * doc/clean.mk: clean *.pdf and *.html too
8335
8336 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8337
8338         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8339         * device/lib/printfl.c: fix a ds390 bug by making it portable
8340         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8341         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8342         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8343         * debugger/mcs51/cmd.c: converted multi-line string literals
8344         * sim/ucsim/globals.cc: converted multi-line string literals
8345         * src/SDCCmain.c: introduced signal handler to remove temp files
8346         * doc/Makefile: small tweaks, implement clean
8347         * doc: removed generated files
8348
8349 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8350
8351         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8352         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8353         Address Record is not correctly generated for DS390."
8354
8355 2003-02-02  Borut Razem <borut.razem AT siol.net>
8356
8357         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8358         * as/mcs51/asm.h: fixed compilation with Borland C
8359         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8360         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8361         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8362         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8363         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8364         src/z80/Makefile.bcc: delete $(LIB) only if exist
8365         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8366
8367 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8368
8369         * device/include/malloc.h: introduced NULL
8370         * device/include/string.h: introduced NULL
8371         * device/include/stdlib.h: introduced NULL
8372         * device/lib/_memcpy.c: removed NULL
8373         * device/lib/_strcat.c: removed NULL
8374         * device/lib/_strchr.c: removed NULL
8375         * device/lib/_strcmp.c: removed NULL
8376         * device/lib/_strcpy.c: removed NULL
8377         * device/lib/_strcspn.c: removed NULL
8378         * device/lib/_strlen.c: removed NULL
8379         * device/lib/_strncat.c: removed NULL
8380         * device/lib/_strncmp.c: removed NULL
8381         * device/lib/_strncpy.c: removed NULL
8382         * device/lib/_strpbrk.c: removed NULL
8383         * device/lib/_strrchr.c: removed NULL
8384         * device/lib/_strspn.c: removed NULL
8385         * device/lib/_strstr.c: removed NULL
8386         * device/lib/_strtok.c: removed NULL
8387         * device/lib/malloc.c: removed NULL, include own header
8388
8389 2003-02-02    <johan AT balder>
8390
8391         * 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
8392         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8393         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8394         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8395         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8396         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8397
8398 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8399
8400         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8401         area 'DATA'"
8402
8403 2003-02-01    <johan AT balder>
8404
8405         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8406
8407 2003-01-31    <johan AT CP255758-A>
8408
8409         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8410
8411 2003-01-30    <johan AT balder>
8412
8413         * src/SDCCBBlock.c: automatic bug detection
8414         * src/SDCCicode.c: automatic bug detection
8415
8416 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8417
8418         * src/SDCCglobl.h:   now --xram-size 0 works
8419         * src/SDCCmain.c:    now --xram-size 0 works
8420
8421 2003-01-29    <johan AT balder>
8422
8423         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8424
8425 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8426
8427         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8428         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8429         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8430         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8431         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8432         * src/SDCCmain.c:    Added options --xram-size and --code-size
8433
8434 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8437         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8438
8439 2003-01-27    <johan AT balder>
8440
8441         * src/SDCC.y: fixed bug #613764
8442
8443 2003-01-26    <johan AT balder>
8444
8445         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8446         * src/SDCCsymt.h: fixed bug #673374
8447         * src/SDCCglue.c: fixed bug #661910
8448         * src/SDCCast.c: fixed bug #458099 and 673374
8449
8450 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8451
8452         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8453         * as/mcs51/strcmpi.h: added
8454         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8455         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8456         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8457         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8458         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8459         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8460         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8461         * as/mcs51/Makefile.aslink: new module strcmpi
8462         * as/mcs51/Makefile.asx8051: new module strcmpi
8463         * as/mcs51/Makefil.bcc: new module strcmpi
8464         * as/mcs51/Makefile.in: new module strcmpi
8465         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8466
8467 2003-01-26    <johan AT balder>
8468
8469         * src/SDCCglue.c: reverted back to 1.124
8470         * src/SDCCast.c: reverted back to 1.156
8471         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8472
8473 2003-01-25    <johan AT balder>
8474
8475         * src/SDCCglue.c: A better fix for bug #661910
8476         * src/SDCCast.c: A better fix for bug #661910
8477         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8478
8479 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8480
8481         * src/Makefile.in: remove spawn.o
8482         * src/SDCCmain.c: remove spawn.h
8483         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8484         * src/spawn.c: removed
8485         * src/spawn.h: removed
8486         * support/regression/ports/ds390/spec.mk: link with -r
8487
8488 2003-01-24    <johan AT CP255758-A>
8489
8490         * src/ds390/gen.c (aopOp): fixed bug #667458
8491         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8492         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8493         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8494
8495 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8496
8497         * src/mcs51/peeph.def: better assembler identation by Frieder
8498         * src/mcs51/gen.c: better assembler identation by Frieder
8499
8500 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8501
8502         * as/z80/string.h: removed for gcc 3.2
8503         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8504         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8505
8506 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8507
8508         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8509         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8510         * support/regression/Makefile: separate temp files for ports
8511         * support/regression/generate-cases.py: separate temp files for ports
8512         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8513         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8514
8515 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         * moved tinitalk to device/examples/ds390
8518
8519 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8520
8521         * as/mcs51/lkmem.c: rflag is for DS390
8522         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8523         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8524                          (linkEdit): move mem- and map-files the same way as ihx-files
8525         * src/z80/main.c (_setDefaultOptions): removed --generic
8526         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8527         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8528         * src/pic/glue.c (picglue): --c1mode works again
8529         * src/pic16/glue.c (pic16glue): --c1mode works again
8530         * src/asm.c (printCLine): fix #660034
8531
8532 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8535         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8536         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8537         * as/mcs51/lkmem (summary): better fix for sp problem
8538         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8539         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8540         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8541                                               remove --stack-after-data
8542
8543 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8544
8545         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8546         * src/SDCCutil.c (join): ugly bug: missing '\0'
8547         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8548
8549 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8550
8551         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8552         * src/port.h: typo
8553         * src/pic/main.c (_asmCmd): gpasm supports -o
8554         * src/z80/main.c: more general macros
8555         * device/lib/Makefile.in: remove intermediate files
8556
8557 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8558
8559         * .version: Bumped version number to 2.3.3
8560         * src/SDCCBBlock.c: new option -o
8561         * src/SDCCglobl.h: new option -o
8562         * src/SDCCglue.c: new option -o
8563         * src/SDCCmain.c: new option -o
8564         * src/asm.c: new option -o
8565         * src/ds390/main.c: new option -o
8566         * src/pic/glue.c: new option -o
8567         * src/pic/pcode.c: new option -o
8568         * src/pic/ralloc.c: new option -o
8569         * src/pic16/glue.c: new option -o
8570         * src/pic16/pcode.c: new option -o
8571         * src/pic16/ralloc.c: new option -o
8572         * src/z80/main.c: new option -o
8573         * device/lib/Makefile.in: use -o
8574         * support/regression/ports/ds390/spec.mk: use -o
8575         * support/regression/ports/gbz80/spec.mk: use -o
8576         * support/regression/ports/mcs51/spec.mk: use -o
8577         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8578         * support/regression/ports/z80/spec.mk: use -o
8579         * support/regression/ports/ucz80/spec.mk: use -o
8580         * support/regression/ports/xa51/spec.mk: use -o
8581         * support/regression/fwk/lib/timeout.c: fix usage string
8582
8583 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8584         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8585
8586 2003-01-07    <johan AT balder>
8587
8588         * src/SDCCast.c (decorateType): fixed bug #600035
8589
8590 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8591         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8592         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8593         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8594         * src/pic/pcode.c: outcommented unused variable to remove warnings
8595         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8596
8597 2003-01-06    <karl AT turbobit.com>
8598         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8599    regression tests.
8600
8601 2003-01-06    <johan AT balder>
8602
8603         * src/SDCCicode.c: fixed array add
8604
8605 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8606         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8607         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8608
8609 2003-01-04    <johan AT balder>
8610
8611         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8612
8613 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8614         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8615
8616 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8617         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8618         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8619
8620 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8621         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8622
8623 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8624         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8625
8626 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8627         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8628
8629 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8630
8631     * in \sdcc\as\mcs51\ changed these files in order to create an
8632     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8633     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8634     following files to include the previous two files: aslink.dsp,
8635     Makefile.aslink, Makefile.bcc, and Makefile.in.
8636
8637     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8638     .adb instead of .cdb
8639
8640 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8641
8642         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8643         value from option --iram-size.
8644
8645 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8646
8647         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8648         dram[] array.
8649
8650 2002-09-18    <wiml AT hhhh.org>
8651
8652         * SDCClrange.h: exposed setFromRange() and setToRange()
8653         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8654           packRegsForAccUse() (bug 542397)
8655         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8656           multiple times and emitting the fetch operations more than once
8657           added aopGetUsesAcc() function to allow binary operators to
8658           fetch their operands in the correct order; made genMinus() emit
8659           compact code for X = LITERAL - Y
8660
8661 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8662         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8663         sprintf() in line 1267.
8664
8665 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8666         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8667         like ports.
8668
8669 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8670         Changes to aslink (All the changes are marked with 'JCF'):
8671
8672         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8673         summary().
8674
8675         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8676         area BSEG.  Also moves, if possible, the DATA area down into the internal
8677         ram so more space is available.
8678
8679         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8680         sflag.
8681
8682         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8683         not bytes.  Function summary() which creates a memory usage summary
8684         file with extension .mem.  Reports of overlaping stack and small stack
8685         size.  If the space for the stack is less than 16 bytes aslink trows a
8686         warning.
8687
8688         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8689         the 8051.  Option 'y' for memory summary output file.
8690
8691         Changes to sdcc (All the changes are marked with 'JCF'):
8692
8693         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8694
8695         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8696         overlaying area for it (uses RegBankUsed[4]).
8697
8698         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8699         bank zero as used by default.  By default aslink locates the stack
8700         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8701         the creation of the .mem file.  Delegates the allocation of data area
8702         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8703         the begining of the stack area to aslink.
8704
8705         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8706         glue() in SDCCglue.c creates an area for it.
8707
8708 2002-09-03  Borut Razem <borut.razem AT siol.net>
8709         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8710         sdcc/src/pic/glue.c:
8711         introduced atexit() handler for teporay files removal in case of
8712         errors, assertions, ...
8713
8714 2002-08-29  Borut Razem <borut.razem AT siol.net>
8715         * sdcc/support/cpp2/auto-host_vc_in.h:
8716         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8717         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8718         Maybe there is a similar problem with BORLANDC? It should be checked!
8719
8720         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8721         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8722         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8723         was not executed, and the compiler (cl) launched a warning:
8724         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8725
8726 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8727         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8728
8729 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8730         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8731
8732         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8733           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8734           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8735           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8736           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8737           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8738           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8739         - added Release configuration in VS projects
8740         - review of compiler an linker options
8741         - VC .exe files are generated in bin_vc directory, not to interfere
8742           with binaries generated from other projects (cygwin, mingw, bcc ...)
8743
8744         * sdcc/src/yacc.dsp: added
8745
8746         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8747         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8748         and insert the version number definitions from .version
8749
8750         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8751
8752         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8753         added - genarate auto-host.h using auto-host_vc_in.h as template
8754
8755         * sdcc/sdcc_vc.h,
8756         removed from CVS, generated automatically
8757
8758 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8759         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8760
8761 2002-08-11  Borut Razem <borut.razem AT siol.net>
8762         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8763
8764 2002-08-10  Borut Razem <borut.razem AT siol.net>
8765         * src/SDCCmain.c (main):
8766         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8767         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8768         The consequence was that some temporary files were not removed.
8769
8770         * src/SDCCglue.c:
8771         unification of code in functions tempfilename() and tempfile():
8772         function tempnam() is defined in Visual Studio 6.0 and .NET
8773
8774         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8775
8776         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8777           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8778         - removed compiler command line option /WX: Treats all warnings as errors
8779         - update a list of source files, included into the project
8780
8781         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8782           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8783         changed project type to Generic Project so that can be correcly converted to VS.NET project
8784
8785         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8786
8787         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8788
8789         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8790
8791         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8792         added return 0 statements after assert() to make compiler happy
8793
8794         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8795         added newline in the def file to keep MSC compiler satisfied
8796
8797         * sdcc/src/z80/gen.c:
8798         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8799           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8800         - solved MSC error in function aopDump()
8801
8802         * sdcc_vc.h: define PREFIX as "\\sdcc"
8803
8804 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8805         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8806
8807 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8808         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8809         - Rewrote the register banking algorithm.
8810         - Added pCode live-range analysis to registers (for now, only non-used and
8811         singly-used registers optimized away)
8812
8813         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8814
8815         * 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.
8816
8817 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8818         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8819
8820 2002-04-22  Michael Hope  <michaelh AT vroom>
8821
8822         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8823
8824         * configure.in (DD_COPT): Added include support required for gbdk.
8825
8826         * .version: Bumped version number just to increase it.
8827
8828         * src/SDCCmain.c: Added -nostdinc to the default options.
8829
8830 2002-04-15  Michael Hope  <michaelh AT vroom>
8831
8832         * device/lib/z80/printf.c (sprintf): Added.
8833
8834         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8835
8836         * src/z80/peeph.def: Added transpose redundent load rule.
8837
8838         * src/z80/main.c: Added force callee saves for jaune.
8839
8840         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8841
8842         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8843
8844 2002-03-28  Johan Knol  <johan AT balder>
8845
8846         * src/SDCCval.c: fixed bug #532436
8847
8848 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8849         * /src/port.h:
8850         Added "char *Processor" field to the port structure.
8851
8852         * /src/SDCCmain.c:
8853         Added -p option. Allows port dependent processor to be specified.
8854
8855         * all ports:
8856         Initialized the new field char *Processor field to NULL in all ports
8857
8858         * /src/pic/*:
8859         Compiler generated registers for interrupt context saving
8860         were not getting allocated.
8861
8862 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8863
8864         * /src/SDCCast.c:
8865         Fixed left shift. Will promote the left side of a left shift
8866         if a) left shifting more than size of operand or b) when assigned
8867         to something size > size of left side
8868
8869 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8870         * src/pic/*
8871         tons of changes. Register allocation has been
8872         rewritten. Added customization for the various PICs. Flow
8873         analysis is restructured. ...
8874
8875         * src/pic/device.h:
8876         Added
8877
8878         * src/pic/device.c:
8879         Added. device.c is a PIC port hack to accomodate variations
8880         in PIC devices.
8881
8882 2002-03-13  Michael Hope  <michaelh AT vroom>
8883
8884         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8885
8886 2002-03-04  johanknol  <johanknol AT manik>
8887
8888         * /src/SDCCval.c: fixed
8889
8890         const unsigned char arr[][2] = { { 0, 1 } };
8891         t18.c:1: error: Initializer element is not constant
8892
8893 2002-03-04  bela  <bela AT manik>
8894
8895         * /device/include/mcs51reg.h:
8896         ds89c420 register definition update
8897
8898 2002-03-03    <johan AT FRIJA>
8899
8900         * support/Util/SDCCerr.c: did something, but don't no why anymore
8901
8902         * support/regression/tests/bug-524691.c: made it a little less shy
8903
8904         * src/SDCCast.c (decorateType): fixed bug #524697
8905
8906         * src/SDCCast.c: made some lineno improvements
8907
8908         * src/SDCCval.c (getNelements): changed warning to error
8909
8910         * src/SDCCglue.c (printIvalArray): changed warning to error
8911
8912         * src/SDCCicode.c: fixed a warning for mingw
8913
8914         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8915
8916         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8917
8918 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8919
8920         * src/ds390/peeph.def:
8921         Added some more peephole rules
8922
8923         * src/ds390/gen.c: Various fixes & enhancements
8924
8925         * src/SDCClrange.c, src/SDCClrange.h:
8926         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8927
8928         * src/ds390/ralloc.c:
8929         various fixes & enhancements (ds390) specific
8930
8931         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8932         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8933         from rallocs.
8934
8935         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8936
8937 2002-03-02    <johan AT FRIJA>
8938
8939         * src/SDCCast.c (decorateType): fixed bug #524708
8940
8941         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8942
8943         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8944
8945 2002-03-01  Michael Hope  <michaelh AT vroom>
8946
8947         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8948
8949         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8950
8951 2002-03-01    <johan AT FRIJA>
8952
8953         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8954
8955         * src/SDCCast.c (decorateType): fixed bug #524209
8956
8957         * src/SDCCval.c (valNot): fixed bug #524195
8958
8959 2002-02-26    <johan AT balder>
8960
8961         * src/xa51/gen.c: fixed a warning
8962
8963         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8964
8965         * src/SDCCast.c (decorateType): fixed bug #522534
8966
8967 2002-02-23    <johan AT balder>
8968
8969         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8970
8971 2002-02-22    <johan AT balder>
8972
8973         * src/SDCCast.c: fixed bug #514865
8974
8975         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8976
8977 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8978
8979         * sdcc/src/SDCCloop.c:
8980         Previous fix was not good. basic blocks that have "break" or "return" are
8981         not really partof a loop , but live ranges used in these blocks should
8982         be live thru the entire loop, so set partOfLoop but don't add them to
8983         loop region
8984
8985 2002-02-21    <johan AT FRIJA>
8986
8987         * src/SDCCcse.c: fixed bug #514308
8988
8989 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8990
8991         * src/SDCCloop.c:
8992         Fixed BUG #519583. If a conditional block ended in a return/break
8993         statement inside a loop, it was not being considered part of the loop.
8994
8995         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8996
8997 2002-02-10  Karl Bongers <karl AT turbobit.com>
8998
8999         * debugger/*:
9000         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9001         with lots of comments and notes.
9002
9003         * device/examples/test2.c:
9004         Fix bug, "red" variable not being initialized(compiler complained).
9005
9006         * device/examples/Makefile, examples/test3.c:
9007         Add Makefile in device/examples folder, compiles test3.c
9008         for use as a multiple module SDCDB test case.
9009
9010         * sim/ucsim/cmd.src/cmdset.cc:
9011         Took out debug printfs in ucsim "next" command.
9012
9013         * sim/ucsim/xa.src:
9014         Karl and Johan start ucsim XA support.  Most dissassembly working,
9015         about 75% emulation done(plenty of work remaining).
9016
9017         * sim/ucsim/z80.src:
9018         Add Z80 support to ucsim, add test-ucz80 regression test,
9019         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9020         Notice z80 compiler fails on examples/test3.c/crc code.
9021
9022 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9023
9024         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9025         Added support for --parms-in-bank1
9026
9027         * src/ds390/peeph.def:
9028         added a few more peephole optimzations
9029
9030         * src/ds390/main.c:
9031         1) added __builtin_inp & __builtin_outp used to read in data of given length
9032            from a memory mapped port
9033         2) added __builtin_memcmp
9034         3) added __builtin_swapw swap bytes of a short
9035
9036         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9037         1) handle multiple send & receives from register bank1
9038         2) ralloc can now allocate DPTR1 to some liveRanges
9039
9040         * src/SDCCsymt.c, src/SDCCsymt.h:
9041         changes to handle multiple sends & receives
9042
9043         * src/SDCCptropt.h:
9044         added some pointer arithmetic optimization
9045
9046         * src/SDCCptropt.c:
9047         added some pointer arithmetic optimizations but not stable yet so not
9048         called from anywhere (will get this working shortly)
9049
9050         * src/SDCCopt.c: fixed for multiple sends & receives
9051
9052         * src/SDCCmain.c:
9053         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9054         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9055            set preprocessor defines (depending on options)
9056
9057         * src/SDCCicode.c, src/SDCCicode.h:
9058         changes made to handle multiple sends & receives
9059
9060         * src/SDCCglobl.h:
9061         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9062
9063         * src/SDCCcse.c, src/SDCCcse.h:
9064         added function findbackward def (to be used in upcoming optimization)
9065
9066         * src/SDCCcflow.c, src/SDCCcflow.h:
9067         added function returnAtEnd - to determine if a basic block terminates with
9068         a RETURN iCode
9069
9070         * src/SDCCast.c, src/SDCCast.h:
9071         added option parms-in-bank1
9072
9073         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9074         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9075         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9076         adjusted for --parms-in-bank1 option
9077
9078         * device/include/string.h:
9079         donot redefine "reentrant" keyword
9080
9081         * device/include/ds80c390.h: Added some more SFRs
9082
9083 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9084
9085         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9086
9087 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9088
9089         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9090
9091 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9092
9093         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9094
9095 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9096
9097         * Added --xram-movc option
9098
9099 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9100
9101         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9102
9103 2002-01-11  Johan Knol
9104
9105         * Added math lib of Jesus Calvino-Fraga
9106
9107 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9108
9109         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9110         * support/regression/Makefile: new target test-mcs51-stack-auto
9111         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9112
9113 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9114
9115         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9116
9117 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9118
9119         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9120
9121 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9122
9123         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9124
9125         * src/SDCCglue.h: add definition for printIvalChar()
9126
9127 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9128
9129         * src/SDCCast.c: fix #498138 by Johan
9130
9131         * src/SDCCglue.c: fix #498138 by Johan
9132
9133 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9134
9135         * support/regression/Makefile: fix clean
9136
9137         * support/regression/ports/ds390/support.c: fix transmission of last character
9138
9139 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9140
9141         * /sdcc/src/ds390/gen.c:
9142         a) improved computing address of stack variable
9143         b) took out some #if 0 code
9144         c) improved parmBytes adjustment
9145         d) improved genPlusIncr & genMinusIncr
9146         e) genCmp could generate bad code (when left assigned to DPTR)
9147         f) Fixed bug in hasInc
9148
9149         * /sdcc/src/ds390/ralloc.c:
9150         a) packRegsForSupport could mess up live information (Fixed)
9151         b) packRegsDPTRuse could be incorrect for left & right shift
9152
9153         * /sdcc/src/mcs51/ralloc.c:
9154         packRegsForSupport could mess up the live information (Fixed)
9155
9156         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9157
9158         * /sdcc/src/SDCCast.c:
9159         can reverse a loop even if function call is present as long
9160         as the loop control variable is local & is not passed as parameter
9161
9162 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9163
9164         * /sdcc/ChangeLog: *** empty log message ***
9165
9166         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9167         More builtin function additions for TININative
9168
9169         * /sdcc/src/ds390/ralloc.c:
9170         Had broken the regression testsuite
9171
9172         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9173
9174         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9175         Added funcattr hasStackParms will be set for reentrant functions when there
9176         are paramteres on the stack, this helps in minimizing frame pointer generation
9177         typeFromStr can handle function pointers now
9178
9179         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9180         *** empty log message ***
9181
9182 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9183
9184         * /src/ds390/gen.c, /src/ds390/main.c:
9185         More builtin function additions for TININative
9186
9187         * /src/ds390/ralloc.c:
9188         Had broken the regression testsuite
9189
9190         * /src/SDCCast.c: Fixed a bug in dumptree
9191
9192         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9193         Added funcattr hasStackParms will be set for reentrant functions when there
9194         are paramteres on the stack, this helps in minimizing frame pointer generation
9195         typeFromStr can handle function pointers now
9196
9197         * /doc/builtins.txt, /doc/TININative.txt:
9198         *** empty log message ***
9199
9200
9201 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9202
9203         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9204         ALPHA version for -mTININative
9205
9206         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9207         updated to reflect changes in the port structure
9208
9209         * /src/port.h:
9210         added function do_assemble (similar to do_link) if non-null this function
9211         will be called to do assembly (-mTININative) requires a multi command
9212         assembly
9213         added function genAssemblerEnd will be called to generate assembler Epilogue
9214
9215         * /src/SDCCsymt.c:
9216         added _JavaNative to debug info printing
9217
9218         * /src/SDCCmain.c: added option --tini-libid
9219         added port->do_assemble function (-mTININative) has a multi command assemble
9220
9221         * /src/SDCCglue.c: Disabled "constExpr" check
9222         added port->genAssemblerEnd function
9223
9224         * /src/SDCCglobl.h: Added option --tini-libid value
9225
9226         * /src/SDCCast.h:
9227         tookout optimizeCompare from the header (has no external references)
9228
9229         * /src/SDCCast.c: made one more function "static"
9230
9231 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9232
9233         * src/z80/mappings.i: Added z80asm support.
9234
9235         * src/z80/main.c: Added z80asm support on --asm=z80asm
9236
9237         * src/z80/gen.c: Fixed asm portability issues.
9238
9239         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9240
9241         * src/SDCCglue.c (printExterns): Added global/extern split.
9242
9243 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9244
9245         * support/regression/Makefile: added test for mcs51 model large
9246
9247         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9248
9249         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9250
9251 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9252
9253         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9254
9255 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9256
9257         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9258
9259         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9260
9261 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9262
9263         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9264
9265         * support/regression/tests/simplefloat.c: Port to mcs51.
9266
9267 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9268         * support/regression/tests/bug-485362.c: Added.
9269
9270         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9271
9272         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9273
9274         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9275
9276         * src/z80/gen.c (aopDump): Added a dump function.
9277
9278 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9279         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9280
9281         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9282
9283         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9284
9285         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9286
9287         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9288
9289         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9290
9291         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9292
9293         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9294
9295         * support/regression/ports/ds390/support.c: Use tinibios.
9296
9297         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9298
9299 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9300
9301         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9302         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9303
9304         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9305
9306         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9307
9308 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9309
9310         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9311
9312         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9313         (packRegsForIYUse): Created and optimised.
9314
9315 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9316
9317         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9318 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9319
9320         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9321
9322         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9323
9324         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9325
9326 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9327
9328         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9329
9330         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9331
9332 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9333
9334         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9335
9336         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9337
9338         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9339
9340 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9341
9342         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9343         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9344         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9345
9346         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9347
9348         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9349         (genNotFloat): Added.
9350         (genUminusFloat): Added.
9351
9352         * device/lib/z80/Makefile: Added floating pt stubs.
9353
9354         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9355
9356         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9357
9358         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9359
9360 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9361
9362         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9363
9364         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9365
9366         * sdcc/support/regression/Makefile: Add port ds390.
9367
9368         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9369
9370         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9371
9372         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9373
9374         * sdcc/support/regression/ports/ds390/support.c: Added.
9375
9376         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9377
9378         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9379
9380         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9381
9382 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9383
9384         * device/include/malloc.h: Added z80 and gbz80 support.
9385
9386         * device/lib/gbz80/heap.s: Added.
9387
9388         * device/lib/z80/heap.s: Added.
9389
9390         * device/lib/malloc.c: Added z80 and gbz80 support.
9391
9392         * support/regression/tests/malloc.c (testMalloc): Added.
9393
9394         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9395
9396         * support/regression/tests/bug-478094.c: Added.
9397
9398         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9399
9400 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9401
9402         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9403
9404         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9405
9406         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9407
9408         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9409
9410         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9411
9412 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9413
9414         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9415
9416 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9417
9418         * support/regression/tests/bug-477927.c: Added.
9419
9420         * src/z80/peeph.def: Added minor rules.
9421
9422         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9423
9424         * src/z80/peeph.def: Added jump optimisation modification.
9425
9426 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9427
9428         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9429
9430 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9431
9432         * support/regression/tests/funptrs.c: Added.
9433
9434 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9435
9436         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9437
9438 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9439
9440         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9441
9442         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9443
9444         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9445         (movLeft2ResultLong): Created.
9446
9447         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9448         (joinPushes): Added.  Joins two char pushes into a word push.
9449
9450 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9451
9452         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9453
9454         * support/makebin/Makefile (install): Added creation of dest dir.
9455
9456 2001-10-24 Karl Bongers <karl AT turbobit.com>
9457
9458         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9459
9460 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9461
9462         * src/z80/ralloc.c: Turned off faulty pack for one use.
9463
9464         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9465
9466         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9467
9468 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9469
9470         * support/regression/Makefile: Improved clean
9471
9472         * support/regression/ports/gbz80/spec.mk: Added clean
9473
9474         * support/regression/ports/host/spec.mk: Added clean
9475
9476         * support/regression/ports/z80/spec.mk: Added clean
9477
9478         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9479
9480         * support/regression/ports/mcs51/timeout.c: little improvements
9481
9482 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9483
9484         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9485
9486         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9487
9488         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9489
9490 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9491
9492         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9493
9494         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9495
9496 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9497         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9498
9499         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9500
9501         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9502
9503         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9504
9505         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9506
9507         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9508
9509         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9510
9511         * support/regression/tests/longor.c: Added.
9512
9513 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9514
9515         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9516
9517         * as/mcs51/aslink.h: define PATH_MAX
9518
9519         * as/mcs51/asm.h: define PATH_MAX
9520
9521         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9522
9523         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9524
9525         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9526
9527         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9528
9529         * src/SDCCglobl.h: define PATH_MAX
9530
9531         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9532
9533         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9534
9535 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9536
9537         * src/z80/gen.c (gencjneshort): Fixed
9538
9539         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9540
9541 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9542
9543         * support/regression/tests/bug-469671.c: Added.
9544
9545         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9546
9547 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9548
9549         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9550
9551         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9552
9553 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9554
9555         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9556
9557         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9558
9559         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9560
9561         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9562
9563         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9564
9565         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9566
9567         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9568
9569 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9570
9571         * 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.
9572
9573         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9574
9575         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9576
9577 2001-10-07    <johan AT FRIJA>
9578
9579         * device/lib/gets.c (gets): fixed the return value.
9580
9581 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9582         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9583
9584         * 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.
9585
9586         * 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.
9587
9588         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9589
9590         * src/pic/gen.c: Removed Safe_strdup.
9591
9592         * configure.in: Added option to enable libgc support.
9593
9594         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9595         (bitVectUnion): Optimised.
9596         (bitVectIntersect): Optimised.
9597         (bitVectBitsInCommon): Optimised.
9598         (bitVectCplAnd): Optimised.
9599
9600         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9601
9602 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9603
9604         * src/SDCCmain.c: distinguish between assembler debug and plain options
9605
9606         * src/avr/main.c:   remove standard assembler options
9607
9608         * src/ds390/main.c: remove standard assembler options
9609
9610         * src/mcs51/main.c: remove standard assembler options
9611
9612         * src/port.h: removed "PENDING" comment
9613
9614 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9615
9616         * src/device/lib/_mulint.c  : new, with assember functions
9617
9618         * src/device/lib/_mullong.c : new, with assember functions
9619
9620         * src/device/lib/_divuint.c : with assember functions
9621
9622         * src/device/lib/_divsint.c : with assember functions
9623
9624         * src/device/lib/_divulong.c: with assember functions
9625
9626         * src/device/lib/_divslong.c: with assember functions
9627
9628         * src/device/lib/_moduint.c : with assember functions
9629
9630         * src/device/lib/_modsint.c : with assember functions
9631
9632         * src/device/lib/_modulong.c: with assember functions
9633
9634         * src/device/lib/_modslong.c: with assember functions
9635
9636         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9637
9638         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9639
9640         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9641                                       replaced _mululong.c and _mulslong.c by _mullong.c
9642
9643 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9644
9645         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9646
9647 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9648
9649         * src/SDCCglue.c: test, if win32api is available for MINGW
9650
9651 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9652
9653         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9654         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9655         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9656         * support/regression/ports/host/spec.mk: removed GENERIC
9657         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9658         * support/regression/ports/z80/spec.mk: removed GENERIC
9659
9660 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9661
9662         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9663
9664         * support/regression/tests/bug-467035.c: Created.
9665
9666 2001-10-01    <johan AT FRIJA>
9667
9668         * src/SDCC.y: fixed bug #466586 part 1
9669
9670 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9671
9672         * SDCCicode.c: z80 has no generic pointers
9673         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9674
9675 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9676
9677         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9678
9679 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9680
9681         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9682
9683         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9684
9685 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9686
9687         * configure.in: Fixed up so that ucsim is only configured once.
9688
9689         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9690
9691         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9692         (getPathDifference): As above.
9693
9694         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9695
9696         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9697
9698 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9699         * .version: Updated to 2.3.1
9700
9701         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9702         Added copyright header.
9703
9704         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9705         (assemble): Added support for macro based assembler commands.
9706         (linkEdit): Added support for macro based linker commands.
9707         (preProcess): Changed the pre-processor to use macros.
9708         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9709         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9710
9711         * device/lib/z80/crt0.s: Added module name for debugging.
9712
9713 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9714
9715         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9716
9717         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9718
9719         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9720
9721         * src/Makefile.in: Added SDCCmacro and SDCCutil
9722
9723 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9724
9725         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9726
9727 2001-09-16    <johan AT FRIJA>
9728
9729         * 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.
9730
9731 2001-09-15    <johan AT FRIJA>
9732
9733         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9734         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9735
9736 2001-09-11    <johan AT FRIJA>
9737
9738         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9739
9740 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9741
9742         * support/regression/tests/bug-460444.c: Added test case.
9743
9744         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9745         (genCast): Added justification for all of the asserts.
9746
9747 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9748
9749         * support/regression/support.c: _xdata replaced by xdata
9750
9751         * support/regression/spec.mk: removed _generic
9752
9753 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9754
9755         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9756
9757         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9758         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9759
9760         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9761
9762         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9763
9764         * support/regression/tests/bug-460010.c: Added test case.
9765
9766         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9767
9768 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9769
9770         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9771
9772         * support/regression/testfwk.c: removed workaround for bug #436344
9773
9774         * support/regression/tests/bp.c: use less memory with mcs51
9775
9776         * support/regression/tests/bug-441448.c: use less memory
9777
9778         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9779
9780         * support/regression/collate-results.py: typo
9781
9782 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9783
9784         * support/regression/tests/fetchoverlap.c: Added new test case.
9785
9786         * support/regression/tests/bp.c: Added new test case.
9787
9788         * support/regression/tests/bug-448984.c: Added new test case.
9789
9790         * support/regression/tests/pow2shifts.c: Added new test case.
9791
9792         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9793         (genlshTwo): Fixed right shift for count > 8.
9794
9795         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9796
9797 2001-09-08    <johan AT FRIJA>
9798
9799         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9800
9801 2001-09-07    <johan AT FRIJA>
9802
9803         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9804
9805         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9806
9807 2001-09-06    <johan AT FRIJA>
9808
9809         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9810         * bernhard noted me at this: "() equals to (void)" (1.38)
9811
9812 2001-09-05    <johan AT FRIJA>
9813
9814         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9815
9816 2001-09-04    <johan AT FRIJA>
9817
9818         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9819
9820
9821 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9822
9823         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9824
9825 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9826
9827         * link/z80/aslink.h: Fixed path for PATH_MAX
9828
9829 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9830
9831         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9832
9833         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9834
9835         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9836
9837         * 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.
9838
9839 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9840
9841         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9842         (genCmp): Fixed up genCmp for the GB with longs.
9843
9844         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9845
9846         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9847
9848         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9849
9850         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9851
9852 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9853
9854         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9855
9856 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9857
9858         * 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.
9859
9860         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9861
9862 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9863
9864         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9865
9866         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9867
9868 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9869
9870   * sim/ucsim/configure:    little improvement of Cygwin-detection
9871   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9872   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9873   * support/regression/tests/bug-221100.c: small changes for mcs51
9874   * support/regression/tests/bug-221168.c: small changes for mcs51
9875   * support/regression/tests/bug-227710.c: small changes for mcs51
9876   * support/regression/tests/staticinit.c: small changes for mcs51
9877   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9878   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9879   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9880
9881 $Revision$