* src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
[fw/sdcc] / ChangeLog
1 2005-09-30 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
4         * src/pic16/devices.inc: NEW, provides device descriptions
5         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
6
7 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
8
9         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
10           GETHBIT
11
12 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * doc/sdccman.lyx: updated Highest Order Bit documentation,
15           documented Any Order Bit, Higher Order Byte and Higher Order Word
16         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
17         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
18           (optimizeGetAbit): new, to get any bit, not only the high bit,
19           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
20           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
21           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
22           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
23             RIGHT_OP: also try GETBYTE, GETWORD optimization,
24             GETABIT, GETBYTE, GETWORD: decorate them,
25           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
26           (ast_print): added GETABIT, GETBYTE, GETWORD
27         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
28         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
29           (geniCodeBinary): new generic binary icode,
30           (ast2iCode): added GETABIT, GETBYTE, GETWORD
31         * src/port.h: updated comment for PORT.hasExtBitOp
32         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
33           (genGetByte): new, to get a single byte,
34           (genGetWord): new, to get a word from a long,
35           (gen51Code): added GETABIT, GETBYTE, GETWORD
36         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
37
38 2005-09-23 Raphael Neider <rneider AT web.de>
39
40         * configure.in, configure: have device/lib/pic configured
41         * device/lib/Makefile.in: added model-pic14
42         * device/lib/clean.mk: added pic/ to clean rule
43         * device/lib/pic: added rudimentary pic14 library providing support
44           functions for multiplication/division/generic pointer access
45         * src/SDCCopt.c (convilong): mark support functions as extern
46           for pic14 port as well
47         * src/pic/gen.c (genMult): added assertions,
48           (genpic14Code): emit warning on unhandled iCodes
49         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
50         * src/pic/pcode.c (pCodeOpCopy),
51         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
52           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
53           SFR_REGISTER}), made safe for future extensions
54         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
55           instructions even if preceeded by SKIP instructions (also remove
56           them); removed unused code
57         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
58           prevents leaving parts of the structure uninitialized after copying
59
60 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
61
62         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
63           ago by me
64         * support/regression/tests/addsub.c: added test for the bug
65
66 2005-09-21 Raphael Neider <rneider AT web.de>
67
68         * device/include/pic16/pic18f1220.h,
69           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
70         * device/lib/pic16/Makefile.rules: added missing opening paren
71         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
72           are provided in genutils.c,
73           (genUminusFloat,genUminus,genCmpEq): added asserts on different
74           operand/result sizes,
75           (genCmp): assert on NULL pointers first, then check deref'ed values
76         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
77           result size
78
79 2005-09-18 Raphael Neider <rneider AT web.de>
80
81         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
82           as these are now unused,
83           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
84         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
85           local, avoids uninitialized pointer dereference on r->name
86         * src/pic16/ralloc.c (newReg): fixed indentation
87
88 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
89
90         * src/SDCCval.c (constVal): fixed bug 730366
91         * support/Util/SDCCerr.c,
92         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
93
94 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
97
98 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
99
100         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
101
102 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
105           (hex2dec): made hex_digit unsigned char, removed ascii dependance
106         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
107           (hex2dec): made hex_digit unsigned char, removed ascii dependance
108         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
109         * packihx/packihx.c (hexDigit): made c unsigned char
110         * as/mcs51/lklibr.c (fndsym),
111         * link/z80/lkgb.c (gb),
112         * link/z80/lklibr.c (fndsym),
113         * link/z80/lkrloc.c (relr),
114         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
115         * src/SDCC.lex (checkCurrFile, process_pragma),
116         * src/SDCCglue.c (spacesToUnderscores),
117         * src/SDCCmain.c (setParseWithComma, processFile),
118         * src/asm.c (tvsprintf, printCLine),
119         * src/avr/gen.c (emitcode, aopPut),
120         * src/ds390/gen.c (emitcode),
121         * src/hc08/gen.c (emitcode, emitinline),
122         * src/mcs51/gen.c (emitcode, genInline),
123         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
124           tokenizeLineNode),
125         * src/pic/ralloc.c (debugLog),
126         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
127           tokenizeLineNode),
128         * src/pic16/ralloc.c (debugLog),
129         * src/z80/main.c (_process_pragma):
130            made all ctype.h function calls safe
131         * src/SDCCopt.c: include math.h for fabs
132         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
133           and used them throughout the code to make ctype.h function calls safe
134         * src/ds390/main.c (asmLineNodeFromLineNode),
135         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
136         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
137            unsigned char*
138         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
139           (newpCodeAsmDir): made ctype.h function calls safe
140         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
141           pic16_emitcode):  made lbp unsigned char*
142         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
143           (pic16_newpCodeAsmDir): made ctype.h function calls safe
144         * src/xa51/gen.c (emitcode),
145         * src/z80/gen.c (_emit2): made lbp unsigned char*
146         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
147            char*
148
149 2005-09-05 Raphael Neider <rneider AT web.de>
150
151         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
152           access bank splitpoint
153
154 2005-09-05 Raphael Neider <rneider AT web.de>
155
156         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
157
158 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
159
160         * .version: changed to version 2.5.3
161         * doc/sdccman.lyx: changed version to 2.5.3,
162           documented --codeseg and --constseg and pragma codeseg and constseg,
163           documented bit parameters (reentrant) and bit returning
164         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
165            currFunc->recvSize, but is this ok for all ports?
166           (ast2iCode): result of ~ on unsigned char must be cast to int for
167            bool to work
168         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
169           function pointers in bit space
170         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
171           (processFuncArgs): call port.reg_parm() with reentrancy info
172         * src/port.h,
173         * src/avr/main.c,
174         * src/ds390/main.c,
175         * src/hc08/main.c,
176         * src/pic/main.c,
177         * src/pic16/main.c,
178         * src/xa51/main.c,
179         * src/z80/main.c: port.reg_parm prototype extended with
180           "bool reentrant" parameter
181         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
182           options.stackAuto for allocating bit register parameters
183         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
184           (genSend): set BitBankUsed if it is,
185           (selectRegBank): factored out of genCall for use in genPcall,
186           (genCall): removed redundant dtype assignmen, use selectRegBank,
187           (genPcall): handle returning in Carry properly, save in F0 if needed,
188           (genReceive): handle bit register parameters
189         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
190           (mcs51_assignRegisters): enable bit registers for all reentrant
191            functions and don't set BitBankUsed unconditionally
192         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
193         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
194         * support/regression/tests/funptrs.c: added tests for BOOL and for return
195
196 2005-08-27 Borut Razem <borut.razem AT siol.net>
197
198         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
199         ppc-osx (Darwin) does not support -u option. It seems that it is
200         supported only on Linux - GNU cp
201
202 2005-08-25 Borut Razem <borut.razem AT siol.net>
203
204         * sim/ucsim/gui.src/serio.src/Makefile.in,
205           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
206           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
207           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
208           install and strip, since the strip at /usr/ccs/bin should be used
209           on solaris
210
211 2005-08-24 Borut Razem <borut.razem AT siol.net>
212
213         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
214
215 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
216
217         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
218         ffffffffu
219
220 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
221
222         * as/mcs51/aslink.h: completed lkrloc.c prototypes
223         * as/mcs51/lkmain.c (link_main): fixed warning
224         * device/include/stdbool.h: ds390 has no advanced bit support yet
225         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
226         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
227         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
228           and updated their macros
229         * src/SDCCval.c (constVal): updated comment for renamed b_long
230
231 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
232
233         * as/mcs51/asdata.c: changed ctype['['] to BINOP
234         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
235           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
236           (oprio): set priority for '['
237         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
238            and adb_24_bit
239         * as/mcs51/asm.h: added defines R_BIT and S_BIT
240         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
241         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
242         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
243           added overlayable BIT_BANK area
244         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
245           (summary2): explain 'T' in legenda
246         * as/mcs51/lkrloc.c: replaced old K&R style,
247           (relr): added R_BIT processing,
248           (errmsg): added "Bit-addressable relocation error",
249           (adb_bit): added for converting from byte- to bit-addressable space,
250           (adb_24_bit): added for converting from byte- to bit-addressable space
251         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
252            used in reentrant functions now even as return value
253         * device/lib/_gptrput.c (_gptrput): removed obsolete code
254         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
255           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
256         * src/SDCCglobl.h: added indicator BitBankUsed
257         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
258            the bit registers b0-b7
259         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
260           (geniCodeCast): fixed bug 1263853,
261           (geniCodeLogicAndOr): put result in bool or char,
262           (geniCodeReceive): added parameter func for accessing the return type,
263           (geniCodeFunctionBody): pass func to geniCodeReceive
264         * src/SDCCmain.c: added indicator BitBankUsed
265         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
266         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
267           (checkSClass): don't put automatic bool/bit on stack,
268           (checkFunction): removed check on function cannot return bit
269         * src/SDCCsymt.h: added newBoolLink prototype
270         * src/mcs51/gen.c (rb1regs): added bit registers,
271           (movc): created for assigning to carry,
272           (pushReg, popReg): created for pushing registers,
273           (sameRegs): check both AOP_REG and AOP_CRY types,
274           (aopOp): handle bit registers,
275           (aopPut): optimization no self-assign,
276           (saveRegisters): push reg->base (bits) only once for bit registers,
277            and use pushReg,
278           (unsaveRegisters): pop reg->base only once and use popReg,
279           (assignResultValue): added parameter func and return in carry for bits,
280           (genIpush): optimization no reload in A if not changed,
281           (genSend): bit parameters in reentrant functions are passed in bit
282            registers by first assigning to bits in B, then save registers and
283            copy B to bits,
284           (genCall): handle returning in Carry properly, save it in F0 if needed,
285           (genPcall): updated assignResultValue call, this is not safe yet for bit
286            returning function !!!
287           (genFunction): don't generate equ's for bit registers and use pushReg,
288           (genEndFunction): take care of bit returning functions and use popReg,
289           (genRet): return bit in Carry,
290           (genIfx): optimize bit registers and other directly addressable bits,
291           (genReceive): updated assignResultValue call
292         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
293           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
294            registers when using stack-auto
295         * src/mcs51/ralloc.c (_G): added allBitregs,
296           (regs8051): added the bit registers,
297           (createStackSpil): use macro IS_BIT,
298           (getRegBit): added to allocate a bit register, else spill,
299           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
300           (updateRegUsage): factored out to ease stepping while debugging,
301           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
302            also allocate bit registers,
303           (fillGaps): handle bit registers,
304           (findAllBitregs): added to create bit vector with all bit registers,
305           (mcs51_allBitregs): returns this bit vector,
306           (mcs51_assignRegisters): when using stack-auto use bit registers for
307            passing parameters and creating local variables
308         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
309
310 2005-08-22 Borut Razem <borut.razem AT siol.net>
311
312         * device/lib/Makefile.in: replaced find option -or with -o
313           to make it run on solaris
314
315 2005-08-22 Raphael Neider <rneider AT web.de>
316
317         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
318           fixes #1265442 (crash on Solaris)
319
320 2005-08-20 Borut Razem <borut.razem AT siol.net>
321
322         * configure, configure.in: added tests for libsocket and libnsl libraries,
323           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
324           from support/regression/Makefile.in
325         * support/regression/Makefile.in: added
326         * device/lib/pic16/Makefile.common.in: force make to use bash shell
327         * sim/ucsim/libtool: regenerated on sparc-solaris
328         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
329           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
330           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
331           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
332           sparc-solaris, which doesn't use GNU ld linker
333         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
334         * as/Makefile: find on sparc-solaris does not support -maxdepth option
335
336 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
337
338         * src/mcs51/peeph.def: updated comments
339
340 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
341
342         * device/lib/_gptrget.c,
343         * device/lib/_gptrput.c: slightly shorter
344         * doc/sdccman.lyx: incremented version
345         * src/mcs51/peeph.def: moved peephole comments to the line of first
346           change to better keep line correlation, reanimated 186.e
347         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
348
349 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
350
351         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
352           David Saxton with quotes around file name.
353
354 2005-08-15 Borut Razem <borut.razem AT siol.net>
355
356         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
357           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
358           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
359           make tests run on x86_64 platform
360
361 2005-08-13 Raphael Neider <rneider AT web.de>
362
363         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
364           as it might be executed DURING a build (parallel make is wonderful)
365
366 2005-08-13 Raphael Neider <rneider AT web.de>
367
368         * device/lib/Makefile.in (port-specific-objects-pic16):
369           revert to cp $(PORT)/bin/*.* $(PORTDIR)
370         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
371           dependency
372         * device/lib/pic16/Makefile.rules: build subdirs before creating
373           the library, removed builddir rule, create $(builddir) early in
374           recurse rule, use empty recurse rule for leaf directories
375         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
376           mkdir errors (race condition), removed duplicate suffix "hex"
377           from clean rules
378         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
379         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
380           prevents mkdir -p from aborting on Alpha
381
382 2005-08-12 Raphael Neider <rneider AT web.de>
383
384         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
385           db-statements in order to allow for arrays of pointers in code
386           sections to be placed without interspersed 0-padding, fixes
387           bug #1256215
388         * (emitStatistics): fixed division by zero for pic18f1220
389         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
390           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
391         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
392         * (pic16_pCodeConstString): keep track of already emitted string
393           literals to prevent "duplicate definitions of symbol _str_NR"
394         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
395           debug message
396         * device/lib/Makefile.in: ignore failing PIC16 library builds
397         * device/lib/pic16/Makefile: do not build if gputils are missing
398         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
399
400 2005-08-10 Raphael Neider <rneider AT web.de>
401
402         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
403           my last commit)
404
405 2005-08-10 Raphael Neider <rneider AT web.de>
406
407         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
408           Rokas' patch to add the new fixed point type "__fixed16x16"
409         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
410           functions for __fixed16x16 arithmetics
411         * device/lib/pic16: reimplemented the build system to support
412           a separate build directory, better handling of libio (create
413           the library in a separate subdir for each architecture) and
414           easier configuration (centralized in Makefile.common)
415
416 2005-08-07 Raphael Neider <rneider AT web.de>
417
418         * src/pic16/gen.c (genrshTwo): fixed sign extension
419         * src/pic16/device.c: added pic18f2320, 4220 and 4320
420         * device/include/pic16/pic18f2220.h: changed some bit definitions,
421           added T0CONbits
422         * device/include/pic16/pic18f4220.h: NEW, header for
423           pic18f4220 and pic18f4320
424         * device/include/pic16/pic18fregs.h: added new devices,
425           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
426         * device/include/pic16/signal.h: resolved name clashes
427           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
428           to also allow testing for interrupt enable bits, added
429           comments on how to use the macros
430         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
431         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
432           register definitions for the devices
433         * device/lib/pic16/pics.all: added new devices
434         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
435           allocated memory
436         * device/lib/pic16/libc/stdlib/memfree: do not count
437           the block header as free memory
438         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
439           simplified and added missing end-of-blocklist-marker
440           (reported by Peter Onion, fixes #1252814)
441         * (_mergeHeapBlock): fixed loop condition
442         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
443           len==0, restructured code
444         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
445           up a bit, reduced bitfield accesses, prevent endless loops
446           in case of heap corruption
447         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
448           "unreferenced arguments/must return a value" warnings
449         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
450           replaced BAUDREG with SPBRG
451         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
452           device/lib/pic16/debug/gstack/gstack.c: replaced
453           _naked, _asm, _endasm with __naked, __asm, __endasm
454
455 2005-08-05 Raphael Neider <rneider AT web.de>
456
457         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
458           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
459
460 2005-08-05 Borut Razem <borut.razem AT siol.net>
461
462         * device/lib/Makefile.in: added missing ';'
463         * configure: removed ^M characters
464
465 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
466
467         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
468           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
469           License
470
471 2005-08-04 Borut Razem <borut.razem AT siol.net>
472
473         * configure.in: pic16 libraries build 2nd try - enable running
474           configure in device/lib/pic16
475         * configure: regenerated from configure.in
476         * device/lib/Makefile.in: create $(PORT)/bin directory
477
478 2005-08-03 Raphael Neider <rneider AT web.de>
479
480         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
481           to get/set values via pointers
482         * (genUnpackBits,genPackBits): changed detection of
483           ptr->bitfield vs. sym.bitfield, fixed access via generic
484           pointers, removed dead (wrong) code for multibyte bitfields
485         * (genNearPointerGet, genGenPointerGet): removed useless code,
486           fixed bitfield detection, fixes #1250594
487         * (genNearPointerSet): removed useless code
488         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
489           and introduced macro pic16_emitpcode that conditionally emits
490           the origin of the following pCode (useful for debugging SDCC)
491         * src/pic16/pcode.c: changed (and disabled) some debug outputs
492         * (createDefmap): fixed handling of LFSR for --optimize-df
493
494 2005-08-02 Borut Razem <borut.razem AT siol.net>
495
496         * device/lib/Makefile.in: pic16 libraries build enabled since
497           gputils-0.13.2 are now localy installed at sourceforge's compile farm
498
499 2005-08-02 Raphael Neider <rneider AT web.de>
500
501         * src/pic16/gen.c (genPackBits): removed deprecated warning
502         * (genGenPointerSet): fixed bitfield detection
503
504 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
505
506         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
507
508 2005-07-31 Raphael Neider <rneider AT web.de>
509
510         * device/lib/pic16/libdev/pic18f458.c,
511           device/include/pic16/pic18f458.h: added missing T0CONbits
512
513 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
514
515         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
516
517 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
518
519         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
520
521 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
522
523         * device/include/mcs51/at89c51ed2.h: added.
524
525 2005-07-23 Raphael Neider <rneider AT web.de>
526
527         * src/pic/gen.h: added emitpcode macro for debugging
528         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
529           and replace by macro adding debug information on demand
530         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
531         * (gencjne): tried to fix; replaced with correct (slower) code
532         * (gen{Unp,P}ackBits): fixed single bit access
533         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
534         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
535           previous instruction
536         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
537           register has to be handled with care (forbidding movement
538           of assignments/uses, removing assignments completely, ...)
539         * (pCodeOptime2pCodes): make use of regIsSpecial
540         * added lots of debugging output (commented out)
541         * src/pic/rallloc.c (deassignLRs): prevent operand registers
542           from being reused as result UNLESS it is known to work
543
544 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * support/Util/dbuf.h: include <stddef.h> for size_t
547         * .version: changed to version 2.5.2
548
549 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
550
551         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
552
553 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
554
555         * src/hc08/gen.c (genMinus): fixed bug #1241835,
556           (genModOneByte): removed needless psha/pula
557
558 2005-07-22 Raphael Neider <rneider AT web.de>
559
560         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
561           have PIC14 handled like PIC16, fixes broken pic14 linker calls
562         * src/pic/gen.c (resolveIfx): do not "invent" labels
563         * (genSkipc): changed to positive logic
564         * (genSkipCond): removed as no longer needed
565         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
566           backport from PIC16
567         * (genLeftShift): check operands are in different registers
568         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
569           INCF does not update CARRY...
570         * src/pic/main.c: fixed _linkCmd
571         * src/pic/pcode.c (unlinkpCode): added inactive code
572         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
573           alive (do not assign result and operand overlapping registers)
574
575 2005-07-22 Raphael Neider <rneider AT web.de>
576
577         * src/pic/device.c (dump_sfr): replaced register declaration with
578           call to emitSymbolToFile() to avoid duplicate symbols
579         * (assignRelocatableRegisters): do not declare external symbols
580         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
581           right (take size of type, not etype)
582         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
583         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
584         * (packRegsForAccUse): disabled assignment of WREG as
585           the result reg to prevent occurence of just fixed #1235003,
586           fixes #1242954
587         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
588           symbols (avoids duplicate symbols in .asm file)
589         * (pic14emitRegularMap): use emitSymbolToFile()
590         * src/pic/gen.c (aopOp): fixed spillLocation handling
591         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
592         * (genDataPointerSet): removed unneccessary variables/output
593
594 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
595
596         * as/mcs51/lkarea.c: enlarged codemap for banked memory
597         * device/lib/mcs51/crtbank.asm: added # to 0x0F
598
599 2005-07-21 Raphael Neider <rneider AT web.de>
600
601         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
602           architecture cannot handle them efficiently, fixes bug #1235003
603         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
604           check for empty sets before using them (fixes bug #1232190)
605
606 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
609           (lnksect2): generate warnings for memory overlap
610         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
611           constseg to set the name of these segments so you can instruct the linker
612           to place them in banks
613         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
614         * src/SDCCglobl.h: added MODEL_HUGE to enum,
615           added code_seg and const_seg to options
616         * src/SDCCglue.c (emitMaps): use options.const_seg,
617           (createInterruptVect): put interrupt vectors in segment HOME,
618           (glue): put HOME before static segment and put the main glue in HOME,
619           (glue): use options.code_seg
620         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
621         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
622           these segments so you can instruct the linker to place them in banks
623           (linkEdit): use code_loc for HOME segment which should be the first
624           segment in code memory now
625         * src/SDCCmem.c: fixed more stuff like bug 1238386
626         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
627           (changePointer): don't change function pointers to code pointers for
628           banked functions,
629           (compareType): added exceptional check for banked function pointers
630         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
631         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
632           after static in code memory
633         * src/mcs51/gen.c: added aopLiteralLong prototype,
634           (aopForSym): use getSize for functions,
635           (genCall): generate banked calls over one trampoline __sdcc_banked_call
636           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
637           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
638           the segment,
639           (genPcall): use call for literal function pointers and generate banked
640           calls over the one trampoline so there's only one place for the user to
641           modify according to his/hers hardware,
642           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
643           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
644         * src/mcs51/main.c: added keyword banked,
645           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
646         * support/Util/SDCCerr.c,
647         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
648           needed for passing the bank and address to the trampoline
649         * device/lib/mcs51/crtbank.asm: added for bankswitching
650         * device/lib/mcs51/Makefile: added crtbank
651
652 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
653
654         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
655           for fields at offset 0 of a struct or union as reported
656           on 2005-07-07 in the developer mailing list.
657
658 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
659
660         * src/SDCCmem.c: fixed bug 1238386
661
662 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
663
664         * src/mcs51/peeph.def: added labelrefcounting for peepholes
665           (patch #1144962), added peephole 300, enabled 259.x
666         * doc/sdccman.lyx: removed screenshot and provided link instead
667
668 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
669
670         * doc/sdccman.lyx: added section about debugging with ddd
671         * doc/figures/ddd_example.eps: screenshot of debugging session
672
673 2005-07-04 Raphael Neider <rneider AT web.de>
674
675         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
676           like CODE pointers, fixes #1115683
677         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
678           call, fixes bugs #1232211, #1228110,
679           fixed wrong casts to pCodeFlow from pCodeInstructions
680
681 2005-07-04 Raphael Neider <rneider AT web.de>
682
683         * src/pic/gen.c (popGet): changed assert to allow for
684           bit operands
685         * (popGetAddr): changed signature to provide
686           an additional index, patched all call sites
687         * (genCmpEq): handle literal-like operands correctly
688         * (genAddrOf): added sanity checks on __code/__data pointers
689         * (genAssign): added handling of symbols from __code section
690         * (gencjne): do not generate code for comparisons whose result
691           is neither stored nor used, fixes bug #1171114
692         * (AccLsh, AccRsh): operate on operand instead of WREG
693         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
694           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
695           by known count
696         * rewrote complete shift-by-literal logic, commented unused
697           functions out
698         * (genConstPointerGet): get multiple bytes (if result size > 1),
699           fixed handling of non-immediate addresses
700         * (genPointerGet): handle CODE pointers like CONST pointers
701         * (genpic14Code): insert C-SRC lines as Cource-pCodes
702         * ({aop,op}_isLitLike): NEW, single place to decide whether an
703           operand is to be treated as a literal or not
704         * (mov2w,genPcall,genCmpEq),
705           src/pic/genarith.c: use aop_isLitLike() to decide between
706           literal/register contents
707         * (addSign): added missing offset
708         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
709           only emit comment in debug-mode,
710           use {aop,op}_isLitLike throughout the file
711         * src/pic/glue.c: fix initializers for pointers (work in progress)
712         * src/pic/pcode.c (get_op): honor index on _const symbols
713         * ({reset,dump}pCodeStatistics): NEW, estimate code size
714         * (dumppBlock): added pCode size estimation
715         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
716           check for IS_SYMOP before OP_SYMBOL'ing
717         * fixed indentation, compacted switch-statements
718         * (allocReg): find free register and allocate it instead of
719           allocating new registers all the time
720         * (deassignLRs): prevent POINTER_GET's from being assigned the same
721           registers as its operands (necessary only for multibyte GETs)
722
723 2005-07-01 Raphael Neider <rneider AT web.de>
724
725         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
726           debugging .asm-output macros FENTRY + FEXIT
727         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
728           way... I wonder...
729         * (emitpComment): NEW, printf to pCode
730         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
731           offset handling
732         * (popGetAddr): NEW, variant of popGet to access an immediates
733           high(er) bytes instead of the n'th byte of memory they reference,
734           replaced popGet with popGetAddr where neccessary
735         * (genDataPointerGet): reactivated and fixed implementation
736         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
737           accesses
738         * (genDataPointerSet): fixed multibyte assignments
739         * (genpic14Code): fixed --i-code-in-asm handling
740         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
741         * (genPlus): fixed index-out-of-bounds error
742         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
743         * src/pic/ralloc.c: added debugging output macro FENTRY2
744         * (spillThis): fixed indentation, enbraced for-body for clarity
745         * (rematStr): commented out as now unused
746         * (regTypeNum): commented out special spill case (overwrites
747           arbitrary values)
748         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
749
750 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
751
752         * doc/sdccman.lyx: documented sfr16/sfr32,
753           added example for using storage class with function pointers
754         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
755
756 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
757
758         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
759         * device/lib/_itoa.c,
760         * device/lib/_ltoa.c: optimized codesize
761         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
762           but don't know how to suppress the double warning.
763         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
764         * support/Util/SDCCerr.c,
765         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
766
767 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
768
769         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
770           fixed old K&R prototypes
771         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
772         * device/lib/_gptrget.c,
773         * device/lib/_gptrgetc.c,
774         * device/lib/_gptrput.c: changed versions for new memory indicator values,
775           also new versions for small generic pointers and banked generic pointers
776         * src/port.h: added const_name
777         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
778         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
779         * src/SDCCcse.c (findPrevIc): check all associative operators
780         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
781         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
782         * src/SDCCmem.c: updated comments,
783           set far-space to 0 for pdata, results in optimized code
784         * src/SDCCmem.h: added macro CONST_NAME
785         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
786           moving the info into the highest bits, see also gptrget/gptrput
787         * src/src.dsp: added sdcc.ico to project files
788         * src/avr/gen.c (genCast): fixed bug 0x%d
789         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
790         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
791           relation between ptr_type and DCL_TYPE,
792           (genCast): fixed bug 0x%d
793         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
794           (CODE)" for const_name
795         * src/hc08/gen.c (genCast): fixed bug 0x%d
796         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
797           (hc08_port): added "CONST (CODE)" for const_name
798         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
799           (aopForRemat, adjustArithmeticResult): disconnected direct relation
800           between ptr_type and DCL_TYPE,
801           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
802           operand* and took AOP() inside function so sfr-ness can be checked,
803           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
804           new prototype,
805           (genFunction, genEndFunction): optimized stack setup,
806           (genMinus): optimized for literals with ending zeroes (in bytes),
807           (genCast): fixed bug 0x%d
808         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
809           (mcs51_port): added "CONST (CODE)" for const_name
810         * src/mcs51/peeph.def: made rule 226 more generic
811         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
812         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
813         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
814         * src/z80/main.c (z80_port): added NULL for const_name,
815           (gbz80_port): added NULL for const_name
816         * support/regression/tests/bug663539.c,
817         * support/regression/tests/sfr16.c: new tests
818
819 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
820
821         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
822
823 2005-06-24 Raphael Neider <rneider AT web.de>
824
825         * device/lib/pic16/libdev/pic18f[68][567]20.c:
826           corrected typos...
827         * device/include/pic16/signal.h: added USBIF
828           and SIG_USB
829
830 2005-06-24 Raphael Neider <rneider AT web.de>
831
832         * device/lib/pic16/libdev/pic18f2455.c,
833           device/include/pic16/pic18f2455.h: NEW
834         * device/include/pic16/pic18fregs.h,
835           device/lib/pic16/pics.all,
836           src/pic16/device.c: added 18f2455
837         * device/lib/pic16/libdev/pic18f[68][567]20.c,
838           device/include/pic16/{pic18f[68][567].h,usart.h}:
839           replaced MULTIPLE_USARTS define with more relaible
840           compatibility sfrs (for USART access)
841
842 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
843
844         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
845           and the output asm file line is printed on two lines.
846
847 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
848
849         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
850           BGT, BLE, BHI, and BLS instructions
851         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
852           genCmpEq): removed
853         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
854           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
855           fixes bug #1216342
856         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
857
858 2005-06-15 Raphael Neider <rneider AT web.de>
859
860         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
861         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
862         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
863           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
864           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
865
866 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
867
868         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
869           Marcel Telka in bug #1215704
870
871 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
872
873         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
874           located in shared memory bank.
875
876 2005-05-31 Raphael Neider <rneider AT web.de>
877
878         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
879           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
880           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
881
882 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
883
884         * device/lib/_strncpy.c: fixed the fix
885
886 2005-05-26 Raphael Neider <rneider AT web.de>
887
888         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
889           initializers with \0, bug #1208187
890         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
891           intializers with \0, bug #1208187
892
893 2005-05-26 Raphael Neider <rneider AT web.de>
894
895         * src/pic16/glue.c (pic16_printIvalChar): fixed string
896           initializers with \0, bug #1208187
897         * src/pic16/main.c (_process_pragma): added sanity checks
898           for stack position and size, emit warnings when appropriate
899
900 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
901
902         * device/lib/_strncpy.c: fixed not filling with \0
903
904 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
905
906         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
907           createFunction),
908         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
909           compound_statement),
910         * src/SDCCsymt.h,
911         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
912
913 2005-05-24 Raphael Neider <rneider AT web.de>
914
915         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
916
917 2005-05-24 Raphael Neider <rneider AT web.de>
918
919         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
920           TRISE definitions, closes bug #1162453
921
922 2005-05-22 Raphael Neider <rneider AT web.de>
923
924         * src/pic16/main.c (_process_pragma): check for missing
925           arguments to pragmas code and udata
926         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
927           consistency fixes to match other headers (thanks to Jim Paris)
928         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
929
930 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
931
932         * src/SDCCicode.c (isOperandEqual): fixed missing ;
933
934 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
935
936         * support/regression/tests/bug1198642.c: new test
937         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
938         * src/SDCCcse.c (findPrevIc): added comment, please have a look
939         * support/scripts/resource.h,
940         * support/scripts/resource.rc,
941         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
942         * support/scripts/sdcc.ico: added 32x32 icon
943
944 2005-05-18 Raphael Neider <rneider AT web.de>
945
946         * device/lib/pic16/libdev/pic18f*.c,
947         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
948           keywords to "__sfr" and "__at (X)"
949         * device/include/pic16/pic18fregs.h: added pic18f4520
950         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
951           #1203088 (MPLAB compatibility)
952
953 2005-05-17 Raphael Neider <rneider AT web.de>
954
955         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
956         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
957         * device/lib/pic16/pics.all: added new devices
958         * src/pic16/device.c: added support for pic18f4520
959
960 2005-05-16 Raphael Neider <rneider AT web.de>
961         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
962         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
963         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
964           convenience function for bit access
965
966 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
967
968         * device/lib/printf_large.c: fixed bug 1193299
969         * support/regression/tests/bug1057979.c: added test %3.3s
970
971 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
972
973         * device/include/mcs51/8051.h,
974         * device/include/mcs51/8052.h: made parseable with lint
975         * device/include/mcs51/lint.h: added include file for (sp)lint
976         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
977         * doc/cdbfileformat.lyx,
978         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
979
980 2005-05-14 Raphael Neider <rneider AT web.de>
981
982         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
983         * device/lib/pic16/libc/stdlib/itoa.c (new)
984         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
985         * device/lib/pic16/libio/Makefile: exclude subdir according to
986           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
987         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
988         * src/pic16/gen.c (genFunction): prevent annoying warning
989         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
990           nameclashes on BeOS
991         * support/cpp2/cppmain.c (cpp_output_string): new
992         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
993           fixes bug 1116802
994
995 2005-05-13 Borut Razem <borut.razem AT siol.net>
996
997         * src/SDCCmain.c (linkEdit): fixed bug 1195202
998
999 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1000
1001         * .version: changed to version 2.5.1; back to bleeding edge development
1002
1003 2005-05-11 Borut Razem <borut.razem AT siol.net>
1004
1005         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1006           generate PDF version 1.3 documents
1007
1008 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1009
1010         * .version: changed to version 2.5.0
1011
1012 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1013
1014         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1015
1016 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1017
1018         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1019         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1020         well as many smaller updates.
1021         * .version: changed to version 2.5.0-pre1
1022
1023 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1024
1025         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1026
1027 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1028
1029         * support/regression/tests/bug1185672.c: added
1030         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1031           bug 1185672
1032         * src/mcs51/gen.c (genCall): added comments, made it look safer
1033         * src/mcs51/gen.c (genEndFunction): simplified
1034
1035 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1036
1037         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1038
1039 2005-04-14 Borut Razem <borut.razem AT siol.net>
1040
1041         * fixed bug 1045046 - SIGSEGV with really simple code?:
1042           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1043           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1044
1045 2005-04-14 Borut Razem <borut.razem AT siol.net>
1046
1047         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1048           src/pic16/device.h: temporarily disabled experimental #inline pragma
1049           for 2.5.0 release
1050
1051 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1052
1053         * device/include/z80/stdio.h,
1054         * device/include/z80/string.h: removed these highly incomplete files so
1055           SDCC can use the default ones in device/include/
1056
1057 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1058
1059         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1060         gcc warning.
1061         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1062         fix sdcpp warnings.
1063
1064 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * device/include/malloc.h: removed redundant __reentrant prototypes
1067         * device/lib/_mullong.c: added working xstack variant in asm (C version
1068           doesn't pass regression tests)
1069         * device/lib/bpx.c: used __data and made bpx char for mcs51
1070         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1071           (createFunction): fixed bug with xstackPtr
1072         * src/SDCCcse.c: corrected comments
1073         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1074           (killDeadCode, eBBlockFromiCode): removed unused code
1075         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1076           corrected comments
1077         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1078           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1079           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1080           (genModOneByte): fixed warning in MSVC
1081         * src/mcs51/main.c (): added comments
1082         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1083
1084 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1087
1088 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1089
1090         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1091
1092 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1093
1094         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1095         characters arrays of larger size than the declared one.
1096
1097 2005-04-10 Borut Razem <borut.razem AT siol.net>
1098
1099         * src/pic/gen.c (genInline),
1100           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1101           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1102           (findNextInstruction), (findPrevInstruction),
1103           (findInstructionUsingLabel),
1104           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1105         * src/pic/pcode.c (findLabel): added missing '\n'
1106         * src/src.dsp: added SDCCdwarf2.c to the project
1107
1108 2005-04-09 Borut Razem <borut.razem AT siol.net>
1109
1110         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1111
1112 2005-04-08 Raphael Neider <rneider AT web.de>
1113
1114         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1115           into the chain after a given one) and mergeDefmapSymbols (combine
1116           defmap entries for each symbol per pcode)
1117         * (createDefmap): have defmap entries merged in the end
1118         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1119           a symbol before replacing one access type's symbol, merge symbols in
1120           the end (replacement symbol might already have an entry)
1121         * (assignValnums): keep reference to written WREG intact
1122
1123 2005-04-08 Raphael Neider <rneider AT web.de>
1124
1125         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1126           Alpha)
1127
1128 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1129
1130         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1131         bytes
1132
1133 2005-04-07 Raphael Neider <rneider AT web.de>
1134
1135         * device/include/pic16/usart.h: added compatibility defines for
1136           devices with more than one USART
1137         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1138
1139 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1140
1141         * device/lib/Makefile.in: updated for port specific include
1142
1143 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1144
1145         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1146
1147 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1148
1149         * device/include/8051.h,
1150         * device/include/8052.h,
1151         * device/include/at89S8252.h,
1152         * device/include/at89c55.h,
1153         * device/include/at89x051.h,
1154         * device/include/at89x51.h,
1155         * device/include/at89x52.h,
1156         * device/include/mcs51reg.h,
1157         * device/include/reg51.h,
1158         * device/include/reg764.h,
1159         * device/include/regc515c.h,
1160         * device/include/sab80515.h: (re)moved these 12 files
1161         * device/include/mcs51/8051.h,
1162         * device/include/mcs51/8052.h,
1163         * device/include/mcs51/at89S8252.h,
1164         * device/include/mcs51/at89c55.h,
1165         * device/include/mcs51/at89x051.h,
1166         * device/include/mcs51/at89x51.h,
1167         * device/include/mcs51/at89x52.h,
1168         * device/include/mcs51/mcs51reg.h,
1169         * device/include/mcs51/reg51.h,
1170         * device/include/mcs51/reg764.h,
1171         * device/include/mcs51/regc515c.h,
1172         * device/include/mcs51/sab80515.h: and added them here
1173
1174 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * device/include/stdarg.h: changed SDCC specific keywords to double
1177           underlined form.
1178         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1179           mcs51 and ds390.
1180         * device/include/hc08/mc68hc908gp32.h,
1181         * device/include/hc08/mc68hc908jb8.h,
1182         * device/include/hc08/mc68hc908jkjl.h,
1183         * device/include/hc08/mc68hc908qy.h: fixed comments
1184         * device/include/mcs51/README: updated
1185         * device/include/mcs51/c8051f120.h: added PINRSF
1186         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1187         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1188           amidst code. Also inline is not supported.
1189
1190 2005-04-06 Raphael Neider <rneider AT web.de>
1191
1192         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1193         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1194           callers stack/frame pointers
1195
1196 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1197
1198         * device/include/pic16/usart.h: added, missing in previous commit,
1199         * device/include/pic16/adc.h: fixed typo,
1200         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1201         commit,
1202         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1203         <p18fxxx.inc>
1204         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1205         uninitialized because a bug appears with gplink
1206         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1207         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1208         complains for unrecognised option
1209
1210 2005-04-05 Raphael Neider <rneider AT web.de>
1211
1212         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1213           structs as well (using memcpy)
1214         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1215           on ISRs (GOTO has no label)
1216         * src/pic16/device.h: added OF_OPTIMIZE_DF
1217         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1218           new data flow analysis/optimization
1219         * src/pic16/pcode.c: added (prototypes for and implementation of)
1220           dataflow analysis functions, fixed pCodeInstructions' inCond and
1221           outCond values, made RCALL a branch instruction
1222         * (pic16_unlinkpCode): keep C line if possible
1223         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1224           C line moved if possible
1225         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1226         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1227           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1228         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1229           new flow)
1230         * (pic16_getJumptabpCode): NEW, needed in...
1231         * (LinkFlow): fixed handling of jumptables, calls and conditional
1232           branches
1233         * (pic16_InsertCommentAfter): NEW
1234         * (pic16_pCodeReplace): made verbose and flow preserving
1235         * (AnalyzeFlow): added call to data flow analysis
1236         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1237         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1238         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1239
1240 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1241
1242         * src/SDCCast.c (decorateType): fixed bug #1105626
1243
1244 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1245
1246         * device/include/asm/pic16/features.h,
1247         * pic18f*.h headers,
1248         * device/include/pic16/adc.h,
1249         * device/include/pic16/delay.h,
1250         * device/include/pic16/i2c.h,
1251         * device/include/pic16/malloc.h,
1252         * device/include/pic16/stdio.h,
1253         * device/include/pic16/stdlib.h,
1254         * device/include/pic16/string.h,
1255         * device/lib/pic16/libc/stdio/printf_tiny.c,
1256         * device/lib/pic16/libc/stdio/printf_small.c,
1257         * device/lib/pic16/libc/stdio/strmgpsim.c,
1258         * device/lib/pic16/libc/stdio/strmmssp.c,
1259         * device/lib/pic16/libc/stdio/strmusart.c,
1260         * device/lib/pic16/libc/stdio/vfprintf.c,
1261         * device/lib/pic16/libc/stdlib/ltoa.c,
1262         * device/lib/pic16/libc/stdlib/putchar.c,
1263         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1264         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1265         * device/lib/pic16/libc/stdlib/memchrram.c,
1266         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1267         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1268         * device/lib/pic16/libio/adc/adcbusy.c,
1269         * device/lib/pic16/libio/adc/adcread.c,
1270         * device/lib/pic16/libio/adc/adcsetch.c,
1271         * device/lib/pic16/libio/usart/ubaud.c,
1272         * device/lib/pic16/libio/usart/ubusy.c,
1273         * device/lib/pic16/libio/usart/udrdy.c,
1274         * device/lib/pic16/libio/usart/uopen.c,
1275         * device/lib/pic16/libio/usart/uputc.c,
1276         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1277         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1278         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1279         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1280         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1281         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1282         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1283         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1284         specific keywords to double underlined form,
1285         * device/lib/pic16/libc/Makefile.rules,
1286         * device/lib/pic16/libsdcc/Makefile.rules,
1287         * device/lib/pic16/libm/Makefile,
1288         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1289         to compile with C standard set in Makefile.common
1290         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1291         rand.c and crc.c in compilation process,
1292         * device/lib/pic16/libsdcc/int/divuint.c,
1293         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1294         `c' from signed to unsigned,
1295         * device/lib/pic16/startup/crt0.c,
1296         * device/lib/pic16/startup/crt0i.c,
1297         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1298         keywords to double underlined form, bug fixes in _do_cinit function
1299         which prevented the correct initialization of the .idata segment,
1300         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1301         core to enter a infinite loop
1302         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1303
1304 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1305
1306         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1307
1308 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1309
1310         * device/include/Makefile.in: add support for hc08 subdirectory
1311         * device/include/hc08/: new subdirectory
1312         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1313         Lucas Loizaga, thanks!
1314         * device/include/hc08/mc68hc908qy.h,
1315         * device/include/hc08/mc68hc908gp32.h,
1316         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1317         their own directory. Changed internal macro names to use the compiler
1318         reserved namespace. Changed SDCC specific keywords to double
1319         underlined form.
1320         * device/include/math.h,
1321         * device/include/malloc.h,
1322         * device/include/stdarg.h,
1323         * device/include/stdbool.h
1324         * device/include/string.h,
1325         * device/include/tinibios.h,
1326         * device/include/ds400rom.h,
1327         * device/include/8051.h,
1328         * device/include/8052.h,
1329         * device/include/80c51xa.h,
1330         * device/include/at89c55.h,
1331         * device/include/at89S8252.h,
1332         * device/include/at89x51.h,
1333         * device/include/at89x52.h,
1334         * device/include/ds80c390.h,
1335         * device/include/reg764.h,
1336         * device/include/regc515c.h,
1337         * device/include/sab80515.h,
1338         * device/include/mcs51/c8051f000.h,
1339         * device/include/mcs51/c8051f018.h,
1340         * device/include/mcs51/c8051f020.h,
1341         * device/include/mcs51/c8051f040.h,
1342         * device/include/mcs51/c8051f060.h,
1343         * device/include/mcs51/c8051f120.h,
1344         * device/include/mcs51/c8051f300.h,
1345         * device/include/mcs51/c8051f310.h,
1346         * device/include/mcs51/c8051f320.h,
1347         * device/include/mcs51/c8051f330.h,
1348         * device/include/mcs51/c8051f350.h,
1349         * device/include/z180.h: Changed SDCC specific keywords to double
1350         underlined form.
1351
1352 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1353
1354         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1355         18F4455,
1356         * (pic16_assignConfigWordValue): disable testing of configuration
1357         register value with config mask,
1358         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1359         function with port->fun_prefix,
1360         * (genFunction): when generating a naked interrupt function never
1361         create an absolute segment placed in interrupt vector address, place
1362         the actual interrupt function at IVA instead, when an interrupt
1363         function is generated with unspecified interrupt then do not create
1364         the absolute section,
1365         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1366         code for generating a call to generic pointer get/put function with
1367         a call to function pic16_callGenericPointer(),
1368         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1369         the call to the generic pointer get/put functions with prefixing the
1370         function name with port->fun_prefix,
1371         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1372         * src/pic16/main.c (_process_pragma): prefix function with
1373         port->fun_prefix,
1374         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1375         calling assembler, old 18Fxxxx macro is deprecated,
1376         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1377         PC_ASMDIR in while condition,
1378         * (findInstruction): add PC_ASMDIR in while condition,
1379         * (buildCallTree): prefix main with port->fun_prefix,
1380         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1381         identifier for variable with banked access in instructions BTFSS,
1382         BTFSC, BCF, BSF, BTG
1383         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1384         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1385         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1386         perform optimization when enviroment variable NO_REG_OPT is set,
1387         * (insideLRBlock): NEW, return 1 if register is inside an
1388         INF_LOCALREGS block,
1389         * (RemoveRegFromLRBlock): remove a register that is completely
1390         eliminated by register optimization, but it is still left in local
1391         register store/restore in/from stack block,
1392         * (Remove2pcodes): after removing register, check to see if it
1393         should be removed from local register store/restore in/from stack
1394         block,
1395         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1396         DUMMY_READ_VOLATILE,
1397
1398         * device/include/pic16/adc.h: minor prototype modifications and
1399         update,
1400         * device/include/pic16/malloc.h: added GPL notice various
1401         modifications,
1402         * device/include/pic16/stdint.h: NEW, standard header for ints
1403         * device/include/pic16/delay.h: NEW, header for delay functions,
1404         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1405         delay1mtcy,
1406         * device/include/pic16/signal.h: NEW, header providing helper macros
1407         for implementing signal handlers,
1408         * device/include/pic16/stdio.h: added prototypes for functions,
1409         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1410         prototypes for stdin and stdout, added macro PUTCHAR to
1411         automatically implement putchar function prototype,
1412         * device/include/pic16/usart.h: modified and updated USART library,
1413         * device/lib/pic16/libio/adc/,
1414         * device/lib/pic16/libio/i2c: some modifications to improve library
1415         performance,
1416         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1417         family of functions,
1418         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1419         family of functions and other sources,
1420         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1421         of the PIC18Fxx[28] devices,
1422         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1423         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1424         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1425         _do_cinit function, because the previous failed when local variables
1426         where not placed in the same memory bank,
1427         * device/lib/pic16/libsdcc/char/: various modifications to improve
1428         library performance,
1429         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1430         information on the new functions of the c library and more...
1431
1432 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1433
1434         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1435
1436 2005-03-26 Raphael Neider <rneider AT web.de>
1437
1438         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1439           if condition == CARRY)
1440         * (genCmp): adapted to new genSkipc semantics
1441         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1442           on rIfx (genCmp was broken)
1443
1444 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1445
1446         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1447         * src/z80/main.c (_keywords[]),
1448         * src/SDCCglobal.h (struct options),
1449         * src/SDCC.y,
1450         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1451         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1452         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1453         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1454         always available in leading double underscore form. The C99 support is
1455         mostly missing, but it's a start.
1456         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1457         reserved identifier "__data".
1458
1459 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1460
1461         * src/mcs51/peeph.def: fixed bug 1170013
1462
1463 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1464
1465         * device/include/mcs51reg.h: fixed bug 842007
1466
1467 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1468
1469         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1470         last time.
1471
1472 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1473
1474         * src/port.h (struct PORT),
1475         * src/avr/ralloc.c (avr_assignRegisters),
1476         * src/avr/main.c,
1477         * src/ds390/ralloc.c (ds390_assignRegisters),
1478         * src/ds390/main.c,
1479         * src/hc08/ralloc.c (hc08_assignRegisters),
1480         * src/hc08/main.c,
1481         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1482         * src/mcs51/main.c,
1483         * src/pic/ralloc.c (pic14_assignRegisters),
1484         * src/pic/main.c,
1485         * src/pic16/ralloc.c (pic16_assignRegisters),
1486         * src/pic16/main.c,
1487         * src/xa51/ralloc.c (xa51_assignRegisters),
1488         * src/xa51/main.c,
1489         * src/z80/ralloc.c (z80_assignRegisters),
1490         * src/z80/ralloc.h,
1491         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1492         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1493         * src/SDCCcse.h,
1494         * src/SDCCdflow.c (computeDataFlow),
1495         * src/SDCCdflow.h,
1496         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1497         * src/SDCCloop.h,
1498         * src/SDCCcflow.c (*),
1499         * src/SDCCcflow.h,
1500         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1501         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1502         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1503         immedDom() returning wrong block; probably fixes bug #1160833)
1504
1505 2005-03-20 Borut Razem <borut.razem AT siol.net>
1506
1507         * support/scripts/inc2h.pl: WIN32 port
1508
1509 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1510
1511         * device/lib/makefile.in: added abs.c and labs.c
1512
1513 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1514
1515         * device/include/stdint.h: added
1516         * device/lib/abs.c: added
1517         * device/lib/labs.c: added
1518         * device/include/stdlib.h: added abs() and labs() prototypes
1519         * device/lib/libsdcc.lib: added abs and labs
1520         * device/include/float.h,
1521         * device/lib/_fsmul.c,
1522         * device/lib/printf_fast.c,
1523         * device/lib/printf_tiny.c: updated comments
1524
1525 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1526
1527         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1528         bug #1164313
1529
1530 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1531
1532         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1533         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1534
1535 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1536
1537         * device/lib/printf_large.c: removed inline assembly for portability and
1538           readability. Use printf_fast if speed or size are more important.
1539         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1540         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1541
1542 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1543
1544         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1545         prevent compiler warning
1546
1547 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1548
1549         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1550         moved to level 0 and declared as static. Also they are explicit
1551         placed in access bank. This was necessery because some times they
1552         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1553         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1554         optimizations. Currently only compare to unsigned char is implemented,
1555         * src/pic16/gen.c: added fReturnIdx array,
1556         * (struct resolvedIfx) is moved to gen.h and made public,
1557         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1558         * (aopForSym): added an optimization to directly store in stack of
1559         the operand of a SEND iCode,
1560         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1561         but as registers instead (AOP_REG) using the fReturnIdx array,
1562         * (pic16_freeAsmop): remove the freed register from the
1563         _G.sregsAlloc field,
1564         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1565         a compare of 'WREG',
1566         * (pic16_popGetTempRegCond): changed function prototype, now
1567         function takes also a bitVector argument v which holds the current
1568         set of registers that are allocated for stack access by aopForSym,
1569         registers allocated in aopForSym for accessing stack symbols are not
1570         any more part of the functions usedRegs field,
1571         * (genCall): some times aopOp is called for a stack variable to be
1572         send, aopForSym might perform the push, if this is true make sure
1573         that genCall doesn't push the variable twice by testing _G.resDirect,
1574         * (genFunction): changed testing for unspecified interrupt number
1575         from 256 to INTNO_UNSPEC,
1576         * modified selection scheme of frame pointer generation. Previously
1577         if function did use local registers a frame pointer was generated,
1578         now a frame pointer is generated only if function has arguments
1579         (that need PLUSW2 register access), or has stack arguments, or the
1580         compiler is not instructed to omit the frame pointer,
1581         * (genEndFunction): before restoring local registers that were saved
1582         in the function preamble, also restore the registers that *might*
1583         have been allocated for stack access,
1584         * (genRet): removed some old comments,
1585         * (genCmp, the active (RN's) version): added a call to the
1586         pic16_genCmp_special function to perform the compare with a more
1587         robust and optimized way,
1588         * (genInline): a feature has been added in inline code generation,
1589         which allows a wildcard variable substitution when writing inline
1590         assembly. Code is incomplete and experimental therefore undocumented,
1591         * (genCast): changed order of aopOp for result and right to allow
1592         aopForSym to directly load the result if possible,
1593         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1594         perform an optimized compare on some selected special occasions,
1595         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1596         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1597         generate an IVT any more,
1598         * src/pic16/main.c (pic16_optionsTable): added command line option
1599         --optimize-cmp,
1600         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1601         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1602         macros,
1603         * src/pic16/NOTES: Raphael Neider added in list of active developers
1604         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1605         jumptable_end to prevent bug #,
1606         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1607         inCond and outCond fields,
1608         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1609         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1610         turn off register spilling,
1611         * (packRegsForOneUse): synced with other ports' versions although it
1612         is not used currently,
1613         * (pic16_packRegisters): added an optimization while reading
1614         structure bitfields, some registers may be saved (malloc code is
1615         decreased by 80 bytes)
1616
1617 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1618
1619         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1620         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1621         this can be optimized more?
1622
1623 2005-03-10 Raphael Neider <rneider AT web.de>
1624
1625         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1626           genNearPointerGet): (hopefully) fixed access to bitfields via
1627           pointers (p->bitN = x; and x = p->bitN; failed)
1628
1629 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1630
1631         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1632
1633 2005-03-09 Raphael Neider <rneider AT web.de>
1634
1635         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1636
1637 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1638
1639         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1640         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1641           (regTypeNum): set REG_BIT type if necessary
1642         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1643         * support/regression/tests/critical.c: check bug 1144613
1644
1645 2005-03-02 Raphael Neider <rneider AT web.de>
1646
1647         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1648
1649 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1650
1651         * src/avr/ralloc.c (serialRegAssign),
1652         * src/ds390/ralloc.c (serialRegAssign),
1653         * src/hc08/ralloc.c (serialRegAssign),
1654         * src/mcs51/ralloc.c (serialRegAssign),
1655         * src/pic/ralloc.c (serialRegAssign),
1656         * src/pic16/ralloc.c (serialRegAssign),
1657         * src/xa51/ralloc.c (serialRegAssign),
1658         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1659
1660 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1661
1662         * src/SDCCast.c (decorateType): fixed bug 1124787
1663
1664 2005-02-20 Hubert Sack <sack AT digiplan.de>
1665         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1666
1667         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1668         patch #1121755
1669
1670 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1671
1672         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1673         to keep the correct label reference count when adding/removing references
1674         to labels. A peephole file using this is appended to patch #1144962.
1675
1676 2005-02-14 Raphael Neider <rneider AT web.de>
1677
1678         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1679         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1680         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1681           retrievals of result operand's value on assignment
1682
1683 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1684
1685         * device/include/pic16/string.h: modified prototype for memccpy()
1686         to memccpy(void *, void *, char, size_t)
1687         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1688         check whether to omit frame pointer or not,
1689         * (genInline): convert all occurences of "\n" to LF in inline
1690         assembler blocks, this helps formatting the inline text,
1691         * (pic16_loadFSR0): modified prototype,
1692         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1693         removed some 8051 legacy code,
1694         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1695         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1696         before allocating temporary registers in functions,
1697
1698 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1699
1700         * support/regression/tests/bitvars.c: corrected the "fix"
1701
1702 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1703
1704         * support/regression/tests/bitvars.c,
1705         * support/regression/tests/bitwise.c,
1706         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1707
1708 2005-02-10 Raphael Neider <rneider AT web.de>
1709
1710         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1711           different size for Alpha
1712         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1713
1714 2005-02-09 Raphael Neider <rneider AT web.de>
1715
1716         * src/SDCC.lex(doPragma) : save and restore warning options as well
1717           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1718         * have #pragma less_pedantic set the errorlevel to WARNING
1719           (fixes #1117001)
1720         * (cloneOptimize) : fixed wrong malloc's size
1721         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1722           facilitate correct handling of #pragma (save|restore)
1723
1724 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1725
1726         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1727
1728 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1729
1730         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1731
1732 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1733
1734         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1735
1736 2005-02-02 Raphael Neider <rneider AT web.de>
1737
1738         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1739         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1740         * (pic16_storeForReturn): fixed to allow returning function pointers
1741         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1742         * device/include/pic16/{stddef.h,stdbool.h}: added
1743
1744 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1747
1748 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1749
1750         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1751         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1752          appeared to be required
1753
1754 2005-01-31 Borut Razem <borut.razem AT siol.net>
1755
1756         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1757           include/mcs51 and include/z80 directories to the package
1758
1759 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1760
1761         * src/hc08/gen.c (genFunction): fixed bug #1112752
1762
1763 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1764
1765         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1766
1767 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1768
1769         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1770
1771 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1772
1773         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1774
1775 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1776
1777         * device/include/c8051fxxx.h: removed these 6 files
1778         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1779
1780 2005-01-26 Raphael Neider <rneider AT web.de>
1781
1782         * src/pic16/gen.c (genAssign): fixed assignment from longs
1783           in codespace (were cut to three bytes)
1784         * (genDummyRead): implemented (except for CODESPACE...),
1785           fixed bug #1108575
1786         * src/pic16/glue.c (emitStatistics): beautified
1787         * device/lib/pic16/libm/Makefile: added include path
1788
1789 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1790
1791         * src/z80/gen.c (aopPut): fixed bug #1103902
1792
1793 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1794
1795         * device/lib/expf.c: fixed bug #1095792
1796
1797 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1798
1799         * device/lib/pic16/libm: added Math library sources
1800
1801 2005-01-24 Raphael Neider <rneider AT web.de>
1802
1803         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1804           to enable upcast to pCodeOpReg2 (there is no type tag to
1805           differenciate the two and pic16_popGet2p cast into PCOR2)
1806         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1807           (sizeof(sectNames) changed to sizeof(sectName))
1808           Both patches fix segfaults under MinGW.
1809
1810 2005-01-23 Raphael Neider <rneider AT web.de>
1811
1812         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1813           Safe_[mc]?alloc()'ed variables
1814         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1815           of (byte sized) temporaries (assign them to WREG for now)
1816         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1817           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1818           this might fix SIGSEGVs on MinGW...
1819         * src/SDCCopt.c (killDeadCode): restored original behaviour
1820           (volatile operands might get thrown away though)
1821
1822 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1823
1824         * src/pic16/gen.c: fixed bug #1106975,
1825         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1826         pointer update, INTCON is saved, global interrupts are disabled and
1827         restored after updateing TOS.
1828         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1829         * added function attribute 'shadowregs' to take advantage of shadow
1830         registers,
1831         * added function attribute 'wparam' as an alternative to the wparam
1832         pragma,
1833         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1834         user declares a non-ISR function as 'shadowregs',
1835         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1836
1837 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1838
1839         * .version: bumped version number to 2.4.8
1840         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1841         pic16 port,
1842         * device/lib/pic16/libio/i2c/: I2C module support library,
1843         * device/include/pic16/i2c.h: I2C support library header,
1844         * device/lib/pic16/libc/stdio/: standard IO support sources,
1845         * (printf_small.c): printf_small() source, supports float print,
1846         * (printf_tiny.c): printf_tiny() source, does not support floats,
1847         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1848         enable global optimizations for entire library source, other
1849         Makefiles in the source tree are also modified to reflect this,
1850         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1851         function,
1852         * doc/sdccman.lyx: updated to reflect new changes,
1853         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1854         sym->onStack if-case,
1855         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1856         sbit, idata, _idata, xdata, _xdata,
1857         * added pragma library, to link an external library, (see doc),
1858         * removed command line options, --pomit-config-words, --pomit-ivt,
1859         --pleave-reset-vector,
1860         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1861         when calling assembler to reflect memory model used, also define
1862         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1863         reflect stack model used,
1864         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1865         on stack return NULL,
1866
1867 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1868
1869         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1870           of the operands is volatile. Fixes #1020220
1871
1872 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1873
1874         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1875         * (OptimizeRegUsage): make sure that there is really no other flow where
1876           the first pCode is used
1877
1878 2005-01-22 Raphael Neider <rneider AT web.de>
1879
1880         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1881           to fix #1106967 (pCode->seq are not set up correctly)
1882
1883 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1884
1885         * src/SDCCglue.c (glue): make sure code area is declared before the
1886         static initialization area.
1887
1888 2005-01-21 Raphael Neider <rneider AT web.de>
1889
1890         * device/lib/Makefile.in: fixed test for pic16 install dir
1891         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1892           optimizations
1893         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1894           added --optimize-goto compiler switch and pragma wparam documentation
1895         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1896         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1897           and PRODH closing bug #1071770 (peephole optimizer)
1898
1899 2005-01-19 Raphael Neider <rneider AT web.de>
1900
1901         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1902           cmdLine buffers (used when calling sdcpp...) are large enough
1903           (MAX_PATH=256 truncates arguments leading to system halts when
1904           used in MinGW...)
1905         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1906         * (genUminus): rewritten to for efficiency
1907         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1908           used uninitialized in some cases)
1909         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1910           copy the third byte from the int -- now assumes 0x80 (data memory)
1911         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1912           operands (genAddLit expects the iCode's operands to swapped as
1913           well), fixed leftover bytes (crashed for short left operands)
1914         * (pic16_genMinusDec): performance improvements, removed false
1915           PIC14 emitSKPNCs
1916         * (pic16_genMinus): fixed to cope with differently sized operands
1917         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1918           for --obanksel > 1
1919         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1920         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1921           new banksel optimization
1922         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1923           analysis for temporary registers (segfaults...)
1924         * src/pic16/peeph.def: added rule
1925
1926 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1927
1928         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1929         which converts a float number to its ASCII representation
1930         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1931         functions to convert the fractional and integer part of a float to ASCII,
1932         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1933         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1934         ram
1935         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1936         _STATMEM macros,
1937         * device/include/pic16/adc.h: added GPL info,
1938         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1939         a pCodeOp as tested operand,
1940         * (genNearPointerGet): optimized bit testing, does not use
1941         intermediate register for bit value, test directly instead with
1942         BTFSS, BTFSC, works only for single bits,
1943         * (genpic16Code): dump the name of the iCode in the asm,
1944         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1945         renamed to pic16_decodeOp,
1946         * (serialRegAssign): do not allocate a temporary register for iCode
1947         sequences that test a single bit for 1/0
1948
1949 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1950
1951         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1952         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1953         access stack and frame pointers. They are initially assigned to
1954         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1955         accessing SFRs. Updated all occurences of modification of stack or
1956         frame pointer in gen.c and pcode.c,
1957         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1958         assigning of a literal value to pointers,
1959         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1960         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1961         selected
1962
1963 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1964
1965         * doc/sdccman.lyx: update documentation about stack pragma, added
1966         some info for stack memory models
1967
1968 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1969
1970         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1971
1972 2005-01-08 Raphael Neider <rneider AT web.de>
1973
1974         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1975           udata sections to fix bug #1097823
1976
1977 2005-01-05 Raphael Neider <rneider AT web.de>
1978
1979         * src/pic16/gen.c (genGenericShift): added handling of differently
1980           sized left operand and result
1981
1982 2005-01-04 Raphael Neider <rneider AT web.de>
1983
1984         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1985         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1986           to hold the condition bit)
1987         * added new version of genCmp (old code available via #define)
1988         * added new version of genShiftLeft/genShiftRight in a generic
1989           way, now supports shifting by negative values
1990         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1991           shiftCount (expected by genGenericShift)
1992         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1993         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1994           dump
1995         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1996           is an invalid literal too...)
1997
1998 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1999
2000         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2001         from Raphael Neider,
2002         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2003         for 8-bit literals. This fixes some literal operands which are sign
2004         extended to 16-bits ints when instruction needs only 8-bits.
2005
2006 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2007
2008         * device/lib/logf.c: added mcs51 assembly version
2009         * device/lib/expf.c: added mcs51 assembly version
2010         * device/lib/_logexpf.c: new shared asm code for expf and logf
2011         * device/include/math.h: add defines for assembly math library
2012         * device/lib/Makefile.in: build new _logexpf.c
2013         * device/lib/libfloat.lib: use new _logexpf.c
2014
2015 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2016
2017         * src/pic/device.c
2018         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2019           device types which have less than 0x7f registers.
2020
2021 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2022
2023         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2024
2025 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2026
2027         * device/lib/printf_fast.c: only build on supported arch.
2028         * device/lib/printf_tiny.c: only build on supported arch.
2029         * device/lib/printf_fast_f.c: only build if asm float lib
2030         * device/lib/_fsget1arg.c: only build if asm float lib
2031         * device/lib/_fsget2args.c: only build if asm float lib
2032         * device/lib/_fsnormalize.c: only build if asm float lib
2033         * device/lib/_fsreturnval.c: only build if asm float lib
2034         * device/lib/_fsrshift.c: only build if asm float lib
2035         * device/lib/_fsswapargs.c: only build if asm float lib
2036         * device/include/stdio.h: don't provide print_fast,
2037           print_fast_f, print_tiny prototypes if --xstack used
2038
2039 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2040
2041         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2042         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2043           to the SOURCES
2044
2045 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2046
2047         * device/lib/printf_fast_f.c: same as printf_fast, but
2048           with floating point enabled
2049         * device/lib/printf_fast.c: minor tweaks
2050         * device/include/stdio.h: add printf_fast_f
2051
2052 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2053
2054         * src/SDCCmain.c: make --float-reent default for mcs51
2055         * device/lib/_fsadd.c: added mcs51 assembly version
2056         * device/lib/_fssub.c: added mcs51 assembly version
2057         * device/lib/_fsmul.c: added mcs51 assembly version
2058         * device/lib/_fsdiv.c: added mcs51 assembly version
2059         * device/lib/_fseq.c: added mcs51 assembly version
2060         * device/lib/_fsneq.c: added mcs51 assembly version
2061         * device/lib/_fsgt.c: added mcs51 assembly version
2062         * device/lib/_fslt.c: added mcs51 assembly version
2063         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2064         * device/lib/Makefile.in: add _fscmp to build
2065         * device/lib/libfloat.lib: add _fscmp to build
2066
2067 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2068
2069         * device/lib/_fs2slong.c: added mcs51 assembly version
2070         * device/lib/_fs2sint.c: added mcs51 assembly version
2071         * device/lib/_fs2schar.c: added mcs51 assembly version
2072         * device/lib/_fs2ulong.c: added mcs51 assembly version
2073         * device/lib/_fs2uint.c: added mcs51 assembly version
2074         * device/lib/_fs2uchar.c: added mcs51 assembly version
2075         * device/lib/_slong2fs.c: added mcs51 assembly version
2076         * device/lib/_sint2fs.c: added mcs51 assembly version
2077         * device/lib/_schar2fs.c: added mcs51 assembly version
2078         * device/lib/_ulong2fs.c: added mcs51 assembly version
2079         * device/lib/_uint2fs.c: added mcs51 assembly version
2080         * device/lib/_uchar2fs.c: added mcs51 assembly version
2081         * device/include/float.h: added #define to select asm vs c
2082
2083 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2084
2085         * device/lib/printf_fast.c: improvements to float output
2086         * device/include/float.h: add defines for assembly float library
2087         * device/lib/_fsget1arg.c: receive 1 float arg
2088         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2089         * device/lib/_fsnormalize.c: normalize a float
2090         * device/lib/_fsreturnval.c: return float, various helper routines
2091         * device/lib/_fsrshift.c: right shift a float's mantissa
2092         * device/lib/_fsswapargs.c: swap 2 floats
2093         * device/lib/Makefile.in: build these 6 new files for mcs51
2094         * device/lib/libfloat.lib: add these 6 files to the library
2095
2096 2004-12-26 Borut Razem <borut.razem AT siol.net>
2097
2098         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2099           built by gcc 3.4.2
2100
2101 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2102
2103         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2104           and fully reentrant and register bank neutral.
2105         * device/lib/printf_fast.c: added float (not enabled by default),
2106           added compact/slower integer (also not enabled by default),
2107           improved size/speed of fast integer code, other minor changes
2108         * device/include/stdio.h, device/lib/Makefile.in,
2109           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2110
2111 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2112
2113         * src/pic16/pcode.c: declaring variables other than at the start of a
2114           block is not supported in C by VC6.
2115
2116 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2117
2118         * applied a previous patch from Raphael Neider that wasn't included
2119         in the previous commits, which fixes infinite loops within jumptable
2120         improvements,
2121         * made some fixes that previous patches introduced
2122
2123 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2124
2125         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2126         that fixes an issue with AOP_PCODE asmop's offset,
2127         * (pic16_popCopyReg): update instance field too,
2128         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2129         function of pic port,
2130         * (genCmp, genAnd, genAssign),
2131         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2132
2133 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2134
2135         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2136         variables initial values to idata section,
2137         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2138         variables in some functions. This utilizes parmBytes field of iCode
2139         structure to hold the offset of the variable in stack. (might be
2140         able to use the stack field too?)
2141         * applied patch from Raphael Neider # ### , # ###
2142         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2143         variable initial values in idata section,
2144         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2145         for static variables with initial value
2146         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2147         applied fix in while loop from Raphael Neider.
2148
2149 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2150
2151         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2152         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2153         * src/ds390/ralloc.c (serialRegAssign): spill bits
2154         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2155         * support/Util/SDCCerr.c,
2156         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2157         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2158         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2159
2160 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2161
2162         * device/include/sdcc-lib.h: inserted LGPL, added includes
2163           asm/ds390/features.h and asm/mcs51/features.h
2164         * device/include/asm/default/features.h,
2165         * device/include/asm/gbz80/features.h,
2166         * device/include/asm/z80/features.h: added empty _AUTOMEM
2167           and _STATMEM
2168         * device/include/asm/ds390/features.h,
2169         * device/include/asm/mcs51/features.h: added files with defines for
2170           _AUTOMEM and _STATMEM indicating automatic and static storage class
2171         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2172         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2173         * src/SDCCicode.c (geniCodeCast),
2174         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2175         * src/SDCCloop.c (loopInduction): removed unused variable lr
2176         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2177           to convertToFcall to include char modulo (RFE 1065037), added check
2178           if left operand is unsigned and use abs of literal value
2179         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2180           as it doesn't work after conversion from peephole.def to peephole.rul
2181         * src/mcs51/gen.c (toBoolean): added check for size,
2182           (genModOneByte): optimized code for signed char modulo a literal
2183           power of 2 (thanks to Hubert Sack),
2184           (genRRC): removed unnecessary "clr c",
2185           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2186         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2187           jump optimization,
2188           swapped rules 256.c and 256.d,
2189           extended 256.d by using new multiple checks (thanks Erik),
2190           added rules 256.e and 256.f,
2191           updated rule 261.a and 261.b to new generated code
2192         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2193
2194 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2195
2196         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2197           induction related bugs, including first part of bug #1074377
2198
2199 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2200
2201         * applied patch from bug-report #1076292,
2202         * applied patches for genAnd and Goto-optimizations for Raphael
2203         Neider,
2204         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2205         dump a less iCode information,
2206         * src/pic16/device.h (pic16_options_t): added field debgen,
2207         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2208         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2209         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2210         puclic,
2211         * (various functions): added macros FENTRY and FENTRY2 to functions,
2212         to emit function prologue,
2213         * (various functions): fixed indentation,
2214         * (genNearPointerGet): fixed loading of FSR0,
2215         * (genPackBits): applied patch from Raphael Neider to fix updating
2216         of FSR0 and touching only the modified bits,
2217         * src/pic16/genarith.c (various functions): added macros FENTRY to
2218         emit function prologue in comments,
2219         * src/pic16/pcode.h: added functions debugf2, debugf3,
2220         * src/pic16/ralloc.c: partial fix for packForPush caused
2221         segmentation fault,
2222
2223 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2224
2225         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2226           <stsp AT users.sourceforge.net> with reversed byte order
2227         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2228
2229 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2230
2231         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2232           bug #1074377
2233         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2234         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2235
2236 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2237
2238         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2239
2240 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2241
2242         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2243           conditions,
2244           (setFromConditionArgs): friendly operand parser for peephole rules,
2245           (operandBaseName, operandsNotRelated): new peephole condition
2246           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2247           architecture specific register naming into account, handles n-way
2248           comparisons, and supports quoted literals
2249         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2250
2251 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2252
2253         * src/mcs51/peeph.def: fixed bug #1076940
2254
2255 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2256
2257         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2258
2259 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2260
2261         Adding support for replacing ljmps with sjmps in jumptables
2262         generated for switch statements. For now you need to set the
2263         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2264         Now 4 algorithms for mcs51 jumptable generation are used:
2265         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2266         addresses loaded pc-relative for up to 112 cases and stack-pushing
2267         target addresses loaded with offset from dptr for up to 256 cases.
2268
2269         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2270         * src/mcs51/main.c: adapted constants for switch table generation
2271         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2272
2273 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2274
2275         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2276         * support/regression/tests/bug1057979.c: added test for bug 1073386
2277
2278 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2279
2280         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2281         compilers
2282
2283 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2284
2285         * src/pic16/device.h,
2286         * src/pic16/genarith.c,
2287         * src/pic16/glue.c,
2288         * src/pic16/main.c,
2289         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2290
2291 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2292
2293         Large cummulative patch for pic16 port.
2294         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2295         to call when a stack overflow occurs,
2296         * (malloc.h): added CVS Id tag,
2297         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2298         variable,
2299         * added libc directory. The current version of LibC contains string
2300         functions, ctype functions and macros and some functions of the
2301         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2302         be extensively tested in the future. Standard disclaimer here.
2303         Library is not automatically build yet. But one can build it by
2304         invoking 'make' inside the libc directory.
2305         * added ADC library under libio. Preliminary version yet.
2306
2307         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2308         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2309         aopForRemat() now and not by pic16_aopOp(),
2310         * (pic16_popGetTempReg): removed warning messgae when allocating
2311         temporary registers, its a buggy feature and will be removed,
2312         * (pic16_popGet): set register instance field in AOP_CRY,
2313         * (pic16_outBitC): fixed for results in size greater than 1,
2314         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2315         * (pic16_storeForReturn): optimized return of 0,
2316         * (genCmp): experimental code for new genCmp which uses PIC18's
2317         special compare&skip instructions. Initial tests fail some times
2318         with variables grater than 1 byte in size, so new code is disabled,
2319         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2320         a single bit,
2321         * (genCast): began a fix to optimize the casting of a bit to another
2322         bit, now assigning a bitfield to another bitfield will fail, sorry,
2323         * src/pic16/main.c: disabled the use of lr-support feature,
2324         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2325         * added some function prototypes, added function _debugf prototype,
2326         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2327         bits with offset (case PO_GPR_BIT),
2328         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2329         command line,
2330         * (isBankInstruction): modified to return 0 for no banking instruction,
2331         and 1 for banking instruction,
2332         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2333         caused stop processing pCodes after a inline assembly block,
2334         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2335         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2336         registers when it shouldn't,
2337         * src/pic16/ralloc.c (allocReg): add preliminary support for
2338         supporting a limited set of temporary registers,
2339
2340 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2341
2342         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2343           genDataPointerSet): ensure assignments always copy in MSB to LSB
2344           order,
2345           (loadRegFromAop): recognize CLRH optimization,
2346           (genFunction): optimize RECEIVE iCodes in reentrant functions
2347
2348 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2349
2350         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2351           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2352           selected.
2353         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2354         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2355           contiguous with data
2356
2357 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2358
2359         * device/lib/_gptrget.c (_gptrget),
2360         * device/lib/_gptrgetc.c (_gptrgetc),
2361         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2362           instead of sjmp to ret
2363         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2364           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2365
2366 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2367
2368         * .version: bumped version to 2.4.7
2369         * device/lib/_gptrget.c (_gptrget): is now _naked
2370         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2371         * device/lib/_gptrput.c (_gptrput): is now _naked
2372         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2373           (createFunction): fixed xstack
2374         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2375         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2376           or bit either,
2377           (geniCodeCritical): store original interrupt state in an iTemp bit
2378           var unless stack-auto
2379         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2380         * src/SDCCmain.c (setIncludePath): added include/target to search path
2381         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2382         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2383           prototype,
2384           (processFuncArgs): put bit vars in bit area
2385         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2386           unsaveRBank): fixed xstack,
2387           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2388           (genFunction, genEndFunction): fixed xstack,
2389           (genAssign): optimization don't walk backwards through mem
2390         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2391         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2392         * support/regression/Makefile: also make library (for stack-auto) when
2393           making "all" and added "test-mcs51-xstack-auto"
2394         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2395         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2396         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2397         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2398         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2399           make-library by MAKE_LIBRARY
2400         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2401           regression tests for xstack
2402         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2403         * support/regression/tests/critical.c: test for critical on mcs51
2404
2405 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2406
2407         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2408           built version of sdcc instead of installed version
2409
2410 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2411
2412         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2413         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2414           vprintf.c now
2415         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2416         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2417           WARNING: remove device/lib/build/z80/printf.o by hand when
2418           updating from previous build!
2419         * device/lib/z80/printf.c: updated comment
2420         * support/regression/tests/bug1057979.c: test all ports now
2421         * support/regression/tests/bug1065458.c: file added
2422
2423 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2424
2425         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2426           *_start and *_end symbols for static functions
2427
2428 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2429
2430         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2431           and search crt0.o in all library paths,
2432           (setIncludePath): proper handling of --nostdinc,
2433           (setLibPath): proper handling of --nostdlib
2434         * support/regression/Makefile,
2435         * support/regression/ports/ds390/spec.mk,
2436         * support/regression/ports/gbz80/spec.mk,
2437         * support/regression/ports/hc08/spec.mk,
2438         * support/regression/ports/mcs51/spec.mk,
2439         * support/regression/ports/mcs51-large/spec.mk,
2440         * support/regression/ports/mcs51-stack-auto/spec.mk,
2441         * support/regression/ports/z80/spec.mk: use include and lib files from
2442           built version of sdcc instead of installed version
2443         * doc/sdccman.lyx: fixed typo in --nostdinc
2444
2445 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2446
2447         * src/pic/pcode.c,
2448         * src/pic/device.c,
2449         * src/pic/ralloc.c,
2450         * src/pic/gen.c : added support to generate code for struct bit fields.
2451
2452 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * as/xa51/xa_version.h,
2455         * device/include/errno.h,
2456         * device/include/regc515c.h,
2457         * device/lib/_itoa.c,
2458         * device/lib/_ltoa.c,
2459         * device/lib/ser_ir_cts_rts.c,
2460         * sim/ucsim/xa.src/glob.cc,
2461         * sim/ucsim/xa.src/inst_gen.cc,
2462         * sim/ucsim/xa.src/xa_bit.cc,
2463         * sim/ucsim/xa.src/xa_sfr.cc,
2464         * sim/ucsim/z80.src/inst_dd.cc,
2465         * sim/ucsim/z80.src/inst_fdcb.cc,
2466         * support/scripts/keil2sdcc.pl,
2467         * src/pic16/pic16.dsp,
2468         * src/pic16/pic16a.dsp: corrected cvs line endings
2469         * device/lib/printf_large.c: fixed bug 1057979
2470         * src/pic16/gen.c: fixed non-C standard code
2471         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2472         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2473         * support/regression/ports/mcs51/support.c: reload T1 asap
2474         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2475           pdata use and clear idata startup behaviour
2476         * support/regression/tests/bug1057979.c: added
2477
2478 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2479
2480         * device/examples/ds390/ow390/ad26.h,
2481         * device/examples/ds390/ow390/cnt1d.h,
2482         * device/examples/ds390/ow390/crcutil.c,
2483         * device/examples/ds390/ow390/ownet.h,
2484         * device/examples/ds390/ow390/owsesu.c,
2485         * device/examples/ds390/ow390/swt12.h,
2486         * device/examples/ds390/ow390/swtoper.c,
2487         * device/examples/ds390/ow390/temp10.h,
2488         * device/examples/ds390/ow390/thermodl.c,
2489         * device/examples/ds390/tinitalk/tinitalk.dsp,
2490         * device/examples/ds390/tinitalk/tinitalk.dsw,
2491         * device/examples/mcs51/clock/hw.h,
2492         * device/examples/mcs51/simple2/go.bat,
2493         * device/examples/serialcomm/windows/serial.h,
2494         * device/examples/xa51/dummy.c,
2495         * device/examples/xa51/hello.c,
2496         * device/include/80c51xa.h,
2497         * device/include/at89x051.h: corrected cvs line endings
2498
2499 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2500
2501         * src/pic16/main.c (options): added command line --gstack, to trace
2502         stack over/under flows,
2503         * added pragma 'wparam' to allow passing first byte of function
2504         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2505         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2506         call to __gstack_test function and sets up the symbol as extern,
2507         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2508         * popaop): added call to pic16_testStackOverflow,
2509         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2510         wparamList list,
2511         * (genCall, genPcall): now all parameters are passed via stack
2512         except in functions that are pass to wparam pragma in which WREG is
2513         used too,
2514         * (genPcall): REENTRANT flag is checked to see if variable prototype
2515         contains reentrant keyword, don't call a non-reentrant function, via
2516         a reentrant function pointer or vice versa, functions are never
2517         passed via WREG,
2518         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2519         D.Winkler,
2520         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2521         SIGSEGV when accessing a NULL register stucture,
2522         * (pic16_printGPointerType): modified to handle UPPER modifier for
2523         function initializers, changed prototype of function to simpler one,
2524         * (pic16_printIvalFuncPtr): check to see if function is already
2525         added in externs list,
2526         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2527         optimized a move from W to SFR with a move to the same register
2528         later after a CALL,
2529         * device/lib/pic16/debug: NEW directory, contains debug features
2530         which are enabled when linking with libdebug.lib, currently command
2531         line option --gstack enables stack pointer tracing for over/under
2532         flow, corresponding sources are in debug/gstack
2533
2534 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2535
2536         * doc/sdccman.lyx: updated SDCC version,
2537         * (PIC16 port): update list of command line options,
2538         * src/pic16/device.h (structure pic16_options_t): added field gstack
2539         to enable stack overflow tracing on push/pops,
2540         * src/pic16/device.c (statistics structure): added statistics
2541         structure,
2542         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2543         pic16_dump_int_registers): increase statistics counters for each
2544         * variable which is encountered
2545         * (pic16_dump_usection): emit each .udata variable to its own udata
2546         section,
2547         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2548         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2549         parameters via stack, otherwise use old scheme,
2550         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2551         assembler output file,
2552         * src/pic16/main.c: added command line options --gstack to enable
2553         push/pop tracing for stack overflow,
2554         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2555         instructions): added size of each instruction,
2556         * (pic16_countInstruction): estimate size of instructions in
2557         the_pFile list, inline assembly blocks are not counted,
2558         * (pic16_FixRegisterBanking): trace previous register usage, when
2559         banksel optimizations is greater than 0, don't emit a redudant
2560         banksel directive,
2561
2562 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2563
2564         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2565         * src/pic16/ralloc.c : applied same fix for pic16.
2566         * src/pic/gen.c : tidied it up a little.
2567
2568 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2569
2570         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2571         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2572
2573 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2574
2575         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2576
2577 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2578
2579         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2580         non-reentrant function __modsint in the interrupt function (thus
2581         corrupting math operations during serial I/O)
2582         * device/lib/ser_ir.c: as above, changed buffersize
2583         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2584         256.c,d for zeroing
2585         * doc/Makefile: added option -t for rsync
2586
2587 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2588
2589         * src/SDCCast.h (struct ast),
2590         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2591
2592 2004-10-20 Borut Razem <borut.razem AT siol.net>
2593
2594         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2595         package
2596
2597 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2598
2599         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2600         makefile targets,
2601         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2602         support functions to replace long sequences of MOVFF's from access
2603         bank registers to stack and vice versa,
2604         * src/pic16/device.h: added new field opt_flags, where optimization
2605         flags can be set to enable certain features,
2606         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2607         * pBlock, (genFunction, genEndFunction): surroung loop for
2608         saving/loading used registers in stack with PC_INFO pCodes,
2609         INF_LREGS. Code in between can then be optimized by pCode optimizer
2610         to support function calls,
2611         * (genDataPointerSet): fixed bug which loaded float fields in
2612         structures with corrupt data,
2613         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2614         in a standard way debug info on stderr. Feature used for developing
2615         and debugging only,
2616         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2617         obsolete chunks of code,
2618         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2619         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2620         * pic16/src/pcode.c (pic16_newpCodeInfo,
2621         * (pic16_newpCodeOpLocalRegs),
2622         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2623         feature,
2624         * (pic16_pCodeConstString): printing of the initial value of a
2625         symbol as a comment is inhibited since parsing was already done by
2626         copyStr and output is corrupt,
2627         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2628
2629 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2630
2631         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2632
2633 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2634
2635         * as/mcs51/lkarea.c: removed old K&R style,
2636           (lnksect): changed check on boundary error,
2637           (lnksect2): changed check on boundary error,
2638           (lnksect2): extend XSTK to end of page if size = 1
2639         * as/mcs51/lkmain.c: removed old K&R style,
2640           (Areas51): create l_IRAM symbol
2641         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2642         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2643           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2644         * device/lib/_mullong.c: added version to be compiled with xstack
2645         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2646         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2647         * device/lib/mcs51/crtxstack.asm: fixed comment
2648         * src/SDCCglue.c: maxInterrupts defaults to 0,
2649           (emitMaps): added pdata,
2650           (createInterruptVect): (re)moved default,
2651           (glue): added pdata,
2652           (glue): moved __start__xstack to XSTK with default size 1
2653         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2654           and options.float_rent when options.stackAuto is set,
2655           (linkEdit): only write XDATA_NAME if provided on command line
2656         * src/SDCCmem.h,
2657         * src/SDCCmem.c: added pdata
2658         * src/port.h: added pdata_name to PORT
2659         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2660           (saveRegisters, unsaveRegisters): removed usage of B,
2661           (genMinus): fixed accumulator clash,
2662           (genJumpTab): added comment, this needs another look
2663         * src/mcs51/gen.c: added check for "B in use" paranoia,
2664           added pushB() and popB()
2665         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2666           chance
2667         * src/avr/main.c,
2668         * src/ds390/main.c,
2669         * src/hc08/main.c,
2670         * src/mcs51/main.c,
2671         * src/pic/main.c,
2672         * src/pic16/main.c,
2673         * src/xa51/main.c,
2674         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2675           added PSEG (PAG,XDATA) or NULL to port specifier
2676         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2677         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2678           (_mcs51_genInitStartup): removed __start__xstack equ,
2679           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2680         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2681         * src/z80/gen.c (_rleAppend): fixed warnings
2682         * support/regression/tests/zeropad.c: added pdata test
2683         * .version: bumped to 2.4.6
2684
2685 2004-10-17 Borut Razem <borut.razem AT siol.net>
2686
2687         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2688         as a part of nightly build
2689
2690 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2691
2692         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2693         WREG holds the first byte function parameters,
2694         * (aopForSym): take special case for symbols which are in FARSPACE
2695         but in CODESPACE too,
2696         * (assignResultValue): modified to take into account _G.useWreg,
2697         * (genCall): don't use wreg for parameter passing when function is
2698         declared as reentrant, too, added optimization INCF to stack
2699         pointer when stack parameter count is 1,
2700         * (genFunction, genEndFunction): refurnished and fixed to not using
2701         wreg for passing parameters when function has varargs or is
2702         reentrant, fixed bug with symbol name compare for generating
2703         functions in absolute address,
2704         * (pic16_storeForReturn): refurnished,
2705         * (genCmp): began writing a new version of the function, not ready
2706         yet, therefore it is disabled,
2707         * (genAssign): do not read code memory when assigning a function to
2708         a pointer function,
2709         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2710         array of characters, not pointer,
2711         * (pic16initialComments): in debug mode emit an .ident directive for
2712         the assembler,
2713         * (_process_pragma): emit a new warning type (internal to pic16)
2714         when setting stack to default length, emit a similar warning when
2715         placing a function at absolute address and address is not word aligned
2716         * (_pic16_parseOptions): added 'return TRUE' statement,
2717         * (_pic16_linkEdit): if compiling a source, then add the source's
2718         file object, first in the list of objects to link,
2719
2720 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2721
2722         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2723         * src/pic/main.c : removed VC warning.
2724         * src/pic/gen.c : changed comment.
2725
2726 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2727
2728         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2729         reference to a deprecated symbol _GPTRREG was causing failure to
2730         link. Thanks G. M. Gallant for the info.
2731
2732 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2733
2734         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2735         comments for Bugs item #954788.
2736
2737 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2738
2739         * src/pic16/device.c (pic16_dump_gsection,
2740         * pic16_groupRegistersInSection): handle symbols declared to be in
2741         access bank differently,
2742         * src/pic16/gen.c (struct _G): added field resDirect,
2743         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2744         send values read from stack directly to result and don't allocate
2745         temporary values,
2746         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2747         same registers,
2748         * (pic16_sameRegsOfs): NEW,
2749         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2750         free because they were not allocated from temporary pool,
2751         * pic16_popRegFromString): workaround to fix a problem with
2752         allocating variables twice or never,
2753         * (genGenPointerGet): using PRODL instead of FSR0H,
2754         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2755         instead of FSR0H,
2756         * (genAssign): take advantage of the _G.resDirect flag,
2757         * (genCast): around line 11844, use mov2f instead of directly
2758         MOVFF'ing between operands to account for literal values,
2759         * src/pic16/genutils.c: some new debug functions for gpsim have been
2760         added,
2761         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2762         float with integer part only,
2763         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2764         place variables in access bank
2765         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2766         updated sources to reflect recent changes in gen.c
2767
2768 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2769
2770         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2771         sources that searched for headers in installation path, now the
2772         device/include/pic16 is used,
2773         * src/pic16/glue.c (pic16glue),
2774         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2775         .line directives if not in debug mode, this suppresses assembler's
2776         warnings for ignored directives
2777
2778 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2779
2780         * src/port.h: made reset_regparms prototype void parameter explicit.
2781         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2782         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2783         * doc/sdccman.lyx: documented warning disabling and how to use
2784           printf_large to make it print floats.
2785         * device/include/stdbool.h: NEW
2786         * device/lib/_atof.c,
2787         * device/lib/_divuint.c,
2788         * device/lib/_divulong.c,
2789         * device/lib/expf.c,
2790         * device/lib/printf_large.c,
2791         * device/lib/sincosf.c,
2792         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2793         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2794           a completely reentrant lib.
2795
2796 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2797
2798         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2799         * device/include/pic16/stdio.h: fixed bug with colon
2800
2801 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2802
2803         * device/include/pic16/stdio.h,
2804         * device/include/pic16/stdlib.h,
2805         * device/include/pic16/math.h: NEW
2806         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2807         declared as _naked to reduce overhead
2808         * device/lib/Makefile.in (target port-specific-objects-pic16):
2809         changed * to *.* so to ignore the CVS directory,
2810         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2811         stacked variables back in stack,
2812         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2813         corruption
2814
2815 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * .version: bumped version number to 2.4.5
2818         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2819         * support/Util/SDCCerr.c (messages structure): added entry for
2820         W_POSSBUG2
2821
2822         Large cumulative patch for pic16 port and libraries.
2823         * device/include/pic16/sdcc-lib.h,
2824         * device/include/pic16/stdarg.h,
2825         * device/include/asm/pic16/features.h,
2826         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2827         * device/include/pic16/float.h: changes reentrant keyword with
2828         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2829         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2830         updated target build-libraries to include objects from gptr,
2831         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2832         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2833         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2834         all function headings,
2835         * src/SDCCmain.c: added global parameter userIncDirsSet,
2836         * (parseCmdLine): when option -I is encountered add directory to
2837         userIncDirsSet too,
2838         * src/version.awk: added space between control and long,
2839         * src/pic16/NOTES: added some notes for the port,
2840         * src/pic16/gen.c: added prototype for mov2fp function,
2841         * (fReturnpic16[]): properly named return value registers,
2842         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2843         * (aopForSym): added code to handle symbols with onStack flag set,
2844         symbols onStack are allocated PTRSIZE bytes,
2845         * (aopFreeAsmop): handles special case where asmops are stack objects,
2846         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2847         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2848         added argument lock to trace flaws in allocating temporary registers
2849         when developing port,
2850         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2851         * (pic16_popRegFromString): reenabled allocating a direct register
2852         from string,
2853         * (assignResultValue): various beautifications,
2854         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2855         referenced function argument,
2856         * (genIpush): reenabled to allow stacked arguments, handles only
2857         ic->parmPush iCodes,
2858         * (genCall, genPcall): major changes to allow for variable argument
2859         functions, fixed a bug with falsely restoring stack pointer after
2860         returning from call,
2861         * (genFunction): pending code for critical function,
2862         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2863         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2864         * (genNearPointerGet): fixed bug with indirect reading, was always
2865         reading from INDF0
2866         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2867         pointers,
2868         * (genAddrOf): rewrote code to take address of a stacked function parameter
2869         * (genCast): fixed casting to generic pointer type,
2870         * src/pic16/gen.h: added AOP_STA,
2871         * (struct asmop): added field stk,
2872         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2873         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2874         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2875         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2876         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2877         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2878         generic pointers,
2879         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2880         and library paths,
2881         * (pic16_port structure): generic pointer size is set to 3,
2882         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2883         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2884         compiler warning,
2885         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2886         operand is an iTemp,
2887
2888 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2889
2890         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2891         * debugger/mcs51/simi.c: addapt new syntax of s51
2892
2893 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2894
2895         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2896         * src/pic16/pcode.c: commented out some calls to free() in order to
2897         fix bug #989576,
2898
2899 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2900
2901         * src/SDCCicode.h,
2902         * src/SDCCicode.c (isiCodeInFunctionCall),
2903         * src/avr/ralloc.c (selectSpil),
2904         * src/pic/ralloc.c (selectSpil),
2905         * src/pic16/ralloc.c (selectSpil),
2906         * src/ds390/ralloc.c (selectSpil),
2907         * src/hc08/ralloc.c (selectSpil),
2908         * src/xa51/ralloc.c (selectSpil),
2909         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2910         stack in the middle of a function call sequence (fixes bug #1020268)
2911         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2912         costs associated with the minimum switch case.
2913
2914 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2915
2916         * src/SDCC.lex: fixed bug #1030549
2917
2918 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2919
2920         * src/SDCCcse.h (struct cseDef),
2921         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2922         over a function call if the CSE is derived from a symbol whose
2923         address has been taken (fixes bug #1029883)
2924         * support/regression/tests/bug-1029883: a new regression test for
2925         this bug
2926
2927 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2928
2929         * src/hc08/gen.c (emitinline): fixed bug #1029778
2930         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2931         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2932         and starts toward RFE #905167)
2933
2934 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2935
2936         * src/pic16/gen.c (mov2f): New function to move an operand to
2937         another without considering if it is a literal or a register,
2938         * (pic16_sameRegs): don't check if they are both AOP_REG,
2939         * (AccRsh): removed andmask=0 lines,
2940         * (genLeftShift): duplicated to be improved in future versions,
2941         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2942         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2943         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2944         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2945         * (insertBankSwitch): fixed inserting banksel directives algorithm
2946         for instructions that follow a skip instruction, this fixes a report
2947         for broken subtraction code generation,
2948         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2949         iCode is a left op, just in case result and right share the same
2950         registers
2951
2952 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/hc08/main.c,
2955         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2956         preservation of HX
2957         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2958         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2959         on 2004-09-12; it was buggy
2960
2961 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2962
2963         * src/SDCCsymt.h: removed RESULT_CHECK
2964         * src/SDCCast.c,
2965         * src/SDCCglue.c,
2966         * src/SDCCval.c,
2967         * src/pic/glue.c,
2968         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2969
2970 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2971
2972         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2973         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2974         configuration values no more rejected by compiler, they are assigned
2975         to configuration registers with a warning message instead,
2976         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2977         the for-loop so last conf register is emitted too,
2978         * (_pic16_initPaths): link library libsdcc.lib by default,
2979         * (_hasNativeMulFor): modified test for multiplication according to
2980         Raphael Neider's remarks. Integer multiplication is also done with
2981         support functions,
2982         * device/include/pic16/pic18fregs.h: corrected type error in while
2983         testing and including 18f6720 header file
2984
2985 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2986
2987         * src/pic16/device.h (pic16_options): removed field use_crt,
2988         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2989         until an optimization to handle single bits is added,
2990         * (pic16_loadFSR0): moved before genUnpackBits,
2991         * (genAnd): some white lines removed,
2992         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2993         leave_reset flags in pic16_options when using crt modules,
2994
2995 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2996
2997         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2998           for bugs 898889 & 979599. Also used some safer print instructions.
2999
3000 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3001
3002         * src/pic16/device.h (pic16_options_t): added field use_crt,
3003         crt_name, no_crt,
3004         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3005         catch a probable future bug,
3006         * src/pic16/gen.c: aopIdx function commented out,
3007         * (genAssign): commented out old code which used aopIdx,
3008         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3009         code, added if conditionals to take into account the --use-crt
3010         command line options,
3011         * src/pic16/main.c (pic16_optionsTable): added new command line
3012         options, --use-crt= and --no-crt,
3013         * (_pic16_linkEdit): now the proper crt object is added in the
3014         linker command line except than when --no-crt is specified,
3015         * src/pic16/pcode.c,
3016         * src/pic16/pcode.h: added some structures and functions for a new
3017         optimization scheme to compansate for instruction overhead between
3018         same iCodes, this scheme is currently under development and is not
3019         working in any way,
3020         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3021         to && operator,
3022         * device/lib/pic16/startup/crt0i.c,
3023         * device/lib/pic16/startup/crt0iz.c: added global char variable
3024         __uflags to force the generation of an idata section
3025
3026 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3027
3028         * doc/Makefile,
3029         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3030         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3031
3032 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3033
3034         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3035         Frieder) and clarified the default code optimization mode
3036
3037 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3038
3039         * src/SDCC.lex (doPragma, process_pragma),
3040         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3041         "opt_code_size", and "opt_code_balanced"
3042         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3043         regrouped options by category, added support for category headers
3044         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3045         and "--opt-code-size"
3046         * doc/sdccman.lyx: documented these new options and pragmas
3047         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3048         preference into account
3049
3050 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3051
3052         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3053           geniCodePreDec): Fixed bug 904237 by generating a warning
3054         * src/SDCCerr.h,
3055         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3056
3057 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3058
3059         * src/pic/device.c : When no max ram set validate full memory range.
3060         * src/pic/pcode.c,
3061         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3062
3063 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3064
3065         * device/lib/_gptrget.c,
3066         * device/lib/_gptrput.c: updated comment
3067         * device/lib/calloc.c,
3068         * device/lib/free.c,
3069         * device/lib/malloc.c,
3070         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3071         * src/SDCCcse.c (cseBBlock),
3072         * src/SDCCicode.c (printOperand, geniCodeArray),
3073         * src/SDCCicode.h (struct operand): fixed bug 868103
3074         * support/regression/tests/bug-868103.c: added
3075         * src/SDCCast.c (searchLitOp),
3076         * src/SDCCcse.h (struct cseDef),
3077         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3078         * src/SDCCicode.h (struct operand),
3079         * src/SDCCsymt.h (struct sym_link),
3080         * src/avr/gen.c (hasInc),
3081         * src/ds390/gen.c (hasInc),
3082         * src/hc08/gen.c (genPlusIncr, hasInc),
3083         * src/mcs51/gen.c (hasInc),
3084         * src/pic16/glue.c (pic16_printIvalChar),
3085         * src/pic16/ralloc.c (regWithIdx),
3086         * src/xa51/gen.c (hasInc) : removed warnings
3087         * src/SDCCast.c (createBlock): added comment ???
3088         * src/hc08/ralloc.c: updated comments
3089
3090 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3091
3092         * doc/sdccman.lyx: updated section on switch statements, added
3093         section about semaphore locking
3094         * doc/Makefile: added option -info for latex2html
3095         * device/lib/_gptrget.c,
3096         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3097
3098 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3099
3100         * src/pic/device.h,
3101         * src/pic/device.c,
3102         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3103          maxram is less than 0x100.
3104
3105 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3106
3107         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3108
3109 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3110
3111         * src/port.h,
3112         * src/mcs51/main.c,
3113         * src/ds390/main.c,
3114         * src/z80/main.c,
3115         * src/hc08/main.c,
3116         * src/pic/main.c,
3117         * src/pic16/main.c,
3118         * src/avr/main.c,
3119         * src/xa51/main.c
3120         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3121         a jump table is the best form for a switch statement, including
3122         automatic insertion of missing cases to make the case range
3123         continuous. Developed in collaboration with Frieder Ferlemann.
3124
3125 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3126
3127         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3128         accumulator result if it needs sign extension
3129
3130 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3131
3132         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3133
3134 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3135
3136         * device/lib/gbz80/printf.c,
3137         * device/lib/z80/printf.c: removed define for NULL
3138
3139 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3140
3141         * as/xa51/xa_link.c,
3142         * device/examples/ds390/ow390/ad26.c,
3143         * device/examples/ds390/ow390/cnt1d.c,
3144         * device/examples/ds390/ow390/counter.c,
3145         * device/examples/ds390/ow390/ds2480.h,
3146         * device/examples/ds390/ow390/ds2480ut.c,
3147         * device/examples/ds390/ow390/findtype.c,
3148         * device/examples/ds390/ow390/gethumd.c,
3149         * device/examples/ds390/ow390/owllu.c,
3150         * device/examples/ds390/ow390/ownetu.c,
3151         * device/examples/ds390/ow390/swt12.c,
3152         * device/examples/ds390/ow390/swtloop.c,
3153         * device/examples/ds390/ow390/temp.c,
3154         * device/examples/ds390/ow390/temp10.c,
3155         * device/examples/ds390/ow390/thermo21.c,
3156         * device/examples/ds390/ow390/tinilnk.c,
3157         * device/examples/ds390/ow390/tstfind.c,
3158         * device/examples/serialcomm/windows/serial.cpp,
3159         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3160         * device/include/reg51.h: fixed line endings for cvs
3161
3162 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3163
3164         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3165         packRegsForAccUse, packRegisters): new accumulator register
3166         packing algorithm
3167         * support/regression/ports/hc08/support.c (_putchar): suppress
3168         warning of unused variable
3169         * src/SDCCicode.c: added SWAP entry to codeTable
3170
3171 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3172
3173         * device/lib/sprintf.c: forgot to add this file before previous commit
3174
3175 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3176
3177         * src/pic16/gen.c (genPackBits): added operand right in function
3178         parameters, load result directly if p_type is POINTER (that is
3179         called by genNearPointerSet)
3180         * (genUnPackBits): added operand left in function parameters,
3181         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3182         FSR0 if accessing bitfields,
3183
3184 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3185
3186         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3187           _print_format; updated printf, sprintf, vsprintf
3188         * device/include/asm/default/features.h: corrected comment/define
3189         * device/lib/Makefile.in: added sprintf.c
3190         * device/lib/libsdcc.lib: added sprintf module
3191         * device/lib/printf_large.c,
3192         * device/lib/vprintf.c,
3193         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3194           into these 3 files
3195         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3196         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3197         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3198           hc08 test
3199         * support/regression/tests/zeropad.c: define idata as data for hc08
3200
3201 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3202
3203         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3204         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3205         labels are referenced at least once (even if a reference is not found)
3206         * src/hc08/gen.c (emitcode): set isComment flag for comments
3207         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3208         loads), rules 6a..6b (optimize jumps to return)
3209
3210 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3211
3212         * device/lib/acosf.c (acosf),
3213         * device/lib/asinf.c (asinf),
3214         * device/lib/atanf.c (atanf),
3215         * device/lib/ceilf.c (ceilf),
3216         * device/lib/cosf.c (cosf),
3217         * device/lib/coshf.c (coshf),
3218         * device/lib/cotf.c (cotf),
3219         * device/lib/fabsf.c (fabsf),
3220         * device/lib/floorf.c (floorf),
3221         * device/lib/log10f.c (log10f),
3222         * device/lib/logf.c (logf),
3223         * device/lib/sinf.c (sinf),
3224         * device/lib/sinhf.c (sinhf),
3225         * device/lib/sqrtf.c (sqrtf),
3226         * device/lib/tanf.c (tanf),
3227         * device/lib/tanhf.c (tanhf),
3228         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3229         replaced all instances of "reentrant" in the library functions
3230         defined in math.h with this macro.
3231         * support/regression/tests/float_trans.c: reenabled test for hc08
3232
3233 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3234
3235         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3236         erroneously deleted
3237
3238 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3239
3240         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3241         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3242         multi-byte volatile operands are used
3243         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3244         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3245         initialization to area GSINIT0 so that it would always precede
3246         any static initializers in GSINIT
3247         * support/regression/tests/zeropad.c: fixed idata define for hc08
3248         * support/regression/tests/bug-927659.c,
3249         * support/regression/tests/float_trans.c: disabled tests for hc08
3250         pending missing library routines
3251         * .version: increased version number to 2.4.4 - hc08 port now passes
3252         regression tests
3253
3254
3255 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3256
3257         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3258         * Makefile.common.in,
3259         * as/Makefile,
3260         * as/hc08/Makefile.in,
3261         * as/mcs51/Makefile.in,
3262         * as/z80/Makefile.in,
3263         * debugger/mcs51/Makefile.in,
3264         * device/include/Makefile.in,
3265         * device/lib/Makefile.in,
3266         * doc/Makefile,
3267         * link/Makefile,
3268         * link/z80/Makefile.in,
3269         * packihx/Makefile.in,
3270         * sim/ucsim/main_in.mk,
3271         * sim/ucsim/avr.src/Makefile.in,
3272         * sim/ucsim/doc/Makefile.in,
3273         * sim/ucsim/gui.src/serio.src/Makefile.in,
3274         * sim/ucsim/hc08.src/Makefile.in,
3275         * sim/ucsim/s51.src/Makefile.in,
3276         * sim/ucsim/xa.src/Makefile.in,
3277         * sim/ucsim/z80.src/Makefile.in,
3278         * src/Makefile.in,
3279         * support/cpp2/Makefile.in,
3280         * support/librarian/Makefile,
3281         * support/makebin/Makefile: added DESTDIR to the install path proposed
3282         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3283         * doc/sdccman.lyx: added DESTDIR documentation
3284
3285 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3286
3287         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3288         instruction for interrupt handlers, use fast returns when returning
3289         from high priority interrupts
3290
3291 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3292
3293         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3294         code generation
3295         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3296         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3297         bugs, ported much of Bernhard's code from mcs51
3298         * src/mcs51/gen.c (genSend),
3299         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3300         than one when calling a reentrant function
3301         * device/lib/_mullong.c: defined an alternate struct layout for big
3302         endian ports (hc08)
3303
3304 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3305
3306         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3307         test
3308
3309 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3310
3311         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3312         are sane and complete before asking the port its prefered parameter
3313         passing method (fixes bug #1017633)
3314         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3315         and _ret3
3316
3317 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3318
3319         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3320         problem in bitfields >= 8 bits.
3321
3322 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3323
3324         * src/SDCCsymt.c: undid changes that were not meant to be committed
3325
3326 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3327
3328         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3329
3330 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3331
3332         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3333           copied and wrong bit got inverted
3334
3335 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3336
3337         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3338         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3339         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3340         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3341         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3342         assignments to bitfields at known addresses
3343         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3344         reads from bitfields at known addresses
3345         * src/hc08/ralloc.c (packRegisters),
3346         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3347         genhc08Code): optimize pointer get values used as conditionals
3348         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3349         and branch
3350
3351 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3352
3353         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3354         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3355         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3356         as conditionals
3357
3358 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3359
3360         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3361
3362 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3363
3364         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3365         related problems
3366
3367 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3368
3369         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3370
3371 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3372
3373         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3374         mcs51 port
3375
3376 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3377
3378         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3379
3380 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3381
3382         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3383         cases use more compact code.
3384
3385 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3386
3387         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3388
3389 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3390
3391         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3392
3393 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3394
3395         * src/SDCCsymt.h,
3396         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3397         parameter of changePointer() from symbol* to sym_link*
3398         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3399         * src/SDCCsymt.c (compareType): void* type is castable to other
3400         pointers, but not necesarily an exact match.
3401         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3402         is no longer blindly treated as an exact match.
3403         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3404
3405 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3406
3407         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3408
3409 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3410
3411         * src/pic/gen.c,
3412         * src/pic/pcode.c,
3413         * src/pic/ralloc.h,
3414         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3415
3416 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3417
3418         * src/pic/device.c,
3419         * src/pic/device.h,
3420         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3421
3422 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3423
3424         * src/mcs51/gen.c (emitcode): fixed bug #992819
3425
3426 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3427
3428         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3429           there's no need to make it worse
3430
3431 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3432
3433         * src/mcs51/ralloc.c (deassignLR),
3434         * src/ds390/ralloc.c (deassignLR),
3435         * src/hc08/ralloc.c (deassignLR),
3436         * src/z80/ralloc.c (deassignLR),
3437         * src/pic/ralloc.c (deassignLR),
3438         * src/pic16/ralloc.c (deassignLR),
3439         * src/avr/ralloc.c (deassignLR),
3440         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3441         rlivePoint): fixed another part of bug #971834
3442
3443 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3444
3445         * src/z80/main.c: enabled "critical" keyword
3446         * src/z80/mappings.i,
3447         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3448         functions (fixes bug #979646)
3449         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3450
3451 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3452
3453         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3454           such as c:\mydir.
3455
3456 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3457
3458         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3459           doesn't disable too much optimizations
3460
3461 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3462
3463         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3464
3465 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3466
3467         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3468
3469 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3470
3471         * src/pic/gen.c tidied up tabs
3472         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3473         * src/pic/main.c tidied up tabs
3474         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3475         * src/pic/pcoderegs.c tidied up tabs
3476         * src/pic/ralloc.c tidied up tabs
3477
3478 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3479
3480         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3481         to S_FIXED for pic16 port and when symbol is not in level 0,
3482         allocate for S_REGISTER storage class and pic16 port, too,
3483         * src/pic16/device.h: prototype for checkSym,
3484         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3485         * (pic16_assignConfigWordValue): test the value and the mask to
3486         validate that the value is suitable for the configuration word,
3487         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3488         collect extern declared symbols, don't emit symbol twice, check
3489         first if symbol is in publics set first,
3490         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3491         * added command line '--fstack' which enables an experimental
3492         feature for stack access, too buggy to be used yet...
3493         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3494         * (pic16_allocDirReg): when register has storage class S_REGISTER
3495         allocate in pic16_dynAccessRegs,
3496         * device/include/pic16/pic18f????.h: modified configuration word
3497         naming convention, words started as CONFIG0H but should be CONFIG1H
3498
3499 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3500
3501         * device/include/mcs51reg.h: fixed bug 970993
3502
3503 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3504
3505         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3506         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3507         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3508         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3509         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3510         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3511           error/warning numbers,
3512           added function setWarningDisabled()
3513         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3514         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3515           _memcmp.c _memmove.c calloc.c realloc.c free.c
3516         * support/regression/tests/malloc.c: added tests for new functionality
3517         * support/regression/tests/zeropad.c: added tests for truncated initializers
3518           and initialized char arrays starting with '\x0'
3519         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3520
3521 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3522
3523         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3524
3525 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3526
3527         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3528         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3529         peephole 177.e. Thanks to anonymous
3530
3531 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3532
3533         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3534         function isn't used in the source but referenced as a
3535         variable initializer then declare it as extern in .asm file
3536
3537 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3538
3539         * .version: increased version number to 2.4.3
3540
3541         Adding version extension according to ChangeLog CVS revision
3542         * src/Makefile.in (target all): added dependency 'version.h'
3543         * (rule version.h): added rule to create version.h from ChangeLog,
3544         * (rule dep): added dependency version.h,
3545         * src/version.awk: AWK script to create version.h
3546         * src/SDCCdwarf2.c (dwWriteModule),
3547         * src/SDCCglue.c (initialComments),
3548         * src/SDCCmain.c (printVersionInfo): modified to write after
3549         version string the version extension number,
3550         * src/SDCCutil.c: included "version.h"
3551         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3552         number,
3553         * src/SDCCutil.h: added prototype for getBuildNumber
3554
3555         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3556         includeDirsSet, too,
3557         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3558         const char [] is found in function prototype...
3559
3560         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3561         moving to WREG with source is already in WREG,
3562         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3563         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3564         * (aopForSym): stack'ed symbols are partially supported, added
3565         if-clause to support symbols in FARSPACE,
3566         * (sameRegs): added test for AOP_ACC to see if registers are same,
3567         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3568         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3569         * (pic16_popRegFromString): will not allocate a new register if it
3570         doesn't find one by name, bug may have introduced...
3571         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3572         * (genIpush): revived to use pic16 port's stack,
3573         * (genAddrOf): added incomplete case for stack'ed operand,
3574         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3575         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3576         can handle multibyte operands,
3577         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3578         * (pic16initialComments): added message for MPLAB compatibility
3579         mode enabled,
3580         * src/pic16/main.h: prototype for pic16_mplab_comp,
3581         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3582         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3583         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3584         because of increased complexity of procedure,
3585         * (_process_pragma): stack pragma changed to format 'stack pos len',
3586         emit symbol '_stack_end' to conform with gplink,
3587         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3588         to search for register,
3589         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3590         PO_GPR_REGISTER,
3591         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3592         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3593         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3594         case for PO_GPR_REGISTER,
3595         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3596         dies, the new era is ahead !...
3597         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3598         pic16_dynInternalRegs,
3599         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3600         * (pic16_allocDirReg): minor optimizations and bug fixes,
3601         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3602
3603         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3604         load stack and frame pointer with address of 'stack_end' symbol
3605
3606 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3607
3608         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3609         without source code but only variable initializers
3610
3611 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3612
3613         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3614         external are not declared as extern to reduce overhead while linking
3615
3616 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3617
3618         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3619
3620 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3621
3622         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3623           Yee Keat for the patch
3624         * src/SDCCast.c (decorateType): fixed bug #979599
3625         * src/ds390/gen.h: removed local fReturnSizeDS390
3626         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3627         * src/ds390/gen.c (genAnd, genOr, genXor),
3628         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3629
3630 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3631
3632         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3633         add relFilesSet to $3, manipulate $2 to handle linking of object
3634         files without source files in command line,
3635         * device/include/pic16 (all headers): added ID location macros,
3636         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3637         entries for ID location bytes,
3638         * (pic16_assignIdByteValue): NEW,
3639         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3640         added field dumpcalltree to pic16_options_t,
3641         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3642         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3643         emitting rFalseIfx label after check_carry label,
3644         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3645         pic16_emitDIRegs), NEW
3646         * (pic16glue): dump .calltree file when option --calltree found,
3647         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3648         * (_pic16_genAssemblerPreamble): emit ID locations after
3649         configuration registers,
3650         * (pic16_linkCmd): modifications of the link command,
3651         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3652         * (pic16_pCodeInitRegisters): don't init stack registers,
3653         * (pic16_findPrevInstruction): fixed bug,
3654         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3655         bug with immediate registers,
3656         * (buildCallTree): traces stack push and pop,
3657         * (pct2): dump also stack usage for each function,
3658         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3659         * (pic16_allocDirReg): various modifications,
3660         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3661         fixed to 1,
3662
3663 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3664
3665         * src/pic16/pcode.c: removed buggy double colon
3666
3667 2004-07-01 Borut Razem <borut.razem AT siol.net>
3668
3669         * support/scripts/sdcc.nsi: added include/pic16 to setup
3670
3671 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3672
3673         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3674         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3675         target 'clean',
3676         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3677         specific command line arguments. Also added sample lkr script
3678         for placing a variable at a specific memory bank.
3679         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3680         at a specific memory bank,
3681         * (pic16_dump_isection): fixed bug which caused string literals to
3682         be omitted when dumping idata section,
3683         * (pic16_groupRegistersInSection): added code to handle registers
3684         in specific memory banks,
3685         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3686         public, all references are renamed too,
3687         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3688         AOP_DPTR2,
3689         * (pic16_storeForReturn): added case to handle when dest is WREG,
3690         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3691         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3692         pic16_rel_udata, check to see if that register is marked as being
3693         a member of a specific memory bank,
3694         * (pic16_printIvalCharPtr): added code to add string literals either
3695         to code or the idata sections,
3696         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3697         also accept the 'udata' pragma,
3698         * src/pic16/main.h: new structure types sectName and sectSym
3699         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3700         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3701         * (pic16_findPrevInstruction): fixed, it returned nothing,
3702         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3703         instruction combinations,
3704         * (pic16_FixRegisterBanking): heavily reorganised,
3705         * (pic16_AnalyzeBanking): if generating banksel directives is
3706         disabled, then don't call FixRegisterBanking at all,
3707         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3708         completely removed,
3709         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3710
3711 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3712
3713         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3714         Phuah Yee Keat <yk.phuah AT nestac.com>
3715
3716 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3717
3718         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3719         correctly the IVT even if it is relocated to some other location
3720
3721 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3722
3723         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3724         * device/include/pic16/pic18f2220.h: NEW,
3725         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3726         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3727         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3728         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3729         nodefaultlibs, ivt_loc is the location of the interrupt vector
3730         table, and nodefaultlibs signs that default libraries should not be
3731         linked in link stage,
3732         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3733         according to --ivt-loc argument,
3734         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3735         when pragma stack is found,
3736
3737 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3738
3739         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3740         256 (range check), 257 (do while), 258.a-f (bit banging
3741         f.e. on 3-wire SPI bus)
3742
3743 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3744
3745         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3746         variables used exclusively within a loop
3747
3748 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3749
3750         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3751
3752 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3753
3754         * src/SDCClrange.c (computeClash): fixed bug #971834
3755
3756 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3757
3758         * src/mcs51/gen.c (genCmp): fixed bug #975903
3759         * src/hc08/gen.c (operandsEqu),
3760         * src/ds390/gen.c (operandsEqu),
3761         * src/z80/gen.c (operandsEqu),
3762         * src/pic/gen.c (operandsEqu),
3763         * src/pic16/gen.c (operandsEqu),
3764         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3765         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3766
3767 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3768
3769         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3770
3771 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3772
3773         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3774         default case in switch statement,
3775         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3776         to eliminate problem with initialisation of pointers, but problem
3777         still exists,
3778         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3779         * (emitStaticSegment): removed various lines emitting debug info,
3780         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3781         added processor registers for utilizing EEPROM,
3782         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3783         configurable and set 8
3784
3785 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3786
3787         * .version: increased version number to 2.4.2,
3788
3789         Cumulative patch for pic16 port
3790         * src/pic16/device.c: changed scheme to dump initial values for
3791         variables in idata segment, all print_idata* functions were removed,
3792         now the pic16_printIval* will be called,
3793         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3794         * _pic16_printPointerType, pic16_printPointerType,
3795         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3796         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3797         NEW, similar to the respective functions in SDCCglue.c,
3798         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3799         way, emitting hex bytes,
3800         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3801
3802 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3803
3804         * src/avr/ralloc.c (serialRegAssign),
3805         * src/xa51/ralloc.c (serialRegAssign),
3806         * src/pic/ralloc.c (serialRegAssign),
3807         * src/pic16/ralloc.c (serialRegAssign),
3808         * src/hc08/ralloc.c (serialRegAssign),
3809         * src/z80/ralloc.c (serialRegAssign),
3810         * src/ds390/ralloc.c (serialRegAssign),
3811         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3812
3813 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3814
3815         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3816         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3817
3818 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3819
3820         Cumulative patch for pic16 port:
3821         * src/pic16/device.h (typedef PIC16_device) modified fields for
3822         defining microcontrollers,
3823         * src/pic16/device.c: added new info for all devices in Pics16 array,
3824         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3825         to be optimised out by the pCode optimiser,
3826         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3827         specially, bug reported by G.M. Gallant,
3828         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3829         as force'd so that cannot be optimised out by pCode optimiser,
3830         * src/pic16/pcode.c,
3831         * src/pic16/pcodepeeph.c,
3832         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3833         they are disabled by default, but can be enabled explicit with
3834         command argument --denable-peeps, for testing,
3835         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3836         --pomit-ivt in COMPILE_FLAGS
3837
3838 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3839
3840         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3841           compilation on MSVC
3842
3843 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3844
3845         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3846
3847 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3848
3849         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3850         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3851
3852 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3855         would only assign 0x300001 register.
3856
3857 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3858
3859         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3860         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3861
3862 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3863
3864         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3865         for ds80c400
3866         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3867         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3868         added peephole 254 (left shift), 255 (jump table)
3869
3870 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3871
3872         * device/lib/Makefile.in: removed comment line with model-pic16,
3873         * (target port-specific-objects-pic16): the libraries and objects
3874         are copied to the build directory form the device/lib/pic16/bin
3875         directory
3876
3877         Cumulative patch concerning pic16 port:
3878         * library directory has been re-organized,
3879         * added support for PIC18F1220,
3880         * added headers and library sources for chips 18f1220,18f6520,
3881         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3882
3883         * configuration registers setting has changed, now each supported
3884         device has a complete description of the registers it uses,
3885         * all initialisations are moved to idata sections, these section
3886         can be absolute or relocatable,
3887         * fixed initialisation of codespace variables,
3888         * fixed warning about PCLATU and gpsim,
3889         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3890         * (genAssign): use table reads when assigning from variables in codespace,
3891         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3892         char/int variables placed in codespace,
3893         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3894         registers set in .asm file, no need for --pomit-config-words anymore,
3895         * (pic16glue): some 8051 legacy segments are commented out
3896         (to be removed completely),
3897         * added support for alternative assembler and linker with --asm=
3898         and --link= command line arguments,
3899         * peepholes are disabled automatically in the port, no need to
3900         specify on command line,
3901         * port supports natively char/int/long multiplication, but converts
3902         all divisions to support functions,
3903         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3904         to the file set in variable $2,
3905         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3906         strings in ASCII format and not in hex,
3907         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3908         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3909         allocate proper register if iCodes aren't temporary,
3910
3911 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3912
3913         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3914
3915 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3916
3917         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3918         is commented out
3919
3920 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3921
3922         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3923         computed address is reused
3924         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3925         multi-byte bitfields
3926
3927 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3928
3929         * src/z80/gen.c: (genArrayInit): must check for pointers too
3930
3931 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3932
3933         * support/regression/tests/zeropad.c: never meant to commit the
3934           nestedstruct test: removed, added check for GCC version
3935
3936 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3937
3938         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3939         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3940         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3941           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3942           bugs 928906 and 954082 half-empty initializers
3943         * src/SDCCsymt.h,
3944         * src/SDCCsymt.c (getAllocSize): added for above fix
3945         * src/z80/gen.c (genArrayInit): fixed bug 741044
3946         * support/regression/tests/zeropad.c: added tests
3947
3948 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3949
3950         * src/pic16/device.c (pic16_dump_section): corrected bug which
3951         caused some symbols of the libraries to be misplaced
3952
3953 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3954
3955         * src/pic16/glue.c,
3956         * src/pic16/ralloc.h,
3957         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3958         to fix conflict with pic port
3959
3960 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3961
3962         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3963         externs configuration variables,
3964         * src/pic16/ralloc.h,
3965         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3966         prototype in header, commented out some debug messages
3967
3968 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3969
3970         * src/pic16/glue.c,
3971         * src/pic16/main.c,
3972         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3973         for gpasm COFF object generation. Thanks to D. Hawkins for
3974         his patch info
3975
3976 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3977
3978         * src/ds390/main.c,
3979         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3980         Brock for spotting this)
3981         * src/ds390/gen.c (genEndFunction),
3982         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3983         interrupt handler and critical. Disable push/pop optimizations when
3984         peephole optimizations disabled.
3985
3986 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3987
3988         Updated pic16 library sources and headers.
3989         * device/lib/pic16/pic18f*/ ,
3990         * device/include/pic16/*.h: modified to handle structured SFR
3991         definitions
3992
3993 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3994
3995         * src/port.h (PORT structure): added hook initPaths, now each
3996         port can declare its own default search paths,
3997         which can been seen with the --print-search-dirs option,
3998         see pic16 port for example,
3999         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4000         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4001         * (doPrintSearchDirs): NEW, replaces in a central manner the
4002         printing of search dirs which was split in set*Paths functions,
4003         * (main): added call to port->initPaths and doPrintSearchDirs,
4004         * src/avr/main.c,
4005         * src/ds390/main.c,
4006         * src/hc08/main.c,
4007         * src/izt/i186.c,
4008         * src/izt/tlcs900h.c,
4009         * src/mcs51/main.c,
4010         * src/pic/main.c,
4011         * src/pic16/main.c: modified port structures to reflect addition of
4012         initPaths hook,
4013
4014         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4015         * (pic16_dump_section): for registers in same address reserve memory once,
4016         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4017         to no_banksel,
4018         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4019         result is greater in size than right or left,
4020         * (pic16_genUMult8X8_8): there are some cases where the result can
4021         be 16 bits size, so handle these,
4022         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4023         * (pic16_outBitC): modified to emit pcodes,
4024         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4025         or not,
4026         * (genDivOneByte): implemented algorithm to divide 8-bits,
4027         * (genCmp): uncommented goto, but issues still exist,
4028         * (genAnd): fixed a bug with variables >8bits,
4029         * (genPackBits): optimization added that uses BCF/BSF to change a
4030         single bit,
4031         * (genAssign): fixed bug when assigning floating point literals,
4032         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4033         __sdcc_gsinit_startup label,
4034         * src/pic16/main.c (_pic16_init): removed search directory
4035         initialisations,
4036         * (_pic16_initPaths): NEW, used to initialise search directories,
4037         * (_hasNativeMulFor): support functions for all except char/int
4038         multiplication, and char division,
4039         * (PIC16_port struct): modified entry for native mul support,
4040         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4041         no_banksel option,
4042         * (buildCallTree): call to register_usage is ifdef'ed out,
4043
4044 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4045
4046         * device/include/string.h: applied Stas Sergeev's patch to make this
4047         header file compatible with the preprocessor -Wundef option
4048         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4049         failure (fixes bug #941458)
4050
4051 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4052
4053         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4054         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4055         that the variable, not the function, should be static
4056         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4057         to be consistent with non-literal case
4058
4059 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/SDCCast.c (isConformingBody): fixed bug #949967
4062         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4063         convilong): fixed bug #952086
4064
4065 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/SDCCmem.c (allocVariables): fixed bug #955321
4068
4069 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4070
4071         * src/hc08/main.c (_hc08_genAssemblerEnd),
4072         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4073         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4074         completely eliminated the use of a temporary file
4075         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4076         when more than one file linked
4077         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4078
4079 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4080
4081         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4082         which fixes bug #543481
4083         * support/regression/tests/bug-751703.c: fixed comments left from a
4084         cut and paste error
4085         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4086         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4087         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4088         scopes
4089         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4090         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4091         are now changed to underscores in moduleName
4092
4093 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4094
4095         * as/mcs51/lkmem.c: better fix for bug #954173
4096
4097 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4098         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4099
4100         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4101         * device/include/c8051f000.h,
4102         * device/include/c8051f120.h,
4103         * device/include/c8051f300.h,
4104         * device/include/c8051f310.h,
4105         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4106         PWM16) and detab'ed
4107
4108 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4109
4110         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4111         and mailing lists, doc'ed --no-peep-comments, removed reference
4112         to knoppix (newest version has no LyX/LaTeX), other minor changes
4113         * src/SDCCglue.c (glue): save 2 bytes stack space with
4114         option --main-return. The ljmp could probably be avoided too
4115
4116 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4117
4118         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4119
4120 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4121
4122         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4123         * src/SDCCopt.c (isLocalWithoutDef),
4124         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4125         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4126         (credit to Maarten Brock for patch #949363, on which this is based)
4127         * support/regression/tests/bug-751703.c: some test cases of extern used
4128         within inner scopes.
4129
4130 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4131
4132         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4133         SPEC_STRUCT
4134         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4135         struct definitions
4136         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4137         dwWriteLabel): fix to create valid debugger symbols even when
4138         the module name has non-alphanumeric symbols in it
4139         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4140         when a variable's allocation has been optimized away
4141
4142
4143 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4144
4145         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4146         * src/hc08/main.c,
4147         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4148         * src/mcs51/main.c,
4149         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4150         * src/ds390/main.c,
4151         * src/z80/gen.c (z80_emitDebuggerSymbol),
4152         * src/z80/main.c,
4153         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4154         * src/pic/main.c,
4155         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4156         * src/pic16/main.c,
4157         * src/avr/gen.c (avr_emitDebuggerSymbol),
4158         * src/avr/main.c,
4159         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4160         * src/xa51/main.c,
4161         * src/SDCCdebug.c (emitDebuggerSymbol),
4162         * src/SDCCdebug.h,
4163         * src/port.h: added a debugger struct to the port struct. Added a
4164         callback for defining debugger symbols
4165
4166         * src/SDCCast.c (createLabel),
4167         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4168         with isitmp = 1
4169         * src/SDCCicode.h,
4170         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4171         iCode back to the ast for the function
4172
4173         * src/hc08/ralloc.c (hc08_assignRegisters),
4174         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4175         unneeded fields from the regs struct.
4176         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4177         pushReg() & pullReg() functions instead of emitcode()
4178
4179         * src/hc08/gen.c (genLabel, genhc08Code),
4180         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4181
4182         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4183         debugger hooks
4184
4185         * src/hc08/gen.c (genEndFunction, genhc08Code),
4186         * src/hc08/gen.h,
4187         * src/mcs51/gen.c (genEndFunction, gen51Code),
4188         * src/mcs51/gen.h,
4189         * src/ds390/gen.c (genEndFunction, gen390Code),
4190         * src/ds390/gen.h,
4191         * src/z80/gen.c (genEndFunction, genZ80Code),
4192         * src/z80/gen.h,
4193         * src/z80/z80.h,
4194         * src/pic/gen.c (genEndFunction, genpic14Code),
4195         * src/pic/gen.h,
4196         * src/pic16/gen.c (genEndFunction, genpic16Code),
4197         * src/pic16/gen.h,
4198         * src/avr/gen.c (genEndFunction, genAVRCode),
4199         * src/avr/gen.h,
4200         * src/xa51/gen.c (genEndFunction, genXA51Code),
4201         * src/xa51/gen.h,
4202         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4203         specific code to cdbFile.c and out of the backend code generators
4204
4205         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4206         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4207         starting address is now 0
4208
4209         * as/hc08/asm.h,
4210         * as/hc08/m08pst.c,
4211         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4212         assembler directive for DWARF support
4213         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4214
4215         * src/src.dsp,
4216         * src/Makefile.in,
4217         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4218
4219 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4220
4221         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4222         and inappropriate peephole optimization in jump tables
4223
4224 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4225
4226         * as/hc08/m08pst.c,
4227         * src/SDCCglue.c: sdccopt works for the hc08 port now
4228
4229 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4230
4231         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4232
4233 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4234
4235         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4236
4237 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4238
4239         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4240         rules
4241         * src/SDCCmain.c,
4242         * src/SDCCglobl.h,
4243         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4244         comments from the peephole optimizer replacement rules
4245         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4246         symbols
4247         * src/SDCCcse.c (updateSpillLocation),
4248         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4249         equivalents
4250         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4251         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4252         objects far pointers
4253
4254 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4255
4256         * src/SDCCsymt.h: a missing part of my last change
4257         * src/pic/ralloc.c (regTypeNum),
4258         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4259
4260 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/SDCCicode.h,
4263         * src/SDCCicode.c (aggrToPtrDclType),
4264         * src/SDCCptropt.h,
4265         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4266         ptrPseudoSymConvert),
4267         * src/pic/ralloc.c (regTypeNum),
4268         * src/pic16/ralloc.c (regTypeNum),
4269         * src/hc08/ralloc.c (regTypeNum),
4270         * src/ds390/ralloc.c (regTypeNum),
4271         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4272         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4273
4274 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4275
4276         * link/z80/lkmain.c (afile),
4277         * as/hc08/lkmain.c (afile),
4278         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4279         prevent a pointer problem when a filename has no directory and
4280         no extension specified.
4281
4282 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4283
4284         * link/z80/lkmain.c (afile): allow periods in directory names
4285         * link/z80/lkmain.c (afile),
4286         * as/mcs51/lkmain.c (afile),
4287         * as/hc08/lkmain.c (afile): allow linker script file to have an
4288         extension other than ".lnk"
4289         * link/z80/lklex.c (getfid),
4290         * link/z80/lkmain.c (parse),
4291         * as/mcs51/lklex.c (getfid),
4292         * as/mcs51/lkmain.c (parse),
4293         * as/hc08/lklex.c (getfid),
4294         * as/hc08/lkmain.c (parse): Support comments in the linker script
4295         file on lines by themselves and after filenames
4296
4297 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4298
4299         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4300
4301 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/z80/peeph-z80.def: removed some peephole rules that don't
4304         work with multibyte arithmetic (fixed bug #937126)
4305         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4306         to registers and not global variables
4307         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4308         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4309         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4310         checking for assignments not internally generated (fixed bug #931895)
4311         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4312         structure member (fixed bug #930072)
4313
4314 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4315
4316         * src/SDCCmain.c (linkEdit),
4317         * src/hc08/main.c (_hc08_parseOptions),
4318         * as/hc08/Makefile.in,
4319         * as/hc08/aslink.h,
4320         * as/hc08/asm.h,
4321         * as/hc08/m08pst.c,
4322         * as/hc08/lkrloc.c (relr, rele),
4323         * as/hc08/lkarea.c (lnkarea)
4324         * as/hc08/lkmain.c (afile, parse),
4325         * as/hc08/lkelf.c: support for ELF output
4326         * as/hc08/lks19.c (s19),
4327         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4328
4329 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4330
4331         * as/mcs51/lkihx.c: Fixed bug #899105.
4332
4333 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4334
4335         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4336         .dsp files from Unix to DOS.
4337
4338 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4339
4340         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4341         function pointers; we have been compliant for several months now.
4342         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4343         change that was accidently commented out
4344         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4345         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4346         bug #922319
4347
4348 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/hc08/gen.c: output of all of the internal debugging information
4351         is now controlled by the D() macro; it is disabled by default
4352
4353 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4354
4355         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4356         harder to keep the same registers during a CAST iCode
4357         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4358         long via int can be done in a single cast, if the signedness is
4359         correct.
4360         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4361         putchar() in tinibios.c in ds390's library
4362
4363 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4364
4365         * src/SDCCast.c (decorateType): fixed bug #898889,
4366         cast result of a literal complement too
4367         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4368         fixed check for bitfields
4369
4370 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4371
4372         * src/SDCCicode.c (geniCodeLogic): made it static,
4373         (geniCodeLogicAndOr): added in order to fix bug #905492,
4374         (ast2iCode): fixed bug #905492
4375         * support/regression/tests/bug-905492.c: added
4376         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4377         (processParms): fixed bug #927659: don't copy parms, this will clear
4378         decorated flag
4379         * support/regression/tests/bug-927659.c: added
4380
4381 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4382
4383         * src/SDCCast.c (addCast): don't cast float to char
4384         * device/lib/libsdcc.lib: added _memmove
4385
4386 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4387
4388         * device/lib/large/Makefile: fixed parallel execution by
4389         replacing `make` by `$(MAKE)`
4390
4391 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4392
4393         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4394         offsets (fixes bug #923936)
4395
4396 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4397
4398         * device/lib/small/Makefile: fixed parallel execution by
4399         replacing `make` by `$(MAKE)`
4400
4401 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4402
4403         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4404
4405 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4406
4407         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4408         * src/regression/Makefile: Regression test was not running.
4409
4410 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4411
4412         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4413         complement if possible
4414         * src/SDCCval.c (valComplement),
4415         * src/SDCCicode.c (operandOperation): fixed complement of literal
4416         * support/regression/tests/onebyte.c (testComplement): added
4417
4418 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4419
4420         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4421         return an optimized tree; actually replace actParm with the new tree
4422         * src/SDCCast.h: added some parantheses to remove side effects
4423         * support/regression/tests/bug-920866.c
4424
4425 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4426         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4427         Bit operands were not being handled properly in the pic14 port.
4428         (now src/regression/add.c passes again).
4429
4430 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4431
4432         * src/SDCC.y (labeled_statement): case and default no longer require
4433         a following statement (RFE #893037)
4434
4435 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4438         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4439         disabled (fixes bug #916294)
4440         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4441         "mov a,acc"; patch provided by Lenny Story
4442         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4443
4444 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4445
4446         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4447         functions
4448         * src/ds390/gen.c (genFunction, genEndFunction),
4449         * src/ds390/ralloc.c (ds390_assignRegisters),
4450         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4451         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4452         pushed if there are parameters passed on the stack. Also, a cleaner
4453         way to decide if r0/r1 should be pushed/popped. (Together they fix
4454         bug #918693)
4455
4456 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4457
4458         * doc/sdccman.lyx,
4459         * device/lib/mcs51/crtpagesfr.asm,
4460         * device/lib/mcs51/crtxinit.asm,
4461         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4462         to avoid confusion with Si Lab's SFRPAGE register.
4463
4464 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * src/SDCCglue.c (emitMaps): allow public sfr variables
4467         * src/SDCCglue.c (initialComments): include compiler build date
4468         with compiler version and put the timestamp of the generated
4469         assembly file on a serperate line to be less confusing.
4470         * src/port.h: added genInitStartup hook
4471         * src/avr/main.c,
4472         * src/ds390/main.c,
4473         * src/hc08/main.c,
4474         * src/pic/main.c,
4475         * src/pic16/main.c,
4476         * src/xa51/main.c,
4477         * src/z80/main.c: genInitStartup initialize as NULL (default to
4478         historical behaviour)
4479         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4480         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4481         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4482         library instead of hard coding it into the compiler.
4483         * support/regression/ports/mcs51-stack-auto/spec.mk,
4484         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4485         * device/lib/mcs51/Makefile,
4486         * device/lib/small/Makefile,
4487         * device/lib/large/Makefile,
4488         * device/lib/mcs51/crtpagesfr.asm,
4489         * device/lib/mcs51/crtstart.asm,
4490         * device/lib/mcs51/crtxclear.asm,
4491         * device/lib/mcs51/crtxinit.asm,
4492         * device/lib/mcs51/crtclear.asm,
4493         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4494         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4495         and into user configurable files.
4496         * device/lib/clean.mk: clean mcs51 directory too
4497         * support/regression/tests/longlit.c: added static to T1 declaration
4498         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4499         accesses in the initialization code
4500
4501 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4502
4503         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4504         OSCTRIMVAL as noted in bug #916008
4505
4506 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4507
4508         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4509         in loops with multiple exits (reported as incorrect registers
4510         used by Martin Helmling in Sdcc-user list)
4511
4512 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4513
4514         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4515         made ds390 register extensions look less like error messages
4516
4517 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4518
4519         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4520         reported by Adam Wozniak in Sdcc-user list
4521
4522 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4523
4524         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4525         arithmetic optimizations, added debug output
4526
4527 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4528
4529         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4530         * sdcc.spec: updated and split sdcc into 3 rpms
4531         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4532         needed for literals of LEFT_OP and '+'
4533         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4534         introduced RESULT_TYPE_NOPROM
4535         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4536         left shift
4537         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4538         limited promotion to int only for '*'
4539         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4540
4541 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4542
4543         * src/pic16/gen.c (genSkip),
4544         (genc16bit2lit), (gencjneshort): commented out
4545         (is_LitOp): new helper function, checks operand type
4546         (genCmpEq): rewritten
4547
4548 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4549
4550         * support/regression/tests/bug-908454.c: added
4551
4552 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4553
4554         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4555         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4556         (geniCodeCast): cosmetic, don't preserve bit storage class
4557         (geniCodeLeftShift): added promotion
4558         (geniCodeLogic): fixed regression
4559         * src/SDCCsymt.c (computeTypeOr): accept bits too
4560         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4561
4562 2004-03-07  Borut Razem <borut.razem AT siol.net>
4563
4564         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4565
4566 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4567
4568         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4569         version of pic16_genPackRegisters which does not check if ic is a
4570         CAST operator,
4571         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4572         function cause string1.c regression test fails
4573
4574 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4575
4576         * sim/ucsim/configure.in,
4577         * sim/ucsim/configure,
4578         * sim/ucsim/doc/Makefile.in: use docdir
4579         * src/SDCC.y: fixed sbit atrributes
4580         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4581         * src/SDCCast.c (decorateType): |^& need special promotion handling
4582         * src/SDCCast.h,
4583         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4584         * src/SDCCsymt.h (computeType),
4585         * src/SDCCicode.c: computeType() needs op
4586         * src/SDCCsymt.c (checkTypeSanity),
4587         * doc/sddman.lyx: "plain" bitfields are unsigned
4588         * src/SDCCsymt.c (computeTypeOr): added
4589         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4590         |^& ops
4591         * src/SDCCval.c (val*): computeType() needs op
4592         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4593         * support/regression/tests/onebyte.c: added tests for |^&
4594
4595 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4596
4597         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4598         for writing icode into asm output.
4599
4600 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4601
4602         * src/pic16/device.c: added some debug lines enabled
4603         with macro DEBUG_CHECK,
4604         * src/pic16/genarith.c: more debug in genPlus,
4605         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4606         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4607         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4608         * (aopForSym): onStack symbols are re-placed in data memspace,
4609         and onStack flag is cleared,
4610         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4611         copy temporary pcodeop,
4612         * (genPcall): added warning for not updating PCLATU,
4613         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4614         always true for pic16 port,
4615         * (genMultOneWord): NEW, supports integer multiplication,
4616         * (genMult): modified to call genMultOneWord,
4617         * (ifxForOp): added warning when return NULL,
4618         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4619         flag is set before call to operandFromSymbol for implicit
4620         added structures,
4621         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4622         options.intlong_rent are set by default,
4623         * (_hasNativeMulFor): modified to allow port generation of integer
4624         multiplication,
4625         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4626         set regtype to REG_SFR for all registers, restricting seting the
4627         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4628
4629 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4630
4631         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4632         more than 500 times in the regression tests
4633
4634 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4635
4636         * support/Util/SDCCerr.h,
4637         * support/Util/SDCCerr.c,
4638         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4639         enumerator_list),
4640         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4641         for symbol conflicts.
4642         * support/valdiags/tests/enum.c,
4643         * support/valdiags/tests/tentdecl.c,
4644         * support/valdiags/tests/struct.c: expect possible error messages
4645         referring to original symbol definitions.
4646         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4647         * src/SDCCsymt.h,
4648         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4649
4650 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4651
4652         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4653
4654 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4655
4656         * src/pic16/ralloc.c (newReg): fixed bug #908929
4657
4658 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4659
4660         * src/ds390/gen.c: added missing #include "main.h"
4661
4662 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4663
4664         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4665         checking if symbol is already in set,
4666         * src/pic16/device.h: prototype for checkAddSym,
4667         * src/pic16/gen.c: (_G): added entry interruptvector,
4668         * (assignResultValue): removed some commented out lines,
4669         * (genFunction): check for ISR via sym->type, absolute section for
4670         interrupt code is created via a new pBlock, the goto instruction is
4671         placed now correctly at the interrupt vector position, changed all
4672         references from ivec to _G.interruptvector,
4673         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4674         is the interrupt is a high priority one, same for return from ISR,
4675         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4676         externs to calls of checkAddSym,
4677         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4678         pic16_pcode_verbose flag is set,
4679         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4680         * src/pic16/pcoderegs.c: message about how many registers are saved
4681         will only be emitted if pic16_pcode_verbose flag is set,
4682
4683 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4684
4685         * src/ds390/ralloc.h,
4686         * src/ds390/ralloc.c (ds390_regWithIdx),
4687         * src/ds390/gen.c (emitcode),
4688         * src/ds390/main.h,
4689         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4690         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4691         ds390operandCompare, getRegsRead, getRegsWritten,
4692         initializeAsmLineNode): customized instruction size calculation for
4693         ds390, started basis for some register optimizations
4694         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4695         corresponding assembly output
4696         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4697         missing push/pop of r0/r1. Optimized push/pops
4698
4699 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4700
4701         * src/mcs51/main.c (instructionSize): fixed ACALL size
4702         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4703
4704 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4707         the sorting of rlist with NULL elements
4708         * (print_idataType, print_idata): NEW to create idata sections
4709         * src/pic16/device.h: idataSymSet new variable
4710         * src/pic16/gen.c (genFunction): fixed some bugs in string
4711         comparing, improved the absolute section creation for ISRs,
4712         added FSR0L/FSR0H in registers that are saved in an ISR,
4713         * (genInline): fixed the processing of inline snippets,
4714         now they undergo no process by the peephole optimizer
4715         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4716         are placed in idataSymSet,
4717         * (pic16emitStaticSeg): extern symbols are added in externs,
4718         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4719         switching when aboslute variables are placed in access bank memory
4720         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4721         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4722         commented out with #if,
4723         * (pic16_packRegisters): reintroduce the check for CAST because some
4724         symbols are not correctly handled,
4725         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4726         pCodeInstruction instead of pCode,
4727         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4728         pCodeAsmDir definition,
4729         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4730         directive, then the argument directive is emitted without the leading
4731         tab, hack for inline labels which must be in the first column,
4732         * (compareLabel,pic16_findNextInstruction),
4733         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4734         * (insertBankSwitch): modified for the new pCodeAsmDir,
4735
4736 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4737         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4738
4739         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4740         instance,
4741         * (pushSide): commented out with #if,
4742         * (assignResultValue): fixed some typos in saving
4743         registers,
4744         * (genPcall): FIXED and sync'ed with genCall,
4745         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4746         * (genNearPointerGet): fixed to handle some more cases,
4747         implementation scheme via table reads,
4748         * (genConstPointerGet): modified to access code memory correct,
4749         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4750         and improved to handle some cases
4751         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4752         instead of "RETLW" for init data
4753         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4754         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4755         variables are placed in access bank memory (<0x80 and >=0xf80),
4756         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4757         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4758         TBLWT_POSTDEC,TBLWT_PREINC
4759         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4760         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4761         directives
4762         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4763         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4764         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4765         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4766
4767 2004-02-29  Borut Razem <borut.razem AT siol.net>
4768
4769         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4770         support/Util/findme.h, support/Util/system.h: enhance binary relative
4771         search for lib and include by using findProgramPath()
4772
4773 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4774
4775         * src/SDCCpeeph.h,
4776         * src/SDCCpeeph.c (pcDistance),
4777         * src/port.h,
4778         * src/mcs51/ralloc.h,
4779         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4780         * src/mcs51/main.h,
4781         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4782         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4783         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4784         size calculation port specific, started basis for some register
4785         optimizations
4786         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4787         missing push/pop of r0/r1. Optimized push/pops
4788         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4789         * device/lib/_modsint.c (_modsint),
4790         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4791         and stack version so regression tests pass
4792
4793 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4794
4795         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4796         * src/SDCCast.c (decorateType): catch another small optimization
4797         with '?' operator
4798         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4799         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4800         modified to finally use computeType() all over SDCC,
4801         see Feature Request #877103
4802         * src/SDCCval.h: cosmetic
4803         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4804         valCompare(); regression tested in muldiv.c
4805         * support/regression/tests/muldiv.c (testMod): mod sign follows
4806         dividend only
4807
4808 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4809
4810         * src/SDCCast.c (decorateType): fixed bug #902362
4811         * doc/INSTALL.txt: fixed install instructions for win32
4812
4813 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4814
4815         * device/include/Makefile.in (install): fixed by replacing spaces
4816         by tabs
4817         * doc/README.txt,
4818         * doc/INSTALL.txt: updated for release
4819         * doc/sdccman.lyx: added warning for --xstack being buggy
4820
4821 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4822
4823         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4824         to eliminate build warnings.
4825         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4826
4827 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4828            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4829
4830         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4831         removed -penable-stack, added comment for stack pragma, added
4832         warning for not initializing the stack/frame registers, removed
4833         comment at interrupts section
4834
4835         Stack is made permanent, there is no ability to disable stack usage.
4836         * src/pic16/device.h,
4837         * src/pic16/device.c: removed all references to USE_STACK macro,
4838         * src/pic16/device.c (pic16_dump_section): when no elements in
4839         rlist, free rlist before return,
4840         * (pic16_dump_int_registers): NEW, internal registers are a new set
4841         of general purpose registers reused by each function,
4842         * (checkAddReg): returns 1 if registers is added to set,
4843         * (pic16_groupRegistersInSection): when a registers is of type
4844         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4845         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4846         SRCASECMP macro is moved here from device.c
4847         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4848         PO_PCLATU, PO_PRODL, PO_PRODH,
4849         * (pic16_pCodeOpType, genMinus,
4850         changed compares to "a" register, with AOP_ACC,
4851         * (pic16_genPlus): fixed some bugs and indented properly,
4852         * (pic16_addSign): changed size to size+offset in the MOVWF
4853         instruction,
4854         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4855         multiply 8-bit operand by literal, result is 8-bit,
4856         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4857         multiply 2 8-bit operand, result is 8-bit,
4858         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4859         genUMult8X*_16,
4860         * src/pic16/gen.c: changed accUse to contain WREG only,
4861         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4862         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4863         true, do not use immediate addressing any more unless sym is a
4864         pointer in codespace,
4865         * (aopForRemat): do not use immediate addressing when symbol not in
4866         codespace and when symbol's address is requested,
4867         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4868         accUse size (= 1),
4869         * (aopGet): added case for AOP_ACC and don't return "accumulator
4870         bug" but WREG instead,
4871         * (popGetTempReg): pushes contents of temporary register in stack,
4872         * (popReleaseTempReg): pops contents of temporary register from
4873         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4874         * (pic16_popGet): separated case AOP_ACC to return register WREG
4875         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4876         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4877         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4878         the use of immediate pointers to certain cases only.
4879
4880         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4881         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4882         * (assignResultValue, genCall, genRet): modified to use the new
4883         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4884         genPcall is still broken,
4885         * (genFunction): added code to create 'A' type pBlocks when
4886         interrupt functions are generated, code not extensively tested yet,
4887         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4888         * (genEndFunction): modified so ISRs pop stored registers from stack,
4889         * (genMultOneByte): cleanup,
4890         * (AccRsh): added flag andmask, to and result with appropriate mask,
4891         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4892         * (genDataPointerGet): fixed and reenabled its use,
4893         * (genNearDataPointerGet): bugs fixed,
4894         * (genDataPointerSet): bugs fixed,
4895         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4896         pic16_DumpSymbol, pic16_DumpOp,
4897         * src/pic16/genutils.h: function prototypes for the above functions,
4898         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4899         pointers,
4900         * (pic16emitRegularMap): many many many improvements, but needs a
4901         major cleanup,
4902         * src/pic16/main.c: enable_stack in pic16_options is removed,
4903         * (_pic16_parseOptions): removed command line options -penable-stack,
4904         * (_process_pragma): emit stack symbol only when stack pragma is
4905         processed,
4906         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4907         redirected to FSR0L/FSR0H pair,
4908         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4909         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4910         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4911         for immediates,
4912         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4913         * (dumpPicOptype): NEW,
4914         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4915         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4916         with movff instruction,
4917         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4918         added pic16_int_regs, some packRegsFor* functions are commented out,
4919         because produce errors,
4920         * src/pic16/NOTES: minor modifications
4921
4922 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4923
4924         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4925         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4926         --pack-iram.
4927         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4928         * as/mcs51/lkaomf51.c: fixed bug #895763
4929
4930 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4931
4932         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4933
4934 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4935
4936         * doc/sdccman.lyx: added details about the HC08 storage classes and
4937         interrupts, fixed the register usage info for z80 & gbz80
4938
4939 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4940
4941         * doc/sdccman.lyx: added more pic16 port documentation
4942         * device/include/pic16/: added header pic18fregs.h
4943
4944 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4945
4946         * doc/sdccman.lyx: added Vangelis' contribution
4947
4948 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4949
4950         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4951         extend to the next CALL or PCALL, not just to the next CALL.
4952
4953 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4954
4955         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4956
4957 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4958
4959         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4960         bug #895752 and a better fix for bug #716790
4961
4962 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4963
4964         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4965
4966 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4967
4968         * doc/sdccman.lyx: minor changes, minor changed
4969
4970 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4971
4972         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4973         which can't handle SDCC_NEWONEBYTEOPS,
4974         (geniCodeMultiply): removed conversion from mult to shift for pic14
4975         and pic16
4976
4977 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4978
4979         * src/hc08/gen.h,
4980         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4981         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4982         thus fixing bug #895406
4983
4984 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4985
4986         * device/lib/_modsint.c,
4987         * device/lib/_modslong.c: sign follows divisor only
4988         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4989         signs or signedness can be ignored
4990         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4991         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4992         added optimization for IFX,
4993         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4994         arguments;
4995         reenabled optimization for IFX, which was removed on 2004-01-11
4996         * src/SDCCast.h: added return type IFX
4997         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4998         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4999         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5000         SDCC_OLDONEBYTEOPS selects the old behaviour
5001         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5002         changed again and commented promotion rule
5003         * src/SDCCval.c (valDiv): promotion no longer necessary
5004         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5005         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5006         rewritten
5007         * support/regression/tests/onebyte.c: added
5008
5009 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5010
5011         * gen.c (genInline): reverted to old code for assemnling inline
5012         code because of bug reported James Chadd
5013
5014 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5015
5016         * ralloc.h: missing declarations from previous patch,
5017         seems that patch for ralloc.h was never applied, fixed
5018
5019 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5020            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5021
5022         * pcode.c,
5023         * pcode.h,
5024         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5025         indirect addressing. Marked FSR0 as deprecated
5026         * gen.c (pointerCode): commented out, not needed now
5027         (pic16_popGet2p): new MOVFF helper function
5028         (genGenPointerGet),
5029         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5030         (shiftRLong): removed duplicate debugging info
5031
5032 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5033
5034         * src/ds390/gen.c (genNearPointerGet),
5035         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5036         optimization with bits, but not bitfields.
5037         * src/ds390/ralloc.c (packRegisters),
5038         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5039
5040 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5041
5042         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5043
5044 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5045
5046         * src/SDCCsymt.h,
5047         * src/SDCCicode.c (operandFromSymbol),
5048         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5049         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5050         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5051         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5052         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5053         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5054         bug #892038
5055         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5056         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5057         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5058         * src/SDCCsymt.c (newSymbol),
5059         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5060         enumerator_list),
5061         * src/SDCCval.h,
5062         * src/SDCCval.c (newiList): fixed bug #885705
5063
5064 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5065
5066         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5067         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5068
5069 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5070
5071         * device/include/c8051f120.h,
5072         * device/include/c8051f300.h,
5073         * device/include/c8051f310.h: added/updated header files for Silicon
5074         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5075         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5076         in new section Submitting patches
5077
5078 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5079
5080         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5081         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5082         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5083         genGenPointerSet),
5084         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5085         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5086         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5087         genGenPointerSet),
5088         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5089         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5090         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5091         genGenPointerSet),
5092         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5093         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5094         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5095         genGenPointerSet): fixed bug #892400
5096         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5097         to eliminate build warnings.
5098         * src/SDCCast.c (processParms),
5099         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5100         fixed bug 751859
5101         * support/valdiag/valdiag.py: added GCC to the list of defines active
5102         when compiling with gcc
5103
5104 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5105
5106         * support/Util/SDCCerr.h,
5107         * support/Util/SDCCerr.c,
5108         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5109         with an incomplete type (fixed bug #883734)
5110         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5111
5112 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5115
5116 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5117
5118         * src/SDCCast.c (decorateType),
5119         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5120         function pointer implementation
5121         * support/regression/tests/funptrs.c: added tests to verify both forms
5122         of function pointers work correctly. Added tests to verify parameters
5123         are passed in the correct order.
5124
5125 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5126
5127         * device.c (regCompare): registers are sorted by ascending
5128         address and increasing size,
5129         * main.c (_pic16_finaliseOptions): removed the declaration
5130         of compiler macro MCU. Now a macro of the format pic18fxxxx
5131         will be defined from the command line
5132
5133 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5134             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5135
5136         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5137         PCOP_RLCF was overwritten!
5138         * gen.c (genSkip): commented out calls to pic16_emitcode,
5139         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5140         * (genlshTwo),
5141         * (genRRC): added debugging info,
5142         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5143         overwritten while shifting,
5144         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5145         overwritten while shifting,
5146         * (AccLsh),
5147         * (AccRsh),
5148         * (shiftLLeftOrResult),
5149         * (shiftRLeftOrResult),
5150         * (shiftRLong),
5151         * (shiftLLong): Implemented with pic16_emitpcode
5152         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5153         * (genLeftShift): Fixed bug, operand for shift by variable always
5154         was "and"ed with 0x0f,
5155         * (genLeftShiftLiteral),
5156         * (genrshTwo),
5157         * (genRightShiftLiteral): added debugging info,
5158         * (genrshFour): added comment,
5159         * (genRightShift): determined signedness from operand "left"
5160         instead of "result"
5161
5162 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5163
5164         * src/SDCCicode.c (geniCodeParms),
5165         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5166         function pointers, fixed function pointer bugs #861242 and #861896
5167
5168 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5169
5170         * device/include/c8051f000.h,
5171         * device/include/c8051f120.h,
5172         * device/include/c8051f300.h: added header files for Silicon
5173         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5174
5175 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5176
5177         * src/SDCCast.c (processParams): added new type flow and restructured
5178         (gatherAutoInit): added new type flow
5179         (addCast): cosmetic changes
5180         (getLeftResultType): added new type flow for array indices, patch
5181         provided by Stas, see FR #877103
5182         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5183         array index patch by Stas
5184         * src/SDCCast.h: added prototype getResultTypeFromType()
5185         * src/SDCCval.h,
5186         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5187         * src/pic/glue.c (pic14emitStaticSeg),
5188         * src/pic16/glue.c (pic16emitStaticSeg),
5189         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5190         for initialization of symbols
5191         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5192         * support/Util/SDCCerr.h:
5193         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5194         * .version: bumped version number to 2.3.8
5195         * device/include/Makefile.in (install),
5196         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5197         avoid warnings
5198
5199 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5200
5201         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5202         Slade Rich fixed an optimization bug
5203         * src/pic/pcodepeep.c,
5204         * src/pic/pcoderegs.c
5205         * doc/Makefile (install): added test for directory
5206
5207 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5208
5209         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5210         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5211         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5212         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5213         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5214         * as/mcs51/asexpr.c (term),
5215         * as/hc08/asexpr.c (term): fixed bug #887146
5216
5217 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5218
5219         * src/z80/gen.c (genMult): handle single byte result product
5220         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5221         DUMMY_READ_VOLATILE (fixed bug #886367)
5222
5223 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5224
5225         * support/regression/tests/libmullong.c: fixed logic, on little endian
5226         hosts we ended without a mullong_wrapper()
5227
5228 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5229
5230         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5231         virus/worm forged address usage.
5232
5233 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5234
5235         Fixed promotion, it should be done on AST level:
5236         * src/SDCCast.c (addCast): added promotion to int
5237         (decorateType): updated call to upCast()
5238         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5239         usualUnaryConversions()
5240
5241 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5242
5243         * support/regression/tests/literalop.c (mulWrapper): Added a
5244         wrapper to remove integer overflow warnings.
5245
5246         * support/regression/tests/float_trans.c: Made work on host.
5247
5248         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5249         location of sz80.
5250
5251         * support/regression/generate-cases.py (main): Changed from inline
5252         to a main method.
5253
5254         * doc/Makefile (install): Changed to depth first to get rid of
5255         missing directory install warning.
5256
5257         * as/Makefile (install-doc): Made work on Mac.
5258
5259 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5260
5261         * src/SDCCast.c: added an additional type flow in decorateType() of
5262         opposite direction, see feature request #860006; it's enabled at runtime
5263         by setting the environment variable SDCC_NEWTYPEFLOW
5264         * src/SDCCast.h: changed prototype of decorateType()
5265         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5266         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5267         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5268         see feature request #877103
5269         * src/SDCCval.c: updated call of decorateType()
5270         (valBitwise): fixed bug #882876
5271         (valMinus): added promotion
5272         (valLogicAndOr): result is unsigned
5273         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5274         * src/SDCCsymt.c (computeType),
5275         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5276         must not cause an unsigned operation
5277         * src/pic/glue (pic14emitRegularMap),
5278         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5279
5280 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5281
5282         * src/pic/pcode.c (PCodeID): commented out left over debug code
5283
5284 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5285
5286         * support/valdiag/tests/overflow.c: added shift tests
5287         * src/pic/device.c,
5288         * src/pic/gen.c,
5289         * src/pic/gen.h,
5290         * src/pic/glue.c,
5291         * src/pic/main.c,
5292         * src/pic/pcode.c,
5293         * src/pic/pcode.h,
5294         * src/pic/pcodepeep.c,
5295         * src/pic/pcoderegs.c,
5296         * src/pic/ralloc.c,
5297         * src/pic/ralloc.h: applied patch from Slade Rich;
5298         added support for multiple code pages and multiple RAM banks on the
5299         PIC 14 port. The ASM files now no longer simply assume all the
5300         code / RAM are in the same page / bank. This means the linker can
5301         safely allocate code/RAM of separate ASM files to different pages/banks.
5302         * doc/sdccman.lyx: added Slade's tips
5303         * src/mcs51/peeph.def: fixed bug #880768
5304
5305 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5306
5307         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5308         * src/SDCCast.c (decorateType): fixed bug #880197
5309
5310 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5311
5312         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5313         getopt.h.
5314
5315         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5316         strtof is not part of C89 and isn't included with Mac OS X.
5317
5318 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5319
5320         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5321         shiftL2Left2Result): fixed bug #879326
5322         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5323         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5324         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5325         address fetch for clr instruction
5326         * device/lib/hc08/_mulint.c: created optimized assembly version
5327         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5328
5329 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5330
5331         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5332         proposed in FR #877103
5333
5334 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5335
5336         * src/SDCCval.c (cheapestVal): added missing checks
5337         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5338         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5339
5340 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5341
5342         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5343         equal operands
5344
5345 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5346
5347         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5348         loaded with the linker search paths (-L arguments) and the libraries
5349         to be linked with the current source (-l arguments). Changes
5350         currently will affect only the pic16 port.
5351         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5352         include path the port specific paths and port specific libraries,
5353         * gplink command now contains the $3 argument,
5354         * src/pic16/device.h,
5355         * src/pic16/device.c,: structure PIC_device is made public and
5356         renamed to PIC16_device, the same for variable Pics which is renamed
5357         to Pics16. Updated all references to them.
5358         * src/pic16/glue.c (pic16glue): corrected bug with code
5359         initialization which bypassed the variable initializations block.
5360
5361         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5362         COMPILE_FLAGS and added the --nostdinc option
5363
5364 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5365
5366         * device/include/mc68hc908jb8.h: Register defs for another member
5367         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5368
5369 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5370
5371         Documenting changes from previous commits.
5372         * configure.in (version 1.56),
5373         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5374         when generating output files to configure the pic16 library,
5375         but now I've commented it out, since gputils aren't installed in the
5376         SF compile farm, so library won't compile
5377
5378         * device/lib/Makefile.in (version 1.56): initially I've added in
5379         target 'all' the prerequestive 'model-pic16' so it compiled the
5380         pic16 library, but now I've commented it out for the same reasons
5381         above,
5382         * added targets 'model-pic16' and 'objects-pic16' to compile the
5383         library
5384         * added target 'port-specific-objects-pic16' to handle the
5385         generated libraries and copy them into the build/ directory
5386         * added target 'clean-intermediate-pic16' to clean intermediate
5387         files into pic16 directory
5388         * in target 'installdirs' added line to create directory pic16 in
5389         the installation path
5390
5391         * device/include/Makefile.in (version 1.11): in target 'install'
5392         added lines to copy all header files to installation path,
5393         * in target 'installdirs' added line create directory for pic16
5394         headers in the installation path
5395
5396 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5397
5398         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5399          a function call
5400
5401 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5402
5403         * configure,
5404         * device/lib/configure.in,
5405         * device/lib/configure: fixed for autoconf 2.57
5406
5407 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5410         option so that it actually works. Made it specific to the z80, since
5411         the gbz80 doesn't have these kinds of I/O ports.
5412
5413 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5414
5415         * device/include/z180.h,
5416         * device/lib/_memcpy.c,
5417         * device/lib/_memmove.c,
5418         * device/lib/_mulint.c,
5419         * device/lib/ser_ir.c,
5420         * device/lib/ser_ir_cts_rts.c,
5421         * device/lib/_strcmp.c,
5422         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5423         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5424         portmode; added deprecation warning for bank= and protmode= forms.
5425         Also, guard against buffer overflow.
5426         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5427
5428 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5429
5430         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5431         changed interrupt vector table generation to only emit declared vectors.
5432         * device/include/Makefile.in: added missing backslash
5433         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5434
5435 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5436
5437         Mainly changes to support compilation of the device libraries
5438         * src/pic16/device.c: stack is allocated via symbol and not
5439         via literal number. The symbol is placed in the corresponding
5440         position of the data ram
5441         * (pic16_dump_section): relocatable and absolute uninitialized
5442         data are now emitted in sorted order to reduce section naming,
5443         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5444         weren't marked as being in the access bank,
5445
5446 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5447
5448         Added portion of GNU PIC Library under the directory
5449         device/include/pic16 and device/lib/pic16. These files
5450         contain the declarations of SFRs for the PIC18Fxx2 devices.
5451         The directory is initialized via configure from toplevel.
5452
5453 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5454
5455         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5456         the spilllocations to be compared correctly
5457
5458 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5459
5460         * src/SDCCast.c (decorateType): fixed bug introduced today
5461
5462 2004-01-12  Borut Razem <borut.razem AT siol.net>
5463
5464         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5465         doc/sdccman.lyx: upper case pragmas are deprecated
5466
5467 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5468
5469         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5470         in simpler and even better code
5471
5472 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5473
5474         * src/SDCCicode.c (operandOperation): fixed bug #874819
5475         * src/SDCCast.c (decorateType): fixed
5476         char foo (unsigned long ul) { return ul > 0; }
5477
5478 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5479
5480         * doc/sdccman.lyx: Moved and added some sections, small changes
5481         all over. Telling LaTeX to be less strict with word spacing
5482         to better keep the right margin. Changed some notes about
5483         maintainance of the ports in section 3.2.1 - is it OK like this?
5484
5485 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5486
5487         SDCC source changes:
5488         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5489         convilong): modified to inform the pic16 port that builtin functions
5490         are external
5491
5492         PIC16 PORT specific changes:
5493         * src/pic16/device.c pic16_dump_equates() added,
5494         processor registers declared internally by the port are emitted in
5495         the translation as equates,
5496         * src/pic16/gen.c: inline code is passed unprocessed to the
5497         translation,
5498         * (pic16_popGetLit2): fnuction modified to take second operand as
5499         pCodeOp pointer and not as literal,
5500         * (popRegFromIdx): prefixed with pic16_,
5501         * (pic16_popCombine2): modified to receive already allocated pCode
5502         operands,
5503         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5504         * (genFunction): initializes local stack frame and pushes on stack
5505         all the registers used by this function,
5506         * (genEndFunction): restores all registers from stack and restores
5507         stack frame,
5508         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5509         improvements,
5510         * (pic16glue): changed the program startup sequence,
5511         * added new dbName code 'A' for functions placed in absolute section
5512         * src/pic16/main.c: added function attribute _naked,
5513         * added pragma 'code' to place a fnuction at an absolute address,
5514         * added command line arguments --debug-ralloc and --pcode-verbose,
5515         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5516         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5517         * (pic16_newpCodeOpLit2): modified to take the second operand as
5518         pCodeOp pointer,
5519         * (pic16_printpBlock): modified to emit each function in a separate
5520         section,
5521         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5522         UPPER for immediate operands,
5523         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5524         instruction,
5525         * src/pic16/peeph.def: all peepholes with movff are commented out,
5526         because there is a problem in the pcode peep optimizer,
5527         * src/pic16/ralloc.c: the register allocator can now reuse local
5528         function symbols for another function. This saves register usage.
5529         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5530
5531         Added file src/pic16/NOTES with information about program writing on
5532         the current port version.
5533
5534 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5535
5536         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5537         and peephole 252 (array access)
5538
5539 2004-01-09  Borut Razem <borut.razem AT siol.net>
5540
5541         * src/SDCCmain.c : fixed #872250: -l command line defined library
5542           files are scanned before standard library files
5543
5544 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5545
5546         * src/SDCCast.c (decorateType): fixed bug #874046
5547
5548 2004-01-09  Borut Razem <borut.razem AT siol.net>
5549
5550         * support/scripts/sdcc.nsi: remove previous installation
5551
5552 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5553
5554         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5555         bytes for last interrupt vector (mcs51)
5556         * sdcc.spec: fixed typo
5557
5558 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5559
5560         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5561         gen51Code): more efficient parameter receive for --model-large
5562         ("bug" #845294)
5563
5564 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         * src/ds390/main.c,
5567         * src/z80/main.c: added missed needLinkerScript flags (more than
5568         one port structure defined in these file)
5569         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5570         bug #795325
5571
5572 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5573
5574         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5575         * src/port.h: added flag needLinkerScript in port->linker
5576         structure to inform whether to create a .lnk file or not,
5577         * src/avr/main.c,
5578         * src/ds390/main.c,
5579         * src/hc08/main.c,
5580         * src/mcs51/main.c,
5581         * src/pic/main.c,
5582         * src/pic16/main.c,
5583         * src/xa51/main.c,
5584         * src/z80/main.c: changed appropriately to configure
5585         needLinkerScript flag
5586         * src/pic/gen.c,
5587         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5588         * src/pic/glue.c: added variable udata_section_name to
5589         override default uninitialized data segment definition for
5590         devices only with SHAREBANK memory (reported from Erik Epetrich)
5591         * (pic14emitOverlay): modified to emit a commented overlay segment
5592         directive when no overlay data exist
5593         * (picglue): modified to emit uninitialized data segment
5594         according to udata_section_name
5595         * src/pic/main.c (_pic14_parseOptions): added command line
5596         options --udata-section-name=[name] to override default
5597         udata definition name
5598         * modified _linkCmd and _asmCmd to include compiler passed
5599         arguments via -W option
5600         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5601         object file from '.rel' to '.o' in port->linker structure,
5602         changed size of fptr from 2 to 3 in port structure
5603
5604 2004-01-07  Borut Razem <borut.razem AT siol.net>
5605
5606         * support/scripts/sdcc.nsi: update PATH
5607         * support/scripts/sdcc.ico: craeted
5608
5609 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5610
5611         * device/include/Makefile.in: fix install
5612         * doc/Makefile: fix install
5613
5614 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5615
5616         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5617         in bug #860505
5618         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5619         how the function variable allocation summary is displayed; also
5620         include information about variables allocated to the overlay
5621         segment
5622
5623 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5624
5625         * as/mcs51/lkmain.c: Help about -Y option
5626         * as/mcs51/lkarea.c: Fixed gcc warnings
5627
5628 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5629
5630         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5631         fixed warning
5632         * support/valdiag/tests/overflow.c: added
5633         * src/SDCCast.c (decorateType),
5634         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5635         LEFT_OP (left shift)
5636
5637 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5638
5639         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5640         (default behaviour).
5641
5642 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5643
5644         A python script to validate compiler diagnostic messages. It can be
5645         used to verify that sdcc complains about bad c source code and
5646         gives a good location of the error.
5647         * support/valdiag/Makefile,
5648         * support/valdiag/valdiag.py,
5649         * support/valdiag/tests/*
5650
5651 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5652
5653         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5654         * src/SDCCsymt.c (newEnumType),
5655         * src/SDCCsymt.h
5656         * support/Util/SDCCerr.c,
5657         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5658         enum related bugs.
5659         * support/regression/tests/enum.c: added test for enum values that
5660         require at least 2 bytes of storage.
5661
5662 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5663
5664         * src/common.h: added ifndef/define/endif macros
5665         around the header file.
5666         Bug reported from Jesus Calvino-Fraga
5667
5668 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5669
5670         * sdcc.spec: updated
5671         * device/include/Makefile.in: don't install CVS directories
5672         * device/lib/Makefile.in: added removal of CVS directories after install
5673         * doc/Makefile: fixed install, added local_icons
5674         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5675         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5676         * src/ds390/gen.c (genRightShift): fixed bug #870788
5677         * src/SDCCast.c (decorateType): fixed bug #870781
5678
5679 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5680
5681         PIC16 port related changes:
5682         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5683         added variable stackPos,
5684
5685         * gen.c: genCall, assignResultValue: added support for
5686         pushing/retrieving function parameters to/from stack,
5687         genFunction,genEndFunction: setup stack frame for the
5688         generated function,
5689         genAddrOf: will be changed according to bug 863624
5690
5691         * added files genutils.c and genutils.h which contain gen*
5692         debugged and optimised functions extracted from gen.c
5693
5694         * glue.c: added variable 'externs' which holds extern symbols,
5695         pic16emitRegularMap: is modified to properly handle relocatable
5696          symbols under the new scheme,
5697         pic16createInterruptVect: is modified
5698         pic16printPublics: is modified to emit 'global' assembler directives,
5699         added pic16_printExterns to print extern symbols,
5700         pic16glue: initializes stack/frame pointer in the beginning of
5701         the assembly output. Temporary hack, will be corrected later,
5702         because gplink yet does not support stack and SDCC does not
5703         yet support a type of crt0.o object to create the final binary.
5704
5705         * Removed many lines that contain 8051 legacy code.
5706         * The code is finally placed under a 'code' directive.
5707         * Added port specific options.
5708
5709         * _process_pragma: simplified since now we do not need *special*
5710         include file to define SFR registers. But a separate header
5711         will be needed. This will be developed later.
5712         * _pic16_parseOptions: added, parses port specific options:
5713         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5714         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5715         --preplace-udata-with=
5716
5717         * _pic16_setDefaultOptions: modified to initialize section names,
5718         but hack is temporarly out of order since it needs improvement.
5719         * _pic16_genAssemblerPreamble: configuration words are emitted by
5720         their address instead of their name. This part is incomplete and
5721         supports only the 18Fxx2 devices. Other devices will emit an error
5722         during assembly since they do not contain the same set of config
5723         registers
5724         * _pic16_genIVT: is modified,
5725
5726         * pcode.c: added definitions for some hardware registers that are needed
5727         for stack support
5728         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5729         All PCI entries are updated. Now LFSR is supported.
5730         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5731         * added pic16_newpCodeOpLit2 to support instructions with
5732         two literal arguments
5733         * pic16_pCode2str: corrected code that emits assembler instructions
5734         with two literal operands and those that have an access bit modifier
5735         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5736         this fixes a bug which caused some labels to be lost, when an
5737         assembler directive was added, i.e. banksel,
5738         * pic16_FixRegisterBanking: improved logic that causes the insertion
5739         of bank switching,
5740         * InlineFunction: functions that are called once, are not any more
5741         inlined. This can be a port option in the future,
5742
5743         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5744
5745         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5746         hold the corresponding uninitialized symbols,
5747         * pic16_allocProcessorRegister: registers have explicit marked the
5748         accessBank field,
5749         * pic16_allocInternalRegister: registers are explicit marked as
5750         not used,
5751         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5752         processing list, so bit registers were lost,
5753         *
5754
5755         * ralloc.h: added field 'accessBank' and original symbol operand
5756         in register definition,
5757         * removed the field isMapped from register definition,
5758
5759         ** Several functions have been removed from various sources:
5760         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5761         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5762         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5763         pic16_assignRelocatableRegisters
5764
5765         ** others have been introduced:
5766         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5767         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5768
5769 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5770
5771         * support/scripts/inc2h.pl: changed definition of BIT_AT
5772         to emit 'sbit at' instead of 'bit at'. This was a request.
5773
5774         PIC16 port related preliminary changes:
5775         * gen.c: prefixed function popRegFromString with
5776         pic16_ and all references to it corrected
5777         * pcode.c: all pic16_pc_* hardware registers prefixed
5778         with underscore (_),
5779         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5780         * ralloc.c: newReg(): when register is REG_SFR then
5781         set address to rIdx,
5782         pic16_allocProcessorRegister(): marks register wasUsed=0
5783         pic16_writeUsedRegs(): added a call to assign processor
5784         registers via pic16_assignFixedRegisters
5785
5786 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5787
5788         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5789         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5790         variables in unused register banks.  Also the SSEG is placed
5791         wherever there is enough space for it, and IDATA can be anywhere
5792         in internal RAM.  For now compile using -Wl-Y[stack_size].
5793         The mem file is different for this option as well, since it
5794         makes no sense of talking about DSEG lenght.
5795
5796 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5797
5798         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5799         in certain cases, e.g. when ROM assignment, patch provided
5800         from Albert den Haan.
5801
5802 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5803
5804         Many signedness and type propagation fixes:
5805         * src/SDCCicode.c: made geniCodeCast() static
5806         replaced SPEC_ by IS_ (cosmetic)
5807         (operandOperation): fixed div and mod operation
5808         (usualBinaryConversions): added support for promotion of char
5809         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5810         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5811         (geniCodeAdd): an array index will stay unsigned, even if promoted
5812         from char to int
5813         (geniCodeArray): ditto
5814         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5815         * src/SDCCsymt.c (computeType): added more support for char;
5816         promotion of char is selectable by promoteCharToInt, fixed signedness
5817         for all cases
5818         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5819         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5820         * src/SDCCval (val*): replaced signedness calculation by
5821         computeType()
5822         rearranged if-branches (cosmetic)
5823         (valShift): added warning W_SHIFT_CHANGED
5824         (valCompare): fixed problem with different types
5825         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5826         * support/regression/tests/literalop.c: added many cases
5827         * support/regression/tests/ast_constant_folding.c: changed finally to
5828         'unsigned int'
5829         * .version: new year, new version: 2.3.7
5830         * src/SDCCmain.c (main): applied patch #866468
5831         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5832         provided by Scott Bronson
5833         * doc/sdccman.lyx: updated documentation for sdcdb
5834         updated and added chapter tips
5835
5836 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * src/SDCCsymt.h: missing from yesterday's commits
5839
5840 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         * src/SDCC.y (struct_or_union_specifier),
5843         * support/Util/SDCCerr.c,
5844         * support/Util/SDCCerr.h: verify that struct & union tags are used
5845         as declared.
5846
5847 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5848
5849         * src/SDCCglobl.h: missing from yesterday's commits
5850
5851 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5852
5853         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5854         sft_attributes, struct_declaration, parameter_declaration,
5855         type_name, start_block, declaration_list),
5856         * src/SDCC.lex (check_type): support redefinition of typedef names
5857
5858 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5859
5860         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5861         aligned xdata arrays. Erik helped me with the if clause.
5862
5863 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5864
5865         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5866         warning
5867
5868 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5869
5870         * src/SDCCast.h,
5871         * src/SDCCast.c (newAst_),
5872         * src/SDCCicode.h,
5873         * src/SDCCicode.c (ast2iCode, newiCode),
5874         * src/SDCCglobl.h,
5875         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5876         expr, statement, expression_statement, selection_statement,
5877         iteration_statement, expr_opt, jump_statement): foundation for tracking
5878         sequence points
5879         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5880         point code too)
5881
5882 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * support/Util/SDCCerr.c,
5885         * src/SDCCast.h,
5886         * src/SDCCast.c (createCase, createDefault, decorateType),
5887         * src/SDCClabel.c (labelUnreach),
5888         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5889         to error messages.
5890         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5891         (with thanks to Stas Sergeev)
5892         * device/include/time.h,
5893         * device/lib/time.c (CheckTime): suppress unreachable code warning
5894
5895 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * src/SDCCast.c (createIvalCharPtr),
5898         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5899         bug #753752)
5900         * support/regression/tests/nullstring.c: tests for these two bugs
5901
5902 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5903
5904         * support/Util/SDCCerr.h,
5905         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5906         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5907         about storage class and 'at' used inside struct or union
5908         * src/SDCCBBlock.c (iCodeFromeBBlock),
5909         * src/SDCCcse.c (ifxOptimize),
5910         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5911         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5912         printIval, emitStaticSeg, emitOverlay),
5913         * src/SDCClabel.c (deleteIfx),
5914         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5915         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5916         gatherAutoInit, processParms),
5917         * support/Util/SDCCerr.h,
5918         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5919         reporting for post-parse errors.
5920
5921 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5922
5923         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5924         implicit casts via union; they don't work on big endian systems
5925         (possible fix for bug #861138)
5926
5927 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5928
5929         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5930         * src/mcs51/main.c: fixed the fix for bug #737001
5931
5932 2003-12-15  Borut Razem <borut.razem AT siol.net>
5933
5934         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5935
5936 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * support/makebin/makebin.c: put output in binary mode
5939
5940 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5941
5942         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5943         xdata and data memory on startup. Set the environment variable
5944         SDCC_NOGENRAMCLEAR to disable this.
5945         * src/mcs51/peephole.def,
5946         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5947         (allows non-interrupt and interrupt code to safely compete for a resource
5948         without the non-interrupt code having to disable interrupts)
5949
5950 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * src/SDCCicode.c (geniCodeAdd),
5953         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5954         with valFromType if type might be a pointer and host is big endian).
5955         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5956         types, not just integer types.
5957         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5958         multiply defined with mismatching "at" address.
5959
5960 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5963         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5964         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5965         with embedded nulls (fixed bug #753752)
5966
5967 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5968
5969         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5970         Apparently this did not see much testing (endless loop)
5971
5972 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5973
5974         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5975
5976 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5977
5978         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5979         gracefully handle NULL memmap pointers
5980
5981 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5982
5983         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5984         instead of deleting the iCode when an operand is volatile
5985         * src/z80/gen.c (genDummyRead),
5986         * src/mcs51/gen.c (genDummyRead),
5987         * src/ds390/gen.c (genDummyRead),
5988         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5989         not just IC_RIGHT
5990         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5991         * src/SDCC.y: fixed bug #850420
5992
5993 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5994
5995         Applied z80 i/o port patch from Peter Townson and fixed some operators
5996         to better handle operands in A register.
5997         * device/include/z180.h
5998         * src/SDCC.y
5999         * src/SDCCglue.c
6000         * src/z80/gen.c
6001         * src/z80/gen.h
6002         * src/z80/main.c
6003         * src/z80/peeph-z80.def
6004         * src/z80/peeph.def
6005         * src/z80/z80.h
6006
6007 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6010
6011 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6012
6013         * device/lib/hc08/_mullong.c: Removed extra #endif
6014
6015 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * sim/ucsim/hc08.src/inst.cc,
6018         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6019         carries from x to h
6020         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6021         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6022         * device/include/stdarg.h: fixed varargs for hc08
6023         * device/lib/Makefile.in,
6024         * device/lib/hc08/Makefile,
6025         * device/lib/hc08/_mulint.c,
6026         * device/lib/hc08/_mullong.c: fixed some endian problems
6027
6028 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6029
6030         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6031         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6032         * device/lib/_gptrget.c,
6033         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6034
6035 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6036
6037         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6038         * src/SDCCast.c (astErrors): fixed bug #846007
6039         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6040
6041 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/SDCCast.c (decorateType): disabled a transformation I added in
6044         revision 1.188 (access to fields of a structure at an absolute address);
6045         it breaks with bitfields, extern declarations, and gcse analysis.
6046         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6047         could be assigned through a pointer, so don't complain.
6048         * src/SDCCast.c (astErrors),
6049         * src/SDCCast.h,
6050         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6051
6052 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6053
6054         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6055         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6056         output of __config directives, since gpasm now supports them
6057         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6058         pre-processor macro, i.e. -DMCU=p18f452
6059         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6060         and modified to handle 'cast' icode similarly to '=' icode
6061         * src/pic16/device.h (typedef struct PIC_device): added field
6062         'extMIface' to indicate that chip has external memory interface
6063         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6064         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6065         18F8720
6066
6067 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6068
6069         * src/SDCC.y (pointer): fixed bug #846006
6070         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6071         * src/SDCCast.c (decorateType): fixed bug #846009
6072         * src/ds390/peeph.def,
6073         * src/ds390/gen.c (genAnd, genOr),
6074         * src/mcs51/peeph.def,
6075         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6076
6077 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6078
6079         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6080         * src/SDCCdflow.c
6081         * src/SDCCcse.c
6082         * src/SDCCcse.h
6083         * src/SDCCBBlock.h
6084         * src/SDCCBBlock.c
6085
6086 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6087
6088         fixed bug #845089
6089         * src/SDCCbitv.h,
6090         * src/SDCCbitv.c: added function to free a bitvector
6091         * src/SDCClrange.h,
6092         * src/SDCClrange.c: added function to recompute the liveranges
6093         * src/avr/ralloc.c,
6094         * src/ds390/ralloc.c,
6095         * src/hc08/ralloc.c,
6096         * src/mcs51/ralloc.c,
6097         * src/pic/ralloc.c,
6098         * src/pic16/ralloc.c,
6099         * src/xa51/ralloc.c,
6100         * src/z80/ralloc.c: recompute the liveranges after register packing
6101
6102 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6103
6104         * src/SDCCloop.c (newInduction): fixed bug #845630
6105
6106 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6107
6108         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6109         inadvertantly left behind from my 2003-11-12 change
6110
6111 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         Updated headers I neglected to commit yesterday.
6114         * src/SDCClrange.h,
6115         * src/SDCCicode.h
6116
6117 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6120         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6121         * src/SDCCopt.c (eBBlockFromiCode),
6122         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6123         the creation of the key hash table from the sequencing so it can be used
6124         earlier (for some GCSE bug fixes still pending)
6125
6126 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6127
6128         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6129         * support/regression/tests/addsub.c: testing genPlus shortcut
6130
6131 2003-11-15  Borut Razem <borut.razem AT siol.net>
6132
6133         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6134
6135 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6136
6137         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6138         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6139         ordering is immaterial.
6140         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6141
6142 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6143
6144         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6145         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6146         (SIGSEV) of bug #840381
6147         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6148         unlink new file before rename if new and old filenames are the same)
6149
6150 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6151
6152         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6153         uninitialized variables) for the mcs51. Set environment variable
6154         SDCC_GENRAMCLEAR to test.
6155         xdata initialization slightly shorter
6156
6157 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6158
6159         * src/SDCCsymt.h,
6160         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6161         #838241 & 780691 (basicly the same bug)
6162         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6163         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6164
6165 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6166
6167         * src/SDCCmain.c (linkEdit): "fix" #834252
6168
6169 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6172         * src/SDCCast.h,
6173         * src/SDCC.y: fixed bug #819403
6174
6175 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6176
6177         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6178         the reentrant attribute.
6179         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6180         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6181         simulation
6182         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6183         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6184         erroneously reduced to a literal.
6185         * src/hc08/ralloc.c (packRegisters, rematStr),
6186         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6187         some cases
6188
6189 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6190
6191         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6192         * doc/sdccman.lyx: changed from 'article' to 'book'
6193         * doc/Makefile: readded test_suite_spec and cdbfileformat
6194
6195 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6196
6197         * device/include/stdlib.h: include malloc.h to comply with ANSI
6198         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6199
6200 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6201
6202         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6203         * doc/clean.mk: also remove *.out files
6204         * doc/sdccman.lyx: some additions, larger top/bottom margins
6205
6206 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6207
6208         * src/SDCC.y: fixed bug #837365
6209         * support/regression/tests/bitopcse.c
6210         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6211         a symbol (might be valop instead)
6212         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6213         * device/lib/clean.mk: added hc08 to the cleaning list
6214
6215 2003-11-04  Borut Razem <borut.razem AT siol.net>
6216
6217         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6218           made 2003-11-04
6219         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6220           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6221           malloc is declared in standard stdlib.h
6222
6223 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         * device/lib/hc08/Makefile: need to clean .rel not .o files
6226         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6227
6228 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * src/port.h,
6231         * src/hc08/main.c,
6232         * src/mcs51/main.c,
6233         * src/ds390/main.c,
6234         * src/z80/main.c,
6235         * src/avr/main.c,
6236         * src/pic/main.c,
6237         * src/pic16/main.c,
6238         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6239         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6240         tests (which uses the port's oclsExpense function)
6241         * src/SDCC.y,
6242         * src/SDCCast.c,
6243         * src/SDCCicode.c,
6244         * src/hc08/gen.c,
6245         * src/ds390/gen.c,
6246         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6247
6248 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         * src/SDCCcse.c (ifxOptimize),
6251         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6252         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6253         deleting the IFX iCode.
6254         * src/hc08/ralloc.c: reduced unneeded slocs
6255         * src/hc08/gen.c: fixed bug in asmopToBoolean
6256
6257 2003-11-04  Borut Razem <borut.razem AT siol.net>
6258
6259         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6260           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6261           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6262           transferred to configure
6263
6264 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6265
6266         Use headers defined in the C[++] standards:
6267         * sim/ucsim/gui.src/serio.src/fileio.cc
6268         * sim/ucsim/gui.src/serio.src/frontend.cc
6269         * sim/ucsim/gui.src/serio.src/main.cc
6270         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6271         * support/Util/NewAlloc.c
6272         * as/hc08/lklibr.c
6273         * as/mcs51/lklibr.c
6274         * as/z80/aslist.c
6275         * as/z80/assym.c
6276
6277 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6278
6279         * Added MSVC projects for hc08 assembler and linker:
6280         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6281         /as/hc08/link_hc08.dsp
6282
6283 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6284
6285         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6286
6287 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6288
6289         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6290
6291 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6292
6293         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6294
6295 2003-10-31  Borut Razem <borut.razem AT siol.net>
6296
6297         * support/cpp2/cpplib.h,
6298           support/cpp2/cpplib.c,
6299           support/cpp2/cpplex.c,
6300           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6301           to switch _asm block preprocessing on / off. Default is
6302           #pragma preproc_asm +
6303
6304 2003-10-31  Borut Razem <borut.razem AT siol.net>
6305
6306         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6307           when outputting comment blocks (when executed with -C option) and
6308           _asm (SDCPP specific) blocks
6309
6310 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6311
6312         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6313
6314 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6315
6316         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6317
6318 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6319
6320         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6321         * src/SDCCast.c (decorateType): fixed bug #832664
6322
6323 2003-10-31  Borut Razem <borut.razem AT siol.net>
6324
6325         * support\cpp2\cpplex.c: fixed for SDCPP:
6326           comments(when executed with -C option) and _asm blocks
6327           were included even if they where in skipped #if block.
6328           Applied solution from GCC cpp 3.3.2
6329
6330 2003-10-31  Borut Razem <borut.razem AT siol.net>
6331
6332         * src/SDCC.lex: sdcc now understands both formats:
6333           '# <line_number> <file_name>' and
6334           '#line <line_number> <file_name>'
6335         * support/cpp2/cppmain.c: sdcpp now generates the standard
6336           '# <line_number> <file_name>' instead of former
6337           '#line <line_number> <file_name>'
6338
6339 2003-10-30  Borut Razem <borut.razem AT siol.net>
6340
6341         * support/cpp2/cpphash.h,
6342         * support/cpp2/cpplib.h
6343         * support/cpp2/cpplex.c,
6344         * support/cpp2/cppmain.c,
6345         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6346
6347 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6348
6349         Fixed a number of problems revealed by bug #827883.
6350         * src/SDCCloop.c (loopInvariants): Spill location of the
6351         result operand should be recomputed if extracted from
6352         a loop. Also, don't extract assignments of an iTemp
6353         from a literal.
6354         * src/SDCCast.c (isConformingBody): loop reversal should
6355         not occur if the control variable is involved with a
6356         relational operator.
6357
6358 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6359
6360         * .version: bumped to 2.3.6 to reflect the big improvements
6361         made by Erik and Klaus. Thanks!
6362
6363 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6364
6365         Replaced the livrange code.
6366         * src/SDCClrange.c: added new LR code
6367         * src/SDCCloop.c,
6368         * src/SDCCBBlock.h: removed remainig parts from old LR code
6369         * src/ds390/ralloc.c,
6370         * src/ds390/gen.c: minor fixes to make it work with new code
6371
6372 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         * as/hc08/asm.h,
6375         * as/hc08/lkrloc.c,
6376         * src/hc08/gen.c,
6377         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6378         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6379         (tweaked fix for bug #818696)
6380
6381 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6382
6383         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6384
6385 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         * src/SDCCmain.c,
6388         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6389         * src/mcs51/gen.c (gencjneshort),
6390         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6391         more efficient (per Scott Bronson's suggestion)
6392
6393 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6394
6395         Extended the semantics of the critical keyword to include
6396         individual statements. See RFE #827755 and #799831
6397         * src/SDCC.y
6398         * src/SDCCicode.c
6399         * src/SDCCopt.c
6400         * src/SDCCast.c
6401         * support/Util/SDCCerr.c
6402         * support/Util/SDCCerr.h
6403         * src/mcs51/gen.c
6404         * src/ds390/gen.c
6405         * src/hc08/gen.c
6406
6407 2003-10-19  Borut Razem <borut.razem AT siol.net>
6408
6409         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6410
6411 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6412
6413         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6414         Fixed bug #818696
6415         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6416         and predecrement operand is displayed
6417
6418 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6419
6420         * src/SDCCval.c (valMinus): fixed bug #826041
6421
6422 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         Some hc08 related updates that I missed earlier
6425         * sim/ucsim/stypes.h
6426         * support/regression/ports/hc08/spec.mk
6427
6428 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6429
6430         New target "hc08" for the Motorola 68hc08 family of micros
6431
6432         * configure
6433         * configure.in
6434         * Makefile
6435         * src/hc08/*
6436         * src/SDCCmain.c
6437         * src/port.h
6438         * sim/ucsim/hc08.src/*
6439         * sim/ucsim/configure.in
6440         * src/ucsim/configure
6441         * sim/ucsim/packages_in.mk
6442         * as/hc08/*
6443         * as/Makefile
6444         * device/include/mc68hc908qy.h
6445         * device/lib/hc08/*
6446         * device/lib/Makefile.in
6447         * support/regression/ports/hc08/*
6448         * support/regression/Makefile
6449
6450 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6451
6452         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6453         regression test
6454         * src/ds390/gen.c (genCast): fixed bug #821957
6455
6456 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6457
6458         * device/lib/logf.c: "fixed" overlay bug
6459         * support/regression/ports/host/spec.mk: added m library
6460         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6461         * support/regression/tests/float_trans: added (for Eric)
6462
6463 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6464
6465         * src/mcs51/gen.c (genCpl): fixed bug
6466         http://sf.net/mailarchive/message.php?msg_id=6263915
6467
6468 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6469
6470         * src/SDCCast.c (decorateType): added extended constant folding
6471         * src/SDCCsymt.c (computeType): cleanup
6472         * src/SDCCval.c (valShift): minor optimization
6473         * support/regression/tests/ast_constant_folding.c: added
6474
6475 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6476
6477         * src/SDCCmain.c: removed some unintended changes
6478
6479 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6482         * src/z80/gen.c: fixed part of bug #817589
6483         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6484
6485 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6486
6487         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6488         * src/SDCCcflow.c
6489         * src/SDCCcse.c
6490         * src/SDCCdflow.c
6491         * src/SDCClabel.c
6492         * src/SDCClrange.c
6493         * src/SDCCmem.c
6494         * src/SDCCopt.c
6495         * src/SDCCpeeph.c
6496         * src/SDCCset.c
6497         * src/avr/ralloc.c
6498         * src/ds390/ralloc.c
6499         * src/izt/ralloc.c
6500         * src/mcs51/ralloc.c
6501         * src/pic/ralloc.c
6502         * src/pic16/ralloc.c
6503         * src/xa51/ralloc.c
6504         * src/z80/ralloc.c
6505         * src/z80/gen.c: removed unused label "release:"
6506
6507 2003-10-06  Borut Razem <borut.razem AT siol.net>
6508
6509         * src/SDCC.lex: removed definition of unused variables
6510           save_optimize and save_options
6511
6512 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6513
6514         * clean.mk: removed '=' in "-maxdepth=1"
6515         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6516         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6517
6518 2003-10-06  Borut Razem <borut.razem AT siol.net>
6519
6520         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6521           my_unput() replaced by unput()
6522
6523 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6524
6525         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6526         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6527         type-punned pointer will break strict-aliasing rules"
6528         Old LR behaviour is again default; Klaus' LR can be choosen by
6529         defining the environment variable LRKLAUS
6530         * src/SDCCBBlock.h
6531         * src/SDCCloop.c
6532         * src/SDCClrange.c
6533         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6534         * clean.mk: fixed removal of files in bin/CVS/
6535         * device/lib/clean.mk: fixed removal of directories small and large
6536         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6537         * src/SDCCicode.c,
6538         * src/SDCCval.c: removed superflous test for pedantic
6539
6540 2003-10-05  Borut Razem <borut.razem AT siol.net>
6541
6542         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6543           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6544           message "unmatched #pragma SAVE and #pragma RESTORE"
6545
6546 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6547
6548         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6549           assembly, critical functions, atomic, nojtbound)
6550
6551 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6552
6553         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6554         * src/SDCCBBlock.h
6555         * src/SDCCloop.c
6556         * src/SDCCloop.h
6557         * src/SDCClrange.c
6558
6559 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6560
6561         * src/z80/gen.h,
6562         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6563         * src/mcs51/gen.h
6564         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6565         * src/ds390/gen.h
6566         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6567         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6568         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6569
6570 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * src/z80/gen.c (genRet): fixed bug #524753
6573         * src/z80/gen.c (genCast): fixed internal error on cast from
6574         pointer to long
6575         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6576         fix for bug #477835 to the z80
6577         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6578         for tracking iCodes in the peephole optimizer for z80
6579
6580 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6581
6582         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6583         the other part of bug #814548
6584         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6585
6586 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * src/SDCCcse.c: fixed part of bug #814548
6589
6590 2003-09-28  Borut Razem <borut.razem AT siol.net>
6591
6592         * src/asm.c: rewrite of printILine() to use temporary file instead
6593           a pipe
6594         * src/xa51/main.c: commented out declaration of int rewinds
6595
6596 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6597
6598         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6599
6600 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6603         * src/asm.c (printILine): Fixed bug #811015
6604
6605 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6606
6607         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6608         freeing.
6609
6610 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6611
6612         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6613         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6614         to correctly handle general case of AOP_PAIRPTR
6615         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6616
6617 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6618
6619         * src/mcs51/ralloc.c (fillGaps),
6620         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6621         register positioning bug)
6622
6623 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6624
6625         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6626
6627 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6630         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6631         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6632         (ralloc doesn't intentionally do this now, but perhaps later)
6633         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6634         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6635         register positioning bugs (Fixed bug #762602 and #795325)
6636         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6637         (Fixed bug #808779)
6638         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6639         lines that --i-code-in-asm generates
6640
6641 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6642
6643         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6644         trying to fclose a FILE* that was already closed.
6645
6646 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6647
6648         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6649         of const struct should be treated as if const themselves)
6650
6651 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6652
6653         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6654
6655 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6656
6657         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6658         Unix (/n) and DOS (/r/n) line terminations.
6659
6660 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6661
6662         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6663         bug #613775
6664
6665 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6666
6667         * src/mcs51/gen.c (genFunction, genEndFunction),
6668         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6669         and restore of EA so that stack offsets to parameters are
6670         correct when using both critical and reentrant/stack-auto.
6671         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6672         size (can be triggered in error if sloc is shared between
6673         different sized objects)
6674         * device/include/float.h: fixed macros to explicitly use
6675         unsigned long where needed
6676
6677 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6678
6679         Feature req. 799831: added code to allow nesting of critical functions
6680         * src/mcs51/gen.c (genFunction, genEndFunction)
6681         * src/ds390/gen.c (genFunction, genEndFunction)
6682
6683 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6684
6685         * src/SDCCsymt.c (sclsFromPtr),
6686         * src/SDCCsymt.h,
6687         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6688         support for standard C idiom of memory mapped variables; for
6689         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6690         to xdata int at 0x1234 tempvar = 1.
6691         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6692         provided by Akiya ISHIDA
6693
6694 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6695
6696         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6697         * src/SDCCval.c (constVal): added reduction from int to char
6698         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6699         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6700         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6701         to ignore the sign
6702         * support/regression/tests/shifts.c: fixed
6703
6704 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * src/z80/gen.c (genXor): Fixed bug #805445
6707
6708 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         Fixed bug #621531 (const & volatile confusion in the type chain).
6711         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6712         refer to the const or volatile state of the pointer itself.
6713
6714         * src/SDCCast.c
6715         * src/SDCCglue.c
6716         * src/SDCCicode.c
6717         * src/SDCCsymt.c
6718         * src/SDCCval.c
6719         * src/SDCC.y
6720         * src/SDCCsymt.h
6721         * src/pic/gen.c
6722         * src/pic/ralloc.c
6723         * src/pic16/gen.c
6724         * src/pic16/ralloc.c
6725         * support/regression/tests/const.c
6726
6727 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6728
6729         When checking for duplicated modules, use absolute paths
6730         instead of relative paths.  Files changed:
6731
6732         * as/mcs51/lklib.c
6733         * link/z80/lklib.c
6734
6735 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6738
6739 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6740
6741         * device/include/string.h: added size_t typedef, changed
6742         prototypes to use size_t, eliminated separate reentrant and
6743         non-reentrant declarations, added _memmove declaration
6744         * device/lib/_memcpy.c: changed to use size_t instead of int,
6745         changed /4 to >>2 to avoid division library call
6746         * device/lib/_memcmp.c,
6747         * device/lib/_memset.c,
6748         * device/lib/_strncat.c,
6749         * device/lib/_strncpy.c,
6750         * device/lib/_strncmp.c: changed to use size_t instead of int
6751         * device/lib/_memmove.c: new file (fixed bug #772294)
6752         * device/lib/Makefile.in: added _memmove.c
6753         * device/lib/z80/asm_strings.s: fixed bug #772290
6754         * support/regression/tests/bitfields.c: attempt to fix host assertion
6755         failure on amd64-unknown-linux2.2
6756
6757 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6758
6759         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6760         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6761         * as/z80/asmain.c (main): fixed bug #801766
6762
6763 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6764
6765         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6766         compilers
6767
6768 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6769
6770         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6771         reported in bug #800609
6772
6773 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6774
6775         * Top header beautifications in src/pic16 directory:
6776           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6777           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6778           pcoderegs.h, ralloc.c, ralloc.h
6779         * main.c: added top header and GPL license notice
6780         * pcode.c: fixed the if-conditional warning
6781
6782 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6783
6784         * device/lib/_mullong.c: replaced int by short for gcc
6785
6786 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6787
6788         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6789         and JUMPTABLE iCodes properly now (worked by accident before)
6790         * src/mcs51/gen.c (leftRightUseAcc),
6791         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6792         iCode properly now. Use getSize instead of nRegs since a & b
6793         aren't part of the nRegs tally.
6794
6795 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6796
6797         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6798         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6799           before instructions that use the _STATUS register
6800
6801 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6802
6803         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6804         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6805         fetching of the pointer
6806         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6807         copied from genNearPointerSet()
6808         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6809         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6810         If they pop r0/r1 they must be called in the opposite order than aopOp().
6811         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6812         (resp. --stack-auto), prepared for --xstack
6813
6814 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6815
6816         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6817
6818 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6819
6820         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6821         these ports have their own __sdcc_external_start()
6822
6823 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6824
6825         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6826         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6827         type for bits was changed. It resulted in bit variables becoming
6828         global, which is not permitted in PIC 14 assembly output.
6829
6830 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6831
6832         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6833
6834 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6835
6836         Z80 and MCS51 linkers complaint if a public symbol is defined
6837         in more than one library module:
6838
6839         * as/mcs51/lklib.c
6840         * link/z80/lklib.c
6841         * as/mcs51/Makefile.in
6842
6843 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6844
6845         A few small changes that speed up the peephole optimizer.
6846
6847         * src/SDCCpeeph.c
6848
6849 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6850
6851         Try to make the peephole optimizer smarter by maintaining
6852         an association between the assembly source code and the
6853         iCodes that originated them. Put this information to use
6854         with a new peephole rule condition "notVolatile" so that
6855         the rules can be aggressive yet still safe.
6856
6857         * src/SDCCpeeph.c
6858         * src/SDCCpeeph.h
6859         * src/mcs51/gen.c
6860         * src/mcs51/peeph.def
6861
6862 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         Fixed bug #741761
6865
6866         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6867         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6868         if the left or right operand symbols have the accuse flag set.
6869
6870 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6871
6872         Changed the type of the result of the ! (NOT) operator to char;
6873         previously it returned the same type as the source. This allows
6874         us to eliminate all the genFloatNot functions (all of its target
6875         implementations were very buggy) since !float can use the same
6876         code as !long now.
6877
6878         * src/SDCCicode.c (ast2iCode): ! returns char
6879         * src/mcs51/gen.c (genNot, genNotFloat),
6880         * src/ds390/gen.c (genNot, genNotFloat),
6881         * src/z80/gen.c (genNot, genNotFloat),
6882         * src/pic/gen.c (genNot, genNotFloat),
6883         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6884
6885 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6886
6887         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6888         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6889            during interrupts. Ensure WSAVE is located at a shared bank address.
6890         2. Fixed page selection in some places
6891         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6892            the registers name strings.
6893         4. Fixed "signed / unsigned compare" compiler warnings.
6894         5. The PIC port manages its own allocation of the general purpose
6895            registers, but makes no attempt to reuse them. As a result when
6896            compiling it soon runs out of general purpose registers. Some
6897            additional code was added to the files pcode.c and device.c to walk
6898            through the function call tree and rename the registers so that they
6899            get reused.
6900
6901         * src/pic/device.c
6902         * src/pic/gen.c
6903         * src/pic/glue.c
6904         * src/pic/pcode.c
6905         * src/pic/pcode.h
6906         * src/pic/ralloc.c
6907         * src/pic/ralloc.h
6908         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6909         genPlus() & genMinus() when the result is the same as left or right
6910
6911 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6912
6913         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6914
6915 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6916
6917         Made bitfield a distinct type from bit so that bitfields
6918         convert as per ANSI C and bits retain their traditional
6919         boolean style behaviour. Implemented bitfield support in
6920         the z80 port.
6921
6922         * src/SDCCsymt.h,
6923         * src/SDCCsymt.c,
6924         * src/SDCCast.c,
6925         * src/cdbFile.c,
6926         * src/mcs51/gen.c,
6927         * src/ds390/gen.c: bit v bitfield split
6928         * src/z80/gen.c: New support for bitfields
6929         * support/regression/tests/bitfields.c: reenabled z80,
6930         added more tests
6931
6932 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6933
6934         Rules 246.x, 247.x relate to bitfields, the others speed up
6935         access to xdata mapped I/O devices.
6936
6937         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6938
6939 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6940
6941         Cleaned up genPackBits and genUnpackBits and added two helper
6942         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6943         for literal assignments in genPackBits (thanks to Frieder for
6944         reminding me).
6945
6946         * src/mcs51/gen.c
6947         * src/ds390/gen.c
6948
6949 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         Fixed bug #748310 (pointer to function type mishandled when the
6952         function name is omitted). Also fixed a SIGSEGV when a function
6953         attribute (reentrant, etc) is used on a non-function or on a
6954         function but misplaced before the parameter list.
6955
6956         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6957         bug #748310
6958         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6959         * support/Util/SDCCerr.h,
6960         * support/Util/SDCCerr.c: Added func attr misuse error msg
6961
6962 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6963
6964         Fixed bug #787649 by anonymous
6965         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6966         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6967
6968 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6969
6970         Fixed numerous bitfield problems.
6971
6972         * src/SDCC.y: More bitfield related error checking
6973         * src/SDCCsymt.h,
6974         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6975         * support/Util/SDCCerr.h,
6976         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6977         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6978         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6979         * support/regression/tests/bitfields.c: tests added
6980
6981 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6982
6983         Made the constant following the "interrupt" keyword optional. If
6984         omitted, the function will not automatically be given an entry
6985         in the interrupt vector table (similar to #pragma NOIV, but
6986         less syntacticly kludgy). The interrupt number is also now
6987         range checked. Also fixed a bug in the high order bit example
6988         in the manual.
6989
6990         * src/SDCC.y
6991         * src/SDCCmem.c
6992         * src/SDCCglue.c
6993         * src/SDCCsymt.h
6994         * support/Util/SDCCerr.c
6995         * support/Util/SDCCerr.h
6996         * doc/sdccman.lyx
6997
6998 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6999
7000         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7001         * src/SDCCicode.c (operandOperation): rewritten some ops
7002         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7003         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7004         other type
7005         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7006         be re-activated by defining REDUCE_LITERALS)
7007         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7008         unsigned, but are signed by default
7009         * src/SDCCval.c (constVal): rearranged
7010         * src/SDCCval.c (valMod): preliminary fix
7011         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7012         * support/regression/literalop.c: added, work in progress
7013
7014 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7015
7016         Generate warnings for useless declarations like "char data;"
7017         that don't do what new users expect.
7018
7019         * src/SDCC.y
7020         * support/Util/SDCCerr.h
7021         * support/Util/SDCCerr.c
7022
7023 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7024
7025         * src/SDCCval.c (valMult): fix overflow detection of negative int
7026
7027 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7028
7029         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7030
7031         Changes to support big endian targets:
7032
7033         * src/ports.h
7034         * src/SDCCglue.c
7035         * src/avr/main.c
7036         * src/ds390/main.c
7037         * src/izt/i186.c
7038         * src/mcs51/main.c
7039         * src/pic/main.c
7040         * src/pic16/main.c
7041         * src/xa51/main.c
7042         * src/z80/main.c
7043
7044 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7047         * device/lib/time.c: fixed warning "integer overflow in expression"
7048
7049 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7050
7051         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7052         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7053         constants are unsigned; added recognition of "u" flag for unsigned
7054         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7055         * src/SDCCval.c (valDiv, valMod): fixed signdness
7056         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7057         signedness of modulo, left and right shift
7058         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7059         * support/Util/SDCCerr.h: added warning W_INT_OVL
7060         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7061         * src/SDCCast.c (ast_print): improved output of constants
7062
7063 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7064
7065         Fixed some warnings when building with MSVC:
7066
7067         * as\mcs51\asdata.c
7068         * as\z80\asdata.c
7069         * as\mcs51\asm.h
7070         * as\z80\asm.h
7071         * link\z80\aslink.h
7072         * link\z80\lkdata.c
7073         * link\z80\lkeval.c
7074         * link\z80\lkgb.c
7075         * link\z80\lkihx.c
7076         * link\z80\lks19.c
7077         * link\z80\lksym.c
7078         * support\cpp2\cpplib.c
7079         * src\ds390\gen.c
7080         * src\mcs51\gen.c
7081
7082 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7083
7084         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7085
7086 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7087
7088         * support\librarian\clean.mk: Do not remove Makefile.
7089         * support\librarian\Makefile: added.
7090
7091 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7092
7093         Added librarian to MSVC build:
7094         * all.dsp
7095         * sdcc.dsw
7096         * support\librarian\librarian.dsp
7097
7098         'configure' not needed for librarian, removed:
7099         * support\librarian\configure
7100         * support\librarian\configure.in
7101         * support\librarian\config_in.h
7102         * support\librarian\Makefile.in
7103
7104         Hopefully these ones built the librarian and the rest of sdcc properly:
7105         * Makefile
7106         * Makefile.common.in
7107
7108         Messed up 'configure', so revert to previous version:
7109         * configure
7110         * configure.in
7111
7112 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7115         there, while the mantissa of a double is "only" 53 bits wide.
7116
7117 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7118
7119         Adding sdcclib to the build.  MSVC project coming soon.
7120         Files added/changed:
7121
7122         * support\librarian\clean.mk
7123         * support\librarian\configure
7124         * support\librarian\configure.in
7125         * support\librarian\config_in.h
7126         * support\librarian\Makefile.bcc
7127         * support\librarian\Makefile.in
7128         * support\librarian\sdcclib.c
7129         * Makefile.bcc
7130         * Makefile
7131         * Makefile.common.in
7132         * configure
7133         * configure.in
7134
7135 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7136
7137         Linker now complaints if linked modules have conflicting options, for
7138         example, one compiled using --model-large and another one compiled with
7139         --model-small.  The following files were modified:
7140
7141         * as\mcs51\asdata.c
7142         * as\mcs51\aslink.h
7143         * as\mcs51\asm.h
7144         * as\mcs51\asmain.c
7145         * as\mcs51\asout.c
7146         * as\mcs51\i51pst.c
7147         * as\mcs51\lkdata.c
7148         * as\mcs51\lklibr.c
7149         * as\mcs51\lkmain.c
7150         * as\z80\asdata.c
7151         * as\z80\asm.h
7152         * as\z80\asmain.c
7153         * as\z80\asout.c
7154         * as\z80\z80pst.c
7155         * link\z80\aslink.h
7156         * link\z80\lkdata.c
7157         * link\z80\lklibr.c
7158         * link\z80\lkmain.c
7159         * src\SDCCglue.c
7160
7161 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7162
7163         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7164         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7165
7166 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7167
7168         * src/z80/mappings.i: fix _mul[us][int,long] entries
7169
7170 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7171
7172         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7173
7174 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7175
7176         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7177         * support/regression/tests/bitopcse.c: added
7178         fixed warning:
7179         * src/avr/gen.c:
7180         * src/pic/gen.c:
7181         * src/pic16/gen.c:
7182         * src/z80/gen.c:
7183         * src/xa51/gen.c:
7184
7185 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7186
7187         added support for new library format to z80, gbz80 linkers:
7188         *link/z80/aslink.h
7189         *link/z80/lklex.c
7190         *link/z80/lklib.c
7191         *link/z80/lklist.c
7192
7193 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7194
7195         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7196         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7197
7198 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7199
7200         added DUMMY_READ_VOLATILE:
7201         * src/SDCC.y:
7202         * src/avr/gen.c:
7203         * src/xa51/gen.c:
7204         * src/z80/gen.c:
7205         * src/pic/gen.c:
7206         * src/pic16/gen.c:
7207         * src/mcs51/gen.c:
7208         * src/ds390/gen.c:
7209         * src/SDCCcse.c (algebraicOpts): many improvements
7210         * src/SDCCcse.h: removed algebraicOpts()
7211         * src/SDCCicode.c (picDummyRead): added
7212
7213 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7214
7215         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7216         "Insufficient space in data memory".
7217
7218 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7219
7220         * src/mcs51/gen.c: fixed bug #771358
7221         * src/z80/gen.c: fixed bug #759087
7222
7223 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7224
7225         * src/pic16/glue.c: minor cleanup by Vangelis
7226
7227 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7228
7229         * device/include/regc515c.h: fixed #758477
7230         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7231         * device/lib/_gptrput.c: saved a few bytes
7232         * my tab spacing is 8, yours too?)
7233         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7234         * device/lib/serial.c: process RX bytes earlier than TX bytes
7235         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7236
7237 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7238
7239         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7240
7241 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7242
7243     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7244
7245 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7246
7247         * device/lib/Makefile.in: bad fix, reverted to 1.43
7248
7249 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7250
7251         * device/lib/Makefile.in: added missing z80 object files
7252
7253 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7254
7255         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7256         pic16 progress by Vangelis:
7257         * src/SDCCglobl.h:
7258         * src/SDCCmain.c:
7259         * src/pic/Makefile:
7260         * src/pic:
7261         * pic/Makefile:
7262         * pic16/device.c:
7263         * pic16/device.h:
7264         * pic16/gen.c:
7265         * pic16/gen.h:
7266         * pic16/genarith.c:
7267         * pic16/glue.c:
7268         * pic16/main.c:
7269         * pic16/pcode.c:
7270         * pic16/pcode.h:
7271         * pic16/pcodepeep.c:
7272         * pic16/peeph.def:
7273
7274 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7275
7276     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7277
7278 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7279
7280     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7281     added gbz80 build to MSVC project.
7282     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7283     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7284     from 8051 stuff and setup so it links using a .lnk file.
7285
7286 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7287
7288     * support/librarian/sdcclib.c: sdcc librarian.
7289     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7290     with sdcclib.
7291
7292 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7293
7294     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7295
7296 2003-07-02  Borut Razem <borut.razem AT siol.net>
7297
7298         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7299         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7300         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7301         src/xa51/main.c, src/z80/main.c:
7302         virtualization of glue() function: each port has it's own glue function,
7303         which is accessed by do_glue function pointer in PORT.general structure
7304
7305 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7306
7307         * DS800C400 fun, improved ROM interface and tinibios.
7308
7309 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7310
7311         * More support for DS80C400. Now includes beginning of interface to ROM.
7312
7313 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7314
7315         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7316
7317 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7318
7319         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7320
7321 2003-06-19  Borut Razem <borut.razem AT siol.net>
7322
7323         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7324
7325 2003-06-19  Borut Razem <borut.razem AT siol.net>
7326
7327         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7328         fixed Z80 port - crt0.o: cannot open.
7329
7330 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         * support/Util/MySystem.c (merge_command): revert bad fix
7333
7334 2003-06-18  Borut Razem <borut.razem AT siol.net>
7335
7336         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7337
7338 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7339
7340         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7341         option --use-stdout sends errors to stdout instead of stderr.
7342
7343 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7344
7345         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7346
7347 2003-06-15  Borut Razem <borut.razem AT siol.net>
7348
7349         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7350         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7351         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7352         fixed width array of pointers replaced with sets;
7353         multiple include and lib paths ared transferred to preprocessor and linker
7354         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7355         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7356         fixed width array of pointers
7357         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7358         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7359         fixupPath(), getPathDifference()
7360         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7361         fixed width array of pointers
7362
7363 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7364
7365         * src/pic16/ralloc.c: fix warnings
7366         * src/pic16/pcode.c: fix warning
7367
7368 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7369
7370          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7371         know all the details, but essentially this set of changes enable
7372         the pic16 port to generate movff instructions and generate assembler
7373         directives,
7374         * src/SDCCmain.c:
7375         * src/pic16/gen.c:
7376         * src/pic16/glue.c:
7377         * src/pic16/pcode.c:
7378         * src/pic16/device.c:
7379         * src/pic16/main.c:
7380         * src/pic16/pcode.h:
7381         * src/pic16/pcoderegs.c:
7382         * src/pic16/ralloc.c:
7383         * src/pic16/ralloc.h:
7384
7385 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7386
7387         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7388         added option --vc, so sdcc errors and warnings are compatible with
7389         Microsoft Visual Studio.
7390
7391 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7392
7393         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7394           device/lib/libfloat.lib: added atof function.
7395
7396 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7397
7398         * doc/sdccman.lyx: updated to Lyx 1.3
7399         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7400         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7401         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7402
7403 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7406
7407 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7408
7409         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7410           additions to the "related tools/documentation" section
7411
7412 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7413
7414         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7415
7416 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7419         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7420
7421 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7422
7423         * doc/sdccman.lyx: fix double dash and other minor things
7424         * doc/Makefile: fix double dash
7425
7426 2003-05-28  Karl Bongers(patches from Martin Helmling)
7427         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7428           condition and ignore commands.
7429
7430 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7431
7432         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7433           is in parts still quite out of date, I did changes as far as I felt makes sense
7434           for a non-native english speaker.
7435           Please feel free to add to the manual or to correct my changes.
7436         * doc/Makefile: undid touching the date of intermediate tex files.
7437
7438 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7439
7440         * doc/sdccman.lyx: Manual has an index now
7441
7442 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7443
7444         Finalize muluint/mulsint and mululong/mulslong merging:
7445         * device/lib/_mulint.c
7446         * device/lib/_mullong.c
7447         * device/lib/gbz80/mul.s
7448         * device/lib/gbz80/stubs.s
7449         * device/lib/z80/mul.s
7450         * device/lib/z80/stubs.s
7451         * src/SDCCsymt.c (initCSupport)
7452
7453 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7454
7455         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7456         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7457           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7458           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7459           instead of /Zm500.
7460
7461 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7462
7463         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7464           the regression tests I'm not brave enough to enable 245.b, 245.c
7465         * doc/sdccman.lyx: added latex preamble for hyperref package.
7466           Using pdflatex this will give you a hyperlinked pdf file with
7467           bookmarks. (prepend '%' before /usepackage if this breaks something)
7468
7469 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7470
7471          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7472
7473 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7476
7477 2003-05-21    <johan AT balder>
7478
7479         * src/SDCCglue.c (printIval): fixed bug #739934
7480
7481 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7482
7483         Applied patch from bug 737905 (renamed yylineo to mylineno):
7484         * src/altlex.c
7485         * src/SDCCast.c
7486         * src/SDCglobl.h
7487         * src/SDCC.lex
7488         * src/SDCCsymt.c
7489         * src/SDCCval.c
7490         * src/pic16/pcode.c: Cleaned warnings
7491         * src/pic16/pcodeflow.c: Cleaned warnings
7492         * src/pic16/pcoderegs.c: Cleaned warnings
7493
7494 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7495
7496         * src/pic16/pcode.c: Cleaned warnings
7497         * src/pic16/pcodepeep.c: Cleaned warnings
7498         * src/pic16/ralloc.c: Cleaned warnings
7499
7500 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         * doc/sdccman.lyx: fixed bug 739745
7503         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7504
7505 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7506
7507         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7508         it can be defined with CFLAGS when running configure
7509         * src/SDCCmain.c: fixed compiling + linking with object files
7510
7511 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7512
7513         * configure.in: configure for pic16 port,
7514             added --disable-pic16-port
7515         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7516         * src/SDCCmain.c: linkOptions is changed to set *,
7517             added if/endif conditional macros to remove options help
7518             messages from optionsTable when a port is not configured, added
7519             support for the PIc16 port in the ports table, when executing
7520             the compiler with no port specified on command line, a default
7521             port is selected with the new macro DEFAULT_PORT which is
7522             defined in port.h, in setDefaultOptions() linkOptions is removed
7523             from initialization assignment, since now it is a set,
7524             parseCmdLine uses setParseWithComma for linkOptions, in
7525             linkEdit() linkOptions are accessed with new function indexSet()
7526             which returns the i'th item of a set variable. See SDCCset.c, in
7527             linkEdit() when calling buildCmdLine(), added linkOptions as
7528             last argument. Now users can pass arguments to gplink via the
7529             -Wl option, main() uses pic16glue() to glue up pic16 programs
7530         * src/SDCCpeeph.c: various changes to support pic16
7531         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7532             return the i'th item of the set
7533         * src/SDCCset.h: added function prototype for indexSet()
7534         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7535         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7536         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7537             added macro DEFAULT_PORT
7538         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7539         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7540             generated
7541         * src/pic16/glue.c: commented out some error producing lines
7542         * src/pic16/main.c: __config directives are commented out to stop
7543             gpasm complaining and test the linkage with gplink, _linkCmd and
7544             _asmCmd changed to be more gplink and gpasm friendly
7545         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7546             produced an error when parsed, peep rule 12 is added to utilize
7547             movff, but it is commented out since the pCode does not support
7548             yet a command with 2 address arguments
7549
7550 2003-05-18    <johan AT balder>
7551
7552         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7553         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7554 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7555
7556         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7557   Added feature to script commands from file.
7558
7559 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7560
7561         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7562         * src/SDCCutil.c: include ctype.h for win32
7563
7564 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7565
7566         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7567
7568 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7569
7570         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7571   Fixed so you can set breakpoints prior to run, run does not stop
7572   on entry now.  Add tbreak.  Other enhancements and fixes for use
7573   with ddd.
7574
7575 2003-05-12  Borut Razem <borut.razem AT siol.net>
7576
7577         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7578
7579 2003-05-11  Borut Razem <borut.razem AT siol.net>
7580
7581         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7582         the path of bin directory, so that PATH is the only env. variable, which has to be set
7583         in case of standard installation.
7584         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7585         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7586         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7587
7588 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7589
7590         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7591         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7592         temp files are in the port dir; clean the gen/test directory when
7593         generating new test.c
7594         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7595         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7596         * support/regression/tests/zeropad.c: added
7597
7598 2003-05-09    <johan AT balder>
7599
7600         * src/SDCCglue.c: fixed bug #597940
7601
7602 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7603
7604         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7605   cache sfr, optimize next,step, fix off by one sourceline,
7606   support ddd list function.
7607         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7608
7609 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7610
7611         * support/regression/HTMLgen.py: added compare_s2f()
7612         * support/regression/Makefile: redo 1.27
7613         * support/regression/generate-cases.py: redo 1.5
7614
7615 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7616
7617         * support/regression/tests/float.c: workaround 33 bit hex constant
7618         * support/regression/tests/simplefloat.c: fix division for host
7619
7620 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7621
7622         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7623         that tame's the PIC's over-aggressive optimizer.
7624
7625 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7626
7627          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7628          support for MSVC.
7629
7630 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7631
7632         Initial support for DS80C400. "Hello world" runs on TINIm400
7633         (with polled I/O).
7634
7635 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7636
7637          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7638          * Some notes on ddd usage added in debugger/README
7639          Martin Helmling adding more features and fixes for ddd GUI debugger.
7640          Code added for nexti, stepi, up, down, and other adjustments.
7641
7642 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7643
7644         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7645         * src/pic/peeph.def Added two rules to optimize carry manipulation
7646         * src/pic/* removed debug printfs
7647
7648 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7649
7650         * debugger/mcs51/cmd.c: added header newalloc.h
7651
7652 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7653
7654         * as/Makefile: new EXEEXT
7655         * as/z80/Makefile: remove trailing slash of BUILDIR
7656         * as/z80/clean.mk: new EXEEXT
7657         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7658         * support/cpp2/Makefile.in: new EXEEXT
7659         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7660
7661 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7664         EXEEXT was introduced to fix all related problems with targets
7665         "clean", "install" and "uninstall"; a couple of further flaws
7666         especially with "clean" have been fixed too
7667         * as/mcs51/Makefile.in
7668         * as/mcs51/clean.mk
7669         * as/z80/Makefile
7670         * Makefile
7671         * clean.mk
7672         * debugger/mcs51/Makefile.in
7673         * debugger/mcs51/clean.mk
7674         * link/z80/Makefile
7675         * link/z80/Makefile.in
7676         * link/z80/clean.mk
7677         * link/Makefile
7678         * packihx/Makefile.in
7679         * packihx/clean.mk
7680         * sim/ucsim/Makefile
7681         * sim/ucsim/clean.mk
7682         * sim/ucsim/avr.src/Makefile.in
7683         * sim/ucsim/avr.src/clean.mk
7684         * sim/ucsim/s51.src/Makefile.in
7685         * sim/ucsim/s51.src/clean.mk
7686         * sim/ucsim/xa.src/Makefile.in
7687         * sim/ucsim/xa.src/clean.mk
7688         * sim/ucsim/z80.src/Makefile.in
7689         * sim/ucsim/z80.src/clean.mk
7690         * sim/ucsim/main_in.mk
7691         * sim/ucsim/packages_in.mk
7692         * sim/ucsim/gui.src/Makefile.in
7693         * sim/ucsim/gui.src/serio.src/Makefile.in
7694         * sim/ucsim/gui.src/serio.src/clean.mk
7695         * src/Makefile.in
7696         * src/clean.mk
7697         * support/cpp2/Makefile.in
7698         * support/cpp2/clean.mk
7699         * support/makebin/Makefile
7700         * support/makebin/clean.mk
7701         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7702         * doc/sdccman.lyx: --program-suffix no longer needed
7703
7704 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7705
7706          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7707          Martin Helmling added support for ddd GUI debugger.
7708          Code added to display assembly, set variables, and other commands
7709          to interface to ddd.
7710
7711 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7712
7713         * as/Makefile: fix target clean
7714         * as/clean.mk: fix target clean
7715         * as/z80/clean.mk: fix target clean
7716
7717 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7718
7719         * Makefile.common.in: added  AT EXEEXT AT
7720         * configure.in: removed all mingw32 stuff
7721         * configure: rebuilt from configure.in
7722         * doc/sdccman.lyx: updated section "installation"
7723         * support/scripts/sdcc_mingw32: adapted to configure
7724         * support/scripts/sdcc_cygwin_mingw32: added
7725
7726 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7727
7728         * src/pic Added object file support for the PIC port
7729         * src/pic Applied patch from Craig Franklin (this started the object file support)
7730         * src/regression Updated the PIC regression tests for object files
7731
7732 2003-04-20  Borut Razem <borut.razem AT siol.net>
7733
7734         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7735           lklex.c: In function `getfid':
7736           lklex.c:203: warning: array subscript has type `char'
7737         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7738           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7739         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7740           stack handling macros
7741
7742 2003-04-19  Borut Razem <borut.razem AT siol.net>
7743
7744         * "handling space characters in file path" task:
7745         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7746         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7747         * support/Util/MySystem.h: make it self-sufficient
7748         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7749           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7750           handling space characters in file path
7751         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7752           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7753         * support/Util/MySystem.c: handling space characters in executable's path
7754
7755 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7756
7757         * as/z80/Makefile: fix permanent rebuild of z80
7758         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7759         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7760
7761 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7762
7763         * src/SDCCopt.c: add special case optimization to replace modulo by
7764           a power of two with a bitwise AND.
7765
7766 2003-04-18    <johan AT balder>
7767
7768         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7769
7770 2003-04-17    <johan AT balder>
7771
7772         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7773         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7774
7775 2003-04-13  Borut Razem <borut.razem AT siol.net>
7776
7777         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7778         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7779           fixed mingw problem in adl_NORMALIZE_PATH
7780
7781 2003-04-12  Borut Razem <borut.razem AT siol.net>
7782
7783         * fixed "#pragma SAVE/RESTORE can not be nested":
7784         * src/SDCC.lex: reworked pragma handling functions
7785         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7786         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7787
7788 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7789
7790         * src/SDCCutil.c (pathEquivalent): defined but not used
7791         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7792         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7793         * configure: rebuilt from configure.in
7794         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7795         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7796         * device/include/Makefile.in: replace sdcc_datadir
7797         * device/lib/Makefile.in: replace sdcc_datadir
7798         * Makefile.common.in: add LDFLAGS from configure
7799         * packihx/Makefile.in: use LDFLAGS
7800         * src/Makefile.in: use LDFLAGS
7801         * support/cpp2/Makefile.in: add LDFLAGS from configure
7802         * support/makebin/Makefile: use LDFLAGS
7803         * .version: bumped version number to 2.3.5
7804
7805 2003-04-12  Borut Razem <borut.razem AT siol.net>
7806
7807         * completed "different paths" task:
7808         * src/SDCCmacro.c: fixed bug in handling quotes
7809         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7810         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7811
7812 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7815
7816 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7817
7818         * ds390/gen.c ds390/peeph.def: fix bug 706781
7819
7820 2003-04-11  Borut Razem <borut.razem AT siol.net>
7821
7822         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7823
7824 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7825
7826         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7827         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7828          set - this bit used to not be set...).
7829         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7830           bad code in PIC Port
7831         * src/regression/and2.c added to test bug 609268
7832         * src/regression/Makefile added and2.c to regression test
7833
7834
7835 2003-04-08    <johan AT CP255758-A>
7836
7837         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7838         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7839         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7840
7841 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7842
7843         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7844         fix bug #487815
7845         * support/cpp2/Makefile.in: fix bug #487815
7846         * configure: rebuilt from configure.in
7847         * Makefile.common.in: docdir changed, new path suffixes
7848         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7849         * sdcc_vc_in.h: reflect changes from sdccconf.h
7850         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7851         * src/SDCCutil.h: remove BINDIR hack
7852         * doc/sdccman.lyx: update new path hierarchy
7853
7854 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7855
7856         * src/SDCCpeeph.c: added okToRemoveSLOC test
7857
7858 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7859
7860         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7861
7862 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7863
7864         * src/SDCCpeeph.c: added labelIsReturnOnly test
7865         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7866
7867 2003-04-05    <johan AT balder>
7868
7869         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7870         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7871         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7872         * src/SDCCast.c: fixed a warning
7873         * src/SDCCast.h: fixed a warning
7874         * src/SDCCicode.c (operandFromAst): fixed a warning
7875
7876 2003-04-04    <johan AT balder>
7877
7878         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7879         * src/SDCCast.c (decorateType): fixed bug #715076
7880         * src/SDCC.y: fixed bug #702907
7881
7882 2003-04-03    <johan AT balder>
7883
7884         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7885         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7886         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7887         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7888         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7889
7890 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7891
7892         * _decdptr.c: fix return values
7893         * _gptrget.c: fix return values
7894         * _gptrgetc.c: fix return values
7895         * _gptrput.c: fix return values
7896         * _mulint.c: fix return values
7897         * as/z80/Makefile: fix 'make -j' problem
7898
7899 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7900
7901         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7902         * configure.in: big cleanup, updated to autoconf 2.5x
7903         * configure: rebuilt from configure.in
7904         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7905         * sdcc_vc_in.h: reflect changes from sdccconf.h
7906         * doc/Makefile: fixed a flaw in "make install"
7907
7908 2003-04-02    <johan AT balder>
7909
7910         * src/ds390/gen.c (genCmp): no comments
7911         * src/mcs51/gen.c (genCmp): no comments
7912         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7913         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7914
7915 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7916
7917         * support/regression/generate-cases.py: place generated file in given sub directory
7918         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7919         * support/regression/Makefile: improvements for 'make -j';
7920         side effect: it's simpler and faster now
7921
7922 2003-03-31  Borut Razem <borut.razem AT siol.net>
7923
7924         * src/z80/main.c: link-{port} and as-{port} defined without path
7925         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7926
7927 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7928
7929         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7930
7931 2003-03-30  Borut Razem <borut.razem AT siol.net>
7932
7933         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7934           changed type of list parameter to set
7935         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7936         * src/port.h: changed type of do_assemble() parameter to set
7937         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7938           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7939           definition of "cppoutfilename" macro with NULL value in preProcess()
7940         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7941         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7942         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7943           replaced with set *binPathSet
7944         * shash_add() deallocates the item, if allready exsists, before adding the new one
7945         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7946
7947 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7948
7949         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7950           a nested for loop bug in the PIC port
7951         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7952           for loops
7953
7954 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * support/Util/dbuf.h: remove C++ stuff to make it portable
7957
7958 2003-03-28  Borut Razem <borut.razem AT siol.net>
7959
7960         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7961           literal strings in stringLiteral()
7962         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7963         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7964           to the project
7965
7966 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7967
7968         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7969
7970 2003-03-26    <johan AT balder>
7971
7972         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7973         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7974         * src/SDCCast.c (decorateType): fixed " -v < 3"
7975
7976 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7977
7978         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7979         Added Lenny Story's debug infrastructure changes:
7980         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7981         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7982         * src/cdbFile.c: added
7983         * src/SDCCdebug.c: added
7984         * src/SDCCdebug.h: added
7985         * src/SDCCast.c (createFunction)
7986         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7987         * src/SDCCmain.c (parseCmdLine, main)
7988         * src/SDCCmem.c (redoStackOffsets)
7989         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7990         * src/SDCCsymt.h
7991         * src/common.h
7992         * src/avr/gen.c (genAVRCode)
7993         * src/ds390/gen.c (gen390Code)
7994         * src/mcs51/gen.c (gen51Code)
7995         * src/pic/gen.c (genpic14Code)
7996         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7997         * src/xa51/gen.c (genXA51Code)
7998         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7999
8000 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8001
8002         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8003         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8004
8005 2003-03-22    <johan AT balder>
8006
8007         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8008
8009 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8010
8011         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8012         * doc/cdbfileformat.lyx: added, written by Lenny Story
8013         * doc/Makefile: added cdbfileformat.lyx
8014         * doc/clean.mk: added cdbfileformat.lyx
8015
8016 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8017
8018         * src/mcs51/peeph.def: fix bug #705773
8019
8020 2003-03-20    <johan AT balder>
8021
8022         An sfr/sbit can have an "at #" AND an initializer
8023         * src/SDCCsymt.c (checkSClass):
8024         * src/SDCCmem.c (allocGlobal):
8025         * src/SDCCmem.c (allocLocal):
8026         * src/SDCCast.c (createBlock):
8027
8028 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8029
8030         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8031
8032 2003-03-16    <johan AT balder>
8033
8034         Undid the hackup of const and volatile, the problem is much bigger
8035         * src/SDCC.y:1.65
8036         * src/SDCCast.c:1.171
8037         * src/SDCCglue.c:1.138
8038         * src/SDCCicode.c:1.146
8039         * src/SDCCsymt.c:1.150
8040         * src/SDCCval.c:1.65
8041
8042 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8043
8044         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8045         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8046
8047 2003-03-13    <johan AT balder>
8048
8049         Hackup const and volatile modifiers in type chains a bit:
8050         * src/SDCC.y:1.63
8051         * src/SDCCast.c:1.169
8052         * src/SDCCglue.c:1.136
8053         * src/SDCCicode.c:1.143
8054         * src/SDCCsymt.c1.146
8055         * src/SDCCsymt.h1.59
8056         * src/SDCCval.c:1.63
8057
8058 2003-03-12    <johan AT balder>
8059
8060         * src/SDCCBBlock.h: more LRH debugging junk
8061         * src/SDCCcflow.h: more LRH debugging junk
8062         * src/SDCCloop.c: more LRH debugging junk
8063         * src/SDCC.y (struct_declaration): fixed bug #697590
8064         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8065         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8066         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8067
8068 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8069         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8070         test function names must now match exactly).
8071         * src/SDCCcse.c: added special case in findCheaperOp to allow
8072         extending a short integer. Makes less awful code for bug 700121 test case.
8073
8074 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8075
8076         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8077         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8078
8079 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8080
8081         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8082         actually called (operandsNotEqual() was called for all
8083         operandsNotEqualX tests).
8084
8085 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8086
8087         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8088         with shorter literals. Fixes bug 700121.
8089
8090 2003-03-11    <johan AT balder>
8091
8092         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8093
8094 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8095
8096         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8097         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8098
8099 2003-03-10  Borut Razem <borut.razem AT siol.net>
8100
8101         * src/SDCCmain.c: pipe preprocessor's output
8102         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8103         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8104         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8105         which closes all pipes in pipeSet set
8106         * src/SDCCset.c: free deleted item in function deleteSetItem()
8107         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8108         moved from z80 to src subproject
8109         * .version: increased version number to 2.3.4
8110
8111 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8112
8113         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8114         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8115         * support/regression/ports/xa51/spec.mk: fix typo
8116
8117 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8120
8121 2003-03-09  Borut Razem <borut.razem AT siol.net>
8122
8123         * src/SDCCmain.c: pipe preprocessor's output
8124         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8125         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8126         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8127         which closes all pipes in pipeSet set
8128         * src/SDCCset.c: free deleted item in function deleteSetItem()
8129         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8130         moved from z80 to src subproject
8131
8132 2003-03-09  Borut Razem <borut.razem AT siol.net>
8133
8134         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8135         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8136         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8137         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8138         * src/SDCCglobl.h: unification of WIN32 native definitions
8139
8140 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8141
8142         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8143
8144 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8145
8146         * src/configure.in:   check for endianess (even while cross-compiling)
8147         * src/configure:      check for endianess (even while cross-compiling)
8148         * src/configure_in.h: check for endianess (even while cross-compiling)
8149         * src/avr/gen.c:        remove old endianess stuff
8150         * src/mcs51/gen.c:      remove old endianess stuff
8151         * src/ds390/gen.c:      remove old endianess stuff
8152         * src/pic/gen.c:        remove old endianess stuff
8153         * src/pic/genarith.c:   remove old endianess stuff
8154         * src/pic/glue.c:       fix endianess check
8155         * src/pic16/gen.c:      remove old endianess stuff
8156         * src/pic16/genarith.c: remove old endianess stuff
8157         * src/pic16/glue.c:     fix endianess check
8158         * src/xa51/gen.c:       remove old endianess stuff
8159         * src/z80/gen.c:        fix endianess check
8160         * src/SDCCglue.c:       fix endianess check
8161         * src/ds390/peeph.def: fix bug 700036
8162
8163 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8164
8165         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8166         * src/configure: find appropriate data-types on host for SDCC's int and long
8167         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8168         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8169         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8170
8171 2003-03-07    <johan AT balder>
8172
8173         Just a big NOOP:
8174                 some minor cleanups before the big shot
8175                 OP_DEFS and OP_USES now use Kevin's protection
8176                 new option --nolabelopt
8177
8178         * src/SDCCBBlock.c:
8179         * src/SDCCast.c,:
8180         * src/SDCCcflow.c:
8181         * src/SDCCcse.c:
8182         * src/SDCCicode.c:
8183         * src/SDCCicode.h:
8184         * src/SDCClabel.c:
8185         * src/SDCCloop.c:
8186         * src/SDCCmain.c:
8187         * src/ds390/ralloc.c:
8188         * src/mcs51/ralloc.c:
8189         * src/pic/ralloc.c:
8190         * src/xa51/ralloc.c:
8191         * src/z80/ralloc.c:
8192
8193 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * src/pic/pcode.c (get_op): fix 64 bit warnings
8196         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8197         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8198         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8199         * support/regression/tests/malloc.c: fix 64 bit warnings
8200
8201 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8202
8203         * src/mcs51/gen.c (genMinus): fixed bug 696436
8204
8205 2003-03-02  Borut Razem <borut.razem AT siol.net>
8206
8207         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8208
8209 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * configure.in: test for mkstemp
8212         * sdccconf_in.h: add HAVE_MKSTEMP
8213
8214 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8215
8216         * device/include/ctype.h: removed warning while using --stack-auto
8217         * device/include/malloc.h: removed warning while using --stack-auto
8218         * device/include/string.h: removed warning while using --stack-auto
8219
8220 2003-02-23  Borut Razem <borut.razem AT siol.net>
8221
8222         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8223         because NDEBUG is defined (see man assert)
8224         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8225
8226 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8227
8228         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8229         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8230
8231 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8232
8233         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8234         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8235
8236 2003-02-18    <johan AT balder>
8237
8238         * as/mcs51/asmain.c (asmbl): module can start with a digit
8239         * as/z80/asmain.c (asmbl): module can start with a digit
8240
8241 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8242
8243         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8244         * src/asm.c: fix pipe() for Mingw32
8245
8246 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8247
8248         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8249         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8250         make -V work again; --c1mode reads now from stdin
8251         * doc/sdccman.lyx: added --c1mode
8252         * support/Util/SDCCerr.c: new messages for c1 mode
8253         * support/Util/SDCCerr.h: new messages for c1 mode
8254         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8255
8256 2003-02-15    <johan AT balder>
8257
8258         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8259
8260 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8261
8262         * doc/sdccman.lyx: Environment variables, -o and other minor things
8263
8264 2003-02-14    <johan AT balder>
8265
8266         * src/xa51/main.c: before anyone really tries to use it :)
8267
8268         * Install doc's in share/sdcc/doc
8269         * removed some obsolete files
8270         * Do a proper make distclean and uninstall
8271         M Makefile.common.in
8272         R sdccbuild.sh
8273         M as/Makefile
8274         M device/include/Makefile.in
8275         M device/lib/Makefile.in
8276         M doc/sdccman.lyx
8277         M link/Makefile
8278         M sim/ucsim/doc/Makefile.in
8279         M src/clean.mk
8280         R src/avr/peeph.rul
8281         R src/xa51/peeph.rul
8282         M support/cpp2/Makefile.in
8283         M support/makebin/Makefile
8284
8285
8286 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8287
8288         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8289
8290 2003-02-10  Borut Razem <borut.razem AT siol.net>
8291
8292         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8293         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8294         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8295         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8296         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8297         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8298         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8299         src/z80/Makefile.bcc: Borland Makefile cleanup
8300         * as/z80/Makefile.bcc: Added Borland Makefile
8301         * support/cpp2/borland.h: Removed
8302
8303 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8304
8305         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8306         * src/SDCC.lex: new pragma NOIV
8307         * src/SDCCglobl.h: new pragma NOIV
8308         * src/SDCCmem.c: new pragma NOIV
8309
8310 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8311
8312         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8313
8314 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8315
8316         * src/SDCCmain.c: signal handling is switched off by --debug
8317         * doc/Makefile: small fix for install; use clean.mk again
8318         * doc/clean.mk: clean *.pdf and *.html too
8319
8320 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8323         * device/lib/printfl.c: fix a ds390 bug by making it portable
8324         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8325         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8326         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8327         * debugger/mcs51/cmd.c: converted multi-line string literals
8328         * sim/ucsim/globals.cc: converted multi-line string literals
8329         * src/SDCCmain.c: introduced signal handler to remove temp files
8330         * doc/Makefile: small tweaks, implement clean
8331         * doc: removed generated files
8332
8333 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8334
8335         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8336         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8337         Address Record is not correctly generated for DS390."
8338
8339 2003-02-02  Borut Razem <borut.razem AT siol.net>
8340
8341         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8342         * as/mcs51/asm.h: fixed compilation with Borland C
8343         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8344         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8345         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8346         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8347         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8348         src/z80/Makefile.bcc: delete $(LIB) only if exist
8349         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8350
8351 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * device/include/malloc.h: introduced NULL
8354         * device/include/string.h: introduced NULL
8355         * device/include/stdlib.h: introduced NULL
8356         * device/lib/_memcpy.c: removed NULL
8357         * device/lib/_strcat.c: removed NULL
8358         * device/lib/_strchr.c: removed NULL
8359         * device/lib/_strcmp.c: removed NULL
8360         * device/lib/_strcpy.c: removed NULL
8361         * device/lib/_strcspn.c: removed NULL
8362         * device/lib/_strlen.c: removed NULL
8363         * device/lib/_strncat.c: removed NULL
8364         * device/lib/_strncmp.c: removed NULL
8365         * device/lib/_strncpy.c: removed NULL
8366         * device/lib/_strpbrk.c: removed NULL
8367         * device/lib/_strrchr.c: removed NULL
8368         * device/lib/_strspn.c: removed NULL
8369         * device/lib/_strstr.c: removed NULL
8370         * device/lib/_strtok.c: removed NULL
8371         * device/lib/malloc.c: removed NULL, include own header
8372
8373 2003-02-02    <johan AT balder>
8374
8375         * 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
8376         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8377         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8378         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8379         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8380         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8381
8382 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8383
8384         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8385         area 'DATA'"
8386
8387 2003-02-01    <johan AT balder>
8388
8389         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8390
8391 2003-01-31    <johan AT CP255758-A>
8392
8393         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8394
8395 2003-01-30    <johan AT balder>
8396
8397         * src/SDCCBBlock.c: automatic bug detection
8398         * src/SDCCicode.c: automatic bug detection
8399
8400 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8401
8402         * src/SDCCglobl.h:   now --xram-size 0 works
8403         * src/SDCCmain.c:    now --xram-size 0 works
8404
8405 2003-01-29    <johan AT balder>
8406
8407         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8408
8409 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8410
8411         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8412         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8413         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8414         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8415         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8416         * src/SDCCmain.c:    Added options --xram-size and --code-size
8417
8418 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8421         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8422
8423 2003-01-27    <johan AT balder>
8424
8425         * src/SDCC.y: fixed bug #613764
8426
8427 2003-01-26    <johan AT balder>
8428
8429         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8430         * src/SDCCsymt.h: fixed bug #673374
8431         * src/SDCCglue.c: fixed bug #661910
8432         * src/SDCCast.c: fixed bug #458099 and 673374
8433
8434 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8437         * as/mcs51/strcmpi.h: added
8438         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8439         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8440         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8441         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8442         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8443         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8444         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8445         * as/mcs51/Makefile.aslink: new module strcmpi
8446         * as/mcs51/Makefile.asx8051: new module strcmpi
8447         * as/mcs51/Makefil.bcc: new module strcmpi
8448         * as/mcs51/Makefile.in: new module strcmpi
8449         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8450
8451 2003-01-26    <johan AT balder>
8452
8453         * src/SDCCglue.c: reverted back to 1.124
8454         * src/SDCCast.c: reverted back to 1.156
8455         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8456
8457 2003-01-25    <johan AT balder>
8458
8459         * src/SDCCglue.c: A better fix for bug #661910
8460         * src/SDCCast.c: A better fix for bug #661910
8461         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8462
8463 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8464
8465         * src/Makefile.in: remove spawn.o
8466         * src/SDCCmain.c: remove spawn.h
8467         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8468         * src/spawn.c: removed
8469         * src/spawn.h: removed
8470         * support/regression/ports/ds390/spec.mk: link with -r
8471
8472 2003-01-24    <johan AT CP255758-A>
8473
8474         * src/ds390/gen.c (aopOp): fixed bug #667458
8475         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8476         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8477         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8478
8479 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8480
8481         * src/mcs51/peeph.def: better assembler identation by Frieder
8482         * src/mcs51/gen.c: better assembler identation by Frieder
8483
8484 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8485
8486         * as/z80/string.h: removed for gcc 3.2
8487         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8488         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8489
8490 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8491
8492         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8493         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8494         * support/regression/Makefile: separate temp files for ports
8495         * support/regression/generate-cases.py: separate temp files for ports
8496         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8497         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8498
8499 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8500
8501         * moved tinitalk to device/examples/ds390
8502
8503 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8504
8505         * as/mcs51/lkmem.c: rflag is for DS390
8506         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8507         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8508                          (linkEdit): move mem- and map-files the same way as ihx-files
8509         * src/z80/main.c (_setDefaultOptions): removed --generic
8510         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8511         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8512         * src/pic/glue.c (picglue): --c1mode works again
8513         * src/pic16/glue.c (pic16glue): --c1mode works again
8514         * src/asm.c (printCLine): fix #660034
8515
8516 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8517
8518         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8519         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8520         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8521         * as/mcs51/lkmem (summary): better fix for sp problem
8522         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8523         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8524         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8525                                               remove --stack-after-data
8526
8527 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8528
8529         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8530         * src/SDCCutil.c (join): ugly bug: missing '\0'
8531         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8532
8533 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8536         * src/port.h: typo
8537         * src/pic/main.c (_asmCmd): gpasm supports -o
8538         * src/z80/main.c: more general macros
8539         * device/lib/Makefile.in: remove intermediate files
8540
8541 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8542
8543         * .version: Bumped version number to 2.3.3
8544         * src/SDCCBBlock.c: new option -o
8545         * src/SDCCglobl.h: new option -o
8546         * src/SDCCglue.c: new option -o
8547         * src/SDCCmain.c: new option -o
8548         * src/asm.c: new option -o
8549         * src/ds390/main.c: new option -o
8550         * src/pic/glue.c: new option -o
8551         * src/pic/pcode.c: new option -o
8552         * src/pic/ralloc.c: new option -o
8553         * src/pic16/glue.c: new option -o
8554         * src/pic16/pcode.c: new option -o
8555         * src/pic16/ralloc.c: new option -o
8556         * src/z80/main.c: new option -o
8557         * device/lib/Makefile.in: use -o
8558         * support/regression/ports/ds390/spec.mk: use -o
8559         * support/regression/ports/gbz80/spec.mk: use -o
8560         * support/regression/ports/mcs51/spec.mk: use -o
8561         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8562         * support/regression/ports/z80/spec.mk: use -o
8563         * support/regression/ports/ucz80/spec.mk: use -o
8564         * support/regression/ports/xa51/spec.mk: use -o
8565         * support/regression/fwk/lib/timeout.c: fix usage string
8566
8567 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8568         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8569
8570 2003-01-07    <johan AT balder>
8571
8572         * src/SDCCast.c (decorateType): fixed bug #600035
8573
8574 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8575         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8576         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8577         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8578         * src/pic/pcode.c: outcommented unused variable to remove warnings
8579         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8580
8581 2003-01-06    <karl AT turbobit.com>
8582         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8583    regression tests.
8584
8585 2003-01-06    <johan AT balder>
8586
8587         * src/SDCCicode.c: fixed array add
8588
8589 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8590         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8591         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8592
8593 2003-01-04    <johan AT balder>
8594
8595         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8596
8597 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8598         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8599
8600 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8601         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8602         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8603
8604 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8605         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8606
8607 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8608         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8609
8610 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8611         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8612
8613 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8614
8615     * in \sdcc\as\mcs51\ changed these files in order to create an
8616     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8617     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8618     following files to include the previous two files: aslink.dsp,
8619     Makefile.aslink, Makefile.bcc, and Makefile.in.
8620
8621     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8622     .adb instead of .cdb
8623
8624 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8625
8626         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8627         value from option --iram-size.
8628
8629 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8630
8631         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8632         dram[] array.
8633
8634 2002-09-18    <wiml AT hhhh.org>
8635
8636         * SDCClrange.h: exposed setFromRange() and setToRange()
8637         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8638           packRegsForAccUse() (bug 542397)
8639         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8640           multiple times and emitting the fetch operations more than once
8641           added aopGetUsesAcc() function to allow binary operators to
8642           fetch their operands in the correct order; made genMinus() emit
8643           compact code for X = LITERAL - Y
8644
8645 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8646         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8647         sprintf() in line 1267.
8648
8649 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8650         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8651         like ports.
8652
8653 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8654         Changes to aslink (All the changes are marked with 'JCF'):
8655
8656         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8657         summary().
8658
8659         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8660         area BSEG.  Also moves, if possible, the DATA area down into the internal
8661         ram so more space is available.
8662
8663         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8664         sflag.
8665
8666         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8667         not bytes.  Function summary() which creates a memory usage summary
8668         file with extension .mem.  Reports of overlaping stack and small stack
8669         size.  If the space for the stack is less than 16 bytes aslink trows a
8670         warning.
8671
8672         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8673         the 8051.  Option 'y' for memory summary output file.
8674
8675         Changes to sdcc (All the changes are marked with 'JCF'):
8676
8677         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8678
8679         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8680         overlaying area for it (uses RegBankUsed[4]).
8681
8682         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8683         bank zero as used by default.  By default aslink locates the stack
8684         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8685         the creation of the .mem file.  Delegates the allocation of data area
8686         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8687         the begining of the stack area to aslink.
8688
8689         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8690         glue() in SDCCglue.c creates an area for it.
8691
8692 2002-09-03  Borut Razem <borut.razem AT siol.net>
8693         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8694         sdcc/src/pic/glue.c:
8695         introduced atexit() handler for teporay files removal in case of
8696         errors, assertions, ...
8697
8698 2002-08-29  Borut Razem <borut.razem AT siol.net>
8699         * sdcc/support/cpp2/auto-host_vc_in.h:
8700         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8701         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8702         Maybe there is a similar problem with BORLANDC? It should be checked!
8703
8704         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8705         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8706         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8707         was not executed, and the compiler (cl) launched a warning:
8708         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8709
8710 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8711         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8712
8713 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8714         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8715
8716         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8717           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8718           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8719           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8720           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8721           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8722           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8723         - added Release configuration in VS projects
8724         - review of compiler an linker options
8725         - VC .exe files are generated in bin_vc directory, not to interfere
8726           with binaries generated from other projects (cygwin, mingw, bcc ...)
8727
8728         * sdcc/src/yacc.dsp: added
8729
8730         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8731         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8732         and insert the version number definitions from .version
8733
8734         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8735
8736         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8737         added - genarate auto-host.h using auto-host_vc_in.h as template
8738
8739         * sdcc/sdcc_vc.h,
8740         removed from CVS, generated automatically
8741
8742 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8743         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8744
8745 2002-08-11  Borut Razem <borut.razem AT siol.net>
8746         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8747
8748 2002-08-10  Borut Razem <borut.razem AT siol.net>
8749         * src/SDCCmain.c (main):
8750         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8751         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8752         The consequence was that some temporary files were not removed.
8753
8754         * src/SDCCglue.c:
8755         unification of code in functions tempfilename() and tempfile():
8756         function tempnam() is defined in Visual Studio 6.0 and .NET
8757
8758         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8759
8760         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8761           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8762         - removed compiler command line option /WX: Treats all warnings as errors
8763         - update a list of source files, included into the project
8764
8765         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8766           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8767         changed project type to Generic Project so that can be correcly converted to VS.NET project
8768
8769         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8770
8771         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8772
8773         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8774
8775         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8776         added return 0 statements after assert() to make compiler happy
8777
8778         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8779         added newline in the def file to keep MSC compiler satisfied
8780
8781         * sdcc/src/z80/gen.c:
8782         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8783           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8784         - solved MSC error in function aopDump()
8785
8786         * sdcc_vc.h: define PREFIX as "\\sdcc"
8787
8788 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8789         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8790
8791 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8792         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8793         - Rewrote the register banking algorithm.
8794         - Added pCode live-range analysis to registers (for now, only non-used and
8795         singly-used registers optimized away)
8796
8797         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8798
8799         * 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.
8800
8801 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8802         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8803
8804 2002-04-22  Michael Hope  <michaelh AT vroom>
8805
8806         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8807
8808         * configure.in (DD_COPT): Added include support required for gbdk.
8809
8810         * .version: Bumped version number just to increase it.
8811
8812         * src/SDCCmain.c: Added -nostdinc to the default options.
8813
8814 2002-04-15  Michael Hope  <michaelh AT vroom>
8815
8816         * device/lib/z80/printf.c (sprintf): Added.
8817
8818         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8819
8820         * src/z80/peeph.def: Added transpose redundent load rule.
8821
8822         * src/z80/main.c: Added force callee saves for jaune.
8823
8824         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8825
8826         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8827
8828 2002-03-28  Johan Knol  <johan AT balder>
8829
8830         * src/SDCCval.c: fixed bug #532436
8831
8832 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8833         * /src/port.h:
8834         Added "char *Processor" field to the port structure.
8835
8836         * /src/SDCCmain.c:
8837         Added -p option. Allows port dependent processor to be specified.
8838
8839         * all ports:
8840         Initialized the new field char *Processor field to NULL in all ports
8841
8842         * /src/pic/*:
8843         Compiler generated registers for interrupt context saving
8844         were not getting allocated.
8845
8846 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8847
8848         * /src/SDCCast.c:
8849         Fixed left shift. Will promote the left side of a left shift
8850         if a) left shifting more than size of operand or b) when assigned
8851         to something size > size of left side
8852
8853 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8854         * src/pic/*
8855         tons of changes. Register allocation has been
8856         rewritten. Added customization for the various PICs. Flow
8857         analysis is restructured. ...
8858
8859         * src/pic/device.h:
8860         Added
8861
8862         * src/pic/device.c:
8863         Added. device.c is a PIC port hack to accomodate variations
8864         in PIC devices.
8865
8866 2002-03-13  Michael Hope  <michaelh AT vroom>
8867
8868         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8869
8870 2002-03-04  johanknol  <johanknol AT manik>
8871
8872         * /src/SDCCval.c: fixed
8873
8874         const unsigned char arr[][2] = { { 0, 1 } };
8875         t18.c:1: error: Initializer element is not constant
8876
8877 2002-03-04  bela  <bela AT manik>
8878
8879         * /device/include/mcs51reg.h:
8880         ds89c420 register definition update
8881
8882 2002-03-03    <johan AT FRIJA>
8883
8884         * support/Util/SDCCerr.c: did something, but don't no why anymore
8885
8886         * support/regression/tests/bug-524691.c: made it a little less shy
8887
8888         * src/SDCCast.c (decorateType): fixed bug #524697
8889
8890         * src/SDCCast.c: made some lineno improvements
8891
8892         * src/SDCCval.c (getNelements): changed warning to error
8893
8894         * src/SDCCglue.c (printIvalArray): changed warning to error
8895
8896         * src/SDCCicode.c: fixed a warning for mingw
8897
8898         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8899
8900         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8901
8902 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8903
8904         * src/ds390/peeph.def:
8905         Added some more peephole rules
8906
8907         * src/ds390/gen.c: Various fixes & enhancements
8908
8909         * src/SDCClrange.c, src/SDCClrange.h:
8910         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8911
8912         * src/ds390/ralloc.c:
8913         various fixes & enhancements (ds390) specific
8914
8915         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8916         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8917         from rallocs.
8918
8919         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8920
8921 2002-03-02    <johan AT FRIJA>
8922
8923         * src/SDCCast.c (decorateType): fixed bug #524708
8924
8925         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8926
8927         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8928
8929 2002-03-01  Michael Hope  <michaelh AT vroom>
8930
8931         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8932
8933         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8934
8935 2002-03-01    <johan AT FRIJA>
8936
8937         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8938
8939         * src/SDCCast.c (decorateType): fixed bug #524209
8940
8941         * src/SDCCval.c (valNot): fixed bug #524195
8942
8943 2002-02-26    <johan AT balder>
8944
8945         * src/xa51/gen.c: fixed a warning
8946
8947         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8948
8949         * src/SDCCast.c (decorateType): fixed bug #522534
8950
8951 2002-02-23    <johan AT balder>
8952
8953         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8954
8955 2002-02-22    <johan AT balder>
8956
8957         * src/SDCCast.c: fixed bug #514865
8958
8959         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8960
8961 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8962
8963         * sdcc/src/SDCCloop.c:
8964         Previous fix was not good. basic blocks that have "break" or "return" are
8965         not really partof a loop , but live ranges used in these blocks should
8966         be live thru the entire loop, so set partOfLoop but don't add them to
8967         loop region
8968
8969 2002-02-21    <johan AT FRIJA>
8970
8971         * src/SDCCcse.c: fixed bug #514308
8972
8973 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8974
8975         * src/SDCCloop.c:
8976         Fixed BUG #519583. If a conditional block ended in a return/break
8977         statement inside a loop, it was not being considered part of the loop.
8978
8979         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8980
8981 2002-02-10  Karl Bongers <karl AT turbobit.com>
8982
8983         * debugger/*:
8984         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8985         with lots of comments and notes.
8986
8987         * device/examples/test2.c:
8988         Fix bug, "red" variable not being initialized(compiler complained).
8989
8990         * device/examples/Makefile, examples/test3.c:
8991         Add Makefile in device/examples folder, compiles test3.c
8992         for use as a multiple module SDCDB test case.
8993
8994         * sim/ucsim/cmd.src/cmdset.cc:
8995         Took out debug printfs in ucsim "next" command.
8996
8997         * sim/ucsim/xa.src:
8998         Karl and Johan start ucsim XA support.  Most dissassembly working,
8999         about 75% emulation done(plenty of work remaining).
9000
9001         * sim/ucsim/z80.src:
9002         Add Z80 support to ucsim, add test-ucz80 regression test,
9003         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9004         Notice z80 compiler fails on examples/test3.c/crc code.
9005
9006 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9007
9008         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9009         Added support for --parms-in-bank1
9010
9011         * src/ds390/peeph.def:
9012         added a few more peephole optimzations
9013
9014         * src/ds390/main.c:
9015         1) added __builtin_inp & __builtin_outp used to read in data of given length
9016            from a memory mapped port
9017         2) added __builtin_memcmp
9018         3) added __builtin_swapw swap bytes of a short
9019
9020         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9021         1) handle multiple send & receives from register bank1
9022         2) ralloc can now allocate DPTR1 to some liveRanges
9023
9024         * src/SDCCsymt.c, src/SDCCsymt.h:
9025         changes to handle multiple sends & receives
9026
9027         * src/SDCCptropt.h:
9028         added some pointer arithmetic optimization
9029
9030         * src/SDCCptropt.c:
9031         added some pointer arithmetic optimizations but not stable yet so not
9032         called from anywhere (will get this working shortly)
9033
9034         * src/SDCCopt.c: fixed for multiple sends & receives
9035
9036         * src/SDCCmain.c:
9037         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9038         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9039            set preprocessor defines (depending on options)
9040
9041         * src/SDCCicode.c, src/SDCCicode.h:
9042         changes made to handle multiple sends & receives
9043
9044         * src/SDCCglobl.h:
9045         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9046
9047         * src/SDCCcse.c, src/SDCCcse.h:
9048         added function findbackward def (to be used in upcoming optimization)
9049
9050         * src/SDCCcflow.c, src/SDCCcflow.h:
9051         added function returnAtEnd - to determine if a basic block terminates with
9052         a RETURN iCode
9053
9054         * src/SDCCast.c, src/SDCCast.h:
9055         added option parms-in-bank1
9056
9057         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9058         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9059         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9060         adjusted for --parms-in-bank1 option
9061
9062         * device/include/string.h:
9063         donot redefine "reentrant" keyword
9064
9065         * device/include/ds80c390.h: Added some more SFRs
9066
9067 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9068
9069         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9070
9071 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9072
9073         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9074
9075 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9076
9077         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9078
9079 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9080
9081         * Added --xram-movc option
9082
9083 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9084
9085         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9086
9087 2002-01-11  Johan Knol
9088
9089         * Added math lib of Jesus Calvino-Fraga
9090
9091 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9092
9093         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9094         * support/regression/Makefile: new target test-mcs51-stack-auto
9095         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9096
9097 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9098
9099         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9100
9101 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9102
9103         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9104
9105 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9106
9107         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9108
9109         * src/SDCCglue.h: add definition for printIvalChar()
9110
9111 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9112
9113         * src/SDCCast.c: fix #498138 by Johan
9114
9115         * src/SDCCglue.c: fix #498138 by Johan
9116
9117 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9118
9119         * support/regression/Makefile: fix clean
9120
9121         * support/regression/ports/ds390/support.c: fix transmission of last character
9122
9123 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9124
9125         * /sdcc/src/ds390/gen.c:
9126         a) improved computing address of stack variable
9127         b) took out some #if 0 code
9128         c) improved parmBytes adjustment
9129         d) improved genPlusIncr & genMinusIncr
9130         e) genCmp could generate bad code (when left assigned to DPTR)
9131         f) Fixed bug in hasInc
9132
9133         * /sdcc/src/ds390/ralloc.c:
9134         a) packRegsForSupport could mess up live information (Fixed)
9135         b) packRegsDPTRuse could be incorrect for left & right shift
9136
9137         * /sdcc/src/mcs51/ralloc.c:
9138         packRegsForSupport could mess up the live information (Fixed)
9139
9140         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9141
9142         * /sdcc/src/SDCCast.c:
9143         can reverse a loop even if function call is present as long
9144         as the loop control variable is local & is not passed as parameter
9145
9146 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9147
9148         * /sdcc/ChangeLog: *** empty log message ***
9149
9150         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9151         More builtin function additions for TININative
9152
9153         * /sdcc/src/ds390/ralloc.c:
9154         Had broken the regression testsuite
9155
9156         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9157
9158         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9159         Added funcattr hasStackParms will be set for reentrant functions when there
9160         are paramteres on the stack, this helps in minimizing frame pointer generation
9161         typeFromStr can handle function pointers now
9162
9163         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9164         *** empty log message ***
9165
9166 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9167
9168         * /src/ds390/gen.c, /src/ds390/main.c:
9169         More builtin function additions for TININative
9170
9171         * /src/ds390/ralloc.c:
9172         Had broken the regression testsuite
9173
9174         * /src/SDCCast.c: Fixed a bug in dumptree
9175
9176         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9177         Added funcattr hasStackParms will be set for reentrant functions when there
9178         are paramteres on the stack, this helps in minimizing frame pointer generation
9179         typeFromStr can handle function pointers now
9180
9181         * /doc/builtins.txt, /doc/TININative.txt:
9182         *** empty log message ***
9183
9184
9185 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9186
9187         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9188         ALPHA version for -mTININative
9189
9190         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9191         updated to reflect changes in the port structure
9192
9193         * /src/port.h:
9194         added function do_assemble (similar to do_link) if non-null this function
9195         will be called to do assembly (-mTININative) requires a multi command
9196         assembly
9197         added function genAssemblerEnd will be called to generate assembler Epilogue
9198
9199         * /src/SDCCsymt.c:
9200         added _JavaNative to debug info printing
9201
9202         * /src/SDCCmain.c: added option --tini-libid
9203         added port->do_assemble function (-mTININative) has a multi command assemble
9204
9205         * /src/SDCCglue.c: Disabled "constExpr" check
9206         added port->genAssemblerEnd function
9207
9208         * /src/SDCCglobl.h: Added option --tini-libid value
9209
9210         * /src/SDCCast.h:
9211         tookout optimizeCompare from the header (has no external references)
9212
9213         * /src/SDCCast.c: made one more function "static"
9214
9215 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9216
9217         * src/z80/mappings.i: Added z80asm support.
9218
9219         * src/z80/main.c: Added z80asm support on --asm=z80asm
9220
9221         * src/z80/gen.c: Fixed asm portability issues.
9222
9223         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9224
9225         * src/SDCCglue.c (printExterns): Added global/extern split.
9226
9227 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9228
9229         * support/regression/Makefile: added test for mcs51 model large
9230
9231         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9232
9233         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9234
9235 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9236
9237         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9238
9239 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9240
9241         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9242
9243         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9244
9245 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9246
9247         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9248
9249         * support/regression/tests/simplefloat.c: Port to mcs51.
9250
9251 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9252         * support/regression/tests/bug-485362.c: Added.
9253
9254         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9255
9256         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9257
9258         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9259
9260         * src/z80/gen.c (aopDump): Added a dump function.
9261
9262 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9263         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9264
9265         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9266
9267         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9268
9269         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9270
9271         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9272
9273         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9274
9275         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9276
9277         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9278
9279         * support/regression/ports/ds390/support.c: Use tinibios.
9280
9281         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9282
9283 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9284
9285         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9286         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9287
9288         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9289
9290         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9291
9292 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9293
9294         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9295
9296         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9297         (packRegsForIYUse): Created and optimised.
9298
9299 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9300
9301         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9302 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9303
9304         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9305
9306         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9307
9308         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9309
9310 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9311
9312         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9313
9314         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9315
9316 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9317
9318         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9319
9320         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9321
9322         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9323
9324 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9325
9326         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9327         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9328         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9329
9330         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9331
9332         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9333         (genNotFloat): Added.
9334         (genUminusFloat): Added.
9335
9336         * device/lib/z80/Makefile: Added floating pt stubs.
9337
9338         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9339
9340         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9341
9342         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9343
9344 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9345
9346         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9347
9348         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9349
9350         * sdcc/support/regression/Makefile: Add port ds390.
9351
9352         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9353
9354         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9355
9356         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9357
9358         * sdcc/support/regression/ports/ds390/support.c: Added.
9359
9360         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9361
9362         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9363
9364         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9365
9366 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9367
9368         * device/include/malloc.h: Added z80 and gbz80 support.
9369
9370         * device/lib/gbz80/heap.s: Added.
9371
9372         * device/lib/z80/heap.s: Added.
9373
9374         * device/lib/malloc.c: Added z80 and gbz80 support.
9375
9376         * support/regression/tests/malloc.c (testMalloc): Added.
9377
9378         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9379
9380         * support/regression/tests/bug-478094.c: Added.
9381
9382         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9383
9384 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9385
9386         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9387
9388         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9389
9390         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9391
9392         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9393
9394         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9395
9396 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9397
9398         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9399
9400 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9401
9402         * support/regression/tests/bug-477927.c: Added.
9403
9404         * src/z80/peeph.def: Added minor rules.
9405
9406         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9407
9408         * src/z80/peeph.def: Added jump optimisation modification.
9409
9410 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9411
9412         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9413
9414 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9415
9416         * support/regression/tests/funptrs.c: Added.
9417
9418 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9419
9420         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9421
9422 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9423
9424         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9425
9426         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9427
9428         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9429         (movLeft2ResultLong): Created.
9430
9431         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9432         (joinPushes): Added.  Joins two char pushes into a word push.
9433
9434 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9435
9436         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9437
9438         * support/makebin/Makefile (install): Added creation of dest dir.
9439
9440 2001-10-24 Karl Bongers <karl AT turbobit.com>
9441
9442         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9443
9444 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9445
9446         * src/z80/ralloc.c: Turned off faulty pack for one use.
9447
9448         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9449
9450         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9451
9452 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9453
9454         * support/regression/Makefile: Improved clean
9455
9456         * support/regression/ports/gbz80/spec.mk: Added clean
9457
9458         * support/regression/ports/host/spec.mk: Added clean
9459
9460         * support/regression/ports/z80/spec.mk: Added clean
9461
9462         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9463
9464         * support/regression/ports/mcs51/timeout.c: little improvements
9465
9466 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9467
9468         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9469
9470         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9471
9472         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9473
9474 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9475
9476         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9477
9478         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9479
9480 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9481         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9482
9483         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9484
9485         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9486
9487         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9488
9489         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9490
9491         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9492
9493         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9494
9495         * support/regression/tests/longor.c: Added.
9496
9497 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9498
9499         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9500
9501         * as/mcs51/aslink.h: define PATH_MAX
9502
9503         * as/mcs51/asm.h: define PATH_MAX
9504
9505         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9506
9507         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9508
9509         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9510
9511         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9512
9513         * src/SDCCglobl.h: define PATH_MAX
9514
9515         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9516
9517         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9518
9519 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9520
9521         * src/z80/gen.c (gencjneshort): Fixed
9522
9523         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9524
9525 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9526
9527         * support/regression/tests/bug-469671.c: Added.
9528
9529         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9530
9531 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9532
9533         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9534
9535         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9536
9537 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9538
9539         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9540
9541         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9542
9543         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9544
9545         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9546
9547         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9548
9549         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9550
9551         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9552
9553 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9554
9555         * 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.
9556
9557         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9558
9559         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9560
9561 2001-10-07    <johan AT FRIJA>
9562
9563         * device/lib/gets.c (gets): fixed the return value.
9564
9565 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9566         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9567
9568         * 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.
9569
9570         * 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.
9571
9572         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9573
9574         * src/pic/gen.c: Removed Safe_strdup.
9575
9576         * configure.in: Added option to enable libgc support.
9577
9578         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9579         (bitVectUnion): Optimised.
9580         (bitVectIntersect): Optimised.
9581         (bitVectBitsInCommon): Optimised.
9582         (bitVectCplAnd): Optimised.
9583
9584         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9585
9586 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9587
9588         * src/SDCCmain.c: distinguish between assembler debug and plain options
9589
9590         * src/avr/main.c:   remove standard assembler options
9591
9592         * src/ds390/main.c: remove standard assembler options
9593
9594         * src/mcs51/main.c: remove standard assembler options
9595
9596         * src/port.h: removed "PENDING" comment
9597
9598 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9599
9600         * src/device/lib/_mulint.c  : new, with assember functions
9601
9602         * src/device/lib/_mullong.c : new, with assember functions
9603
9604         * src/device/lib/_divuint.c : with assember functions
9605
9606         * src/device/lib/_divsint.c : with assember functions
9607
9608         * src/device/lib/_divulong.c: with assember functions
9609
9610         * src/device/lib/_divslong.c: with assember functions
9611
9612         * src/device/lib/_moduint.c : with assember functions
9613
9614         * src/device/lib/_modsint.c : with assember functions
9615
9616         * src/device/lib/_modulong.c: with assember functions
9617
9618         * src/device/lib/_modslong.c: with assember functions
9619
9620         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9621
9622         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9623
9624         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9625                                       replaced _mululong.c and _mulslong.c by _mullong.c
9626
9627 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9628
9629         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9630
9631 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9632
9633         * src/SDCCglue.c: test, if win32api is available for MINGW
9634
9635 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9636
9637         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9638         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9639         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9640         * support/regression/ports/host/spec.mk: removed GENERIC
9641         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9642         * support/regression/ports/z80/spec.mk: removed GENERIC
9643
9644 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9645
9646         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9647
9648         * support/regression/tests/bug-467035.c: Created.
9649
9650 2001-10-01    <johan AT FRIJA>
9651
9652         * src/SDCC.y: fixed bug #466586 part 1
9653
9654 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9655
9656         * SDCCicode.c: z80 has no generic pointers
9657         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9658
9659 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9660
9661         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9662
9663 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9664
9665         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9666
9667         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9668
9669 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9670
9671         * configure.in: Fixed up so that ucsim is only configured once.
9672
9673         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9674
9675         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9676         (getPathDifference): As above.
9677
9678         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9679
9680         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9681
9682 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9683         * .version: Updated to 2.3.1
9684
9685         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9686         Added copyright header.
9687
9688         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9689         (assemble): Added support for macro based assembler commands.
9690         (linkEdit): Added support for macro based linker commands.
9691         (preProcess): Changed the pre-processor to use macros.
9692         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9693         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9694
9695         * device/lib/z80/crt0.s: Added module name for debugging.
9696
9697 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9698
9699         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9700
9701         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9702
9703         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9704
9705         * src/Makefile.in: Added SDCCmacro and SDCCutil
9706
9707 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9708
9709         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9710
9711 2001-09-16    <johan AT FRIJA>
9712
9713         * 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.
9714
9715 2001-09-15    <johan AT FRIJA>
9716
9717         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9718         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9719
9720 2001-09-11    <johan AT FRIJA>
9721
9722         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9723
9724 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9725
9726         * support/regression/tests/bug-460444.c: Added test case.
9727
9728         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9729         (genCast): Added justification for all of the asserts.
9730
9731 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9732
9733         * support/regression/support.c: _xdata replaced by xdata
9734
9735         * support/regression/spec.mk: removed _generic
9736
9737 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9738
9739         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9740
9741         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9742         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9743
9744         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9745
9746         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9747
9748         * support/regression/tests/bug-460010.c: Added test case.
9749
9750         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9751
9752 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9753
9754         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9755
9756         * support/regression/testfwk.c: removed workaround for bug #436344
9757
9758         * support/regression/tests/bp.c: use less memory with mcs51
9759
9760         * support/regression/tests/bug-441448.c: use less memory
9761
9762         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9763
9764         * support/regression/collate-results.py: typo
9765
9766 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9767
9768         * support/regression/tests/fetchoverlap.c: Added new test case.
9769
9770         * support/regression/tests/bp.c: Added new test case.
9771
9772         * support/regression/tests/bug-448984.c: Added new test case.
9773
9774         * support/regression/tests/pow2shifts.c: Added new test case.
9775
9776         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9777         (genlshTwo): Fixed right shift for count > 8.
9778
9779         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9780
9781 2001-09-08    <johan AT FRIJA>
9782
9783         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9784
9785 2001-09-07    <johan AT FRIJA>
9786
9787         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9788
9789         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9790
9791 2001-09-06    <johan AT FRIJA>
9792
9793         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9794         * bernhard noted me at this: "() equals to (void)" (1.38)
9795
9796 2001-09-05    <johan AT FRIJA>
9797
9798         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9799
9800 2001-09-04    <johan AT FRIJA>
9801
9802         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9803
9804
9805 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9806
9807         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9808
9809 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9810
9811         * link/z80/aslink.h: Fixed path for PATH_MAX
9812
9813 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9814
9815         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9816
9817         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9818
9819         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9820
9821         * 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.
9822
9823 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9824
9825         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9826         (genCmp): Fixed up genCmp for the GB with longs.
9827
9828         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9829
9830         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9831
9832         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9833
9834         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9835
9836 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9837
9838         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9839
9840 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9841
9842         * 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.
9843
9844         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9845
9846 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9847
9848         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9849
9850         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9851
9852 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9853
9854   * sim/ucsim/configure:    little improvement of Cygwin-detection
9855   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9856   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9857   * support/regression/tests/bug-221100.c: small changes for mcs51
9858   * support/regression/tests/bug-221168.c: small changes for mcs51
9859   * support/regression/tests/bug-227710.c: small changes for mcs51
9860   * support/regression/tests/staticinit.c: small changes for mcs51
9861   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9862   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9863   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9864
9865 $Revision$