]> git.gag.com Git - fw/sdcc/blob - ChangeLog
2c55b61731dfcf59a34077ecb480cd754c88833e
[fw/sdcc] / ChangeLog
1 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/SDCCast.c (addCast): added promotion for bit variables
4         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
5         promotion casts + optimisation
6         (optimizeGetWord): fix warning 'i' might be used uninitialized
7         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
8         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
9
10 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
11
12         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
13         all chars are promoted to int; promotion should be handled in SDCCast.c
14
15 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
16
17         * device/lib/_strcmp.c: Fixed bug 1326457
18
19 2005-10-11 Raphael Neider <rneider AT web.de>
20
21         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
22         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
23
24 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
25
26         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
27         * support/regression/tests/sfr16.c: added test for the sfr32 bug
28
29 2005-10-04 Raphael Neider <rneider AT web.de>
30
31         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
32           device/lib/pic16/pics.all: added pic18f1320
33         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
34
35 2005-09-30 Raphael Neider <rneider AT web.de>
36
37         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
38         * src/pic16/devices.inc: NEW, provides device descriptions
39         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
40
41 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
42
43         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
44           GETHBIT
45
46 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
47
48         * doc/sdccman.lyx: updated Highest Order Bit documentation,
49           documented Any Order Bit, Higher Order Byte and Higher Order Word
50         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
51         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
52           (optimizeGetAbit): new, to get any bit, not only the high bit,
53           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
54           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
55           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
56           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
57             RIGHT_OP: also try GETBYTE, GETWORD optimization,
58             GETABIT, GETBYTE, GETWORD: decorate them,
59           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
60           (ast_print): added GETABIT, GETBYTE, GETWORD
61         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
62         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
63           (geniCodeBinary): new generic binary icode,
64           (ast2iCode): added GETABIT, GETBYTE, GETWORD
65         * src/port.h: updated comment for PORT.hasExtBitOp
66         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
67           (genGetByte): new, to get a single byte,
68           (genGetWord): new, to get a word from a long,
69           (gen51Code): added GETABIT, GETBYTE, GETWORD
70         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
71
72 2005-09-23 Raphael Neider <rneider AT web.de>
73
74         * configure.in, configure: have device/lib/pic configured
75         * device/lib/Makefile.in: added model-pic14
76         * device/lib/clean.mk: added pic/ to clean rule
77         * device/lib/pic: added rudimentary pic14 library providing support
78           functions for multiplication/division/generic pointer access
79         * src/SDCCopt.c (convilong): mark support functions as extern
80           for pic14 port as well
81         * src/pic/gen.c (genMult): added assertions,
82           (genpic14Code): emit warning on unhandled iCodes
83         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
84         * src/pic/pcode.c (pCodeOpCopy),
85         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
86           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
87           SFR_REGISTER}), made safe for future extensions
88         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
89           instructions even if preceeded by SKIP instructions (also remove
90           them); removed unused code
91         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
92           prevents leaving parts of the structure uninitialized after copying
93
94 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
95
96         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
97           ago by me
98         * support/regression/tests/addsub.c: added test for the bug
99
100 2005-09-21 Raphael Neider <rneider AT web.de>
101
102         * device/include/pic16/pic18f1220.h,
103           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
104         * device/lib/pic16/Makefile.rules: added missing opening paren
105         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
106           are provided in genutils.c,
107           (genUminusFloat,genUminus,genCmpEq): added asserts on different
108           operand/result sizes,
109           (genCmp): assert on NULL pointers first, then check deref'ed values
110         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
111           result size
112
113 2005-09-18 Raphael Neider <rneider AT web.de>
114
115         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
116           as these are now unused,
117           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
118         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
119           local, avoids uninitialized pointer dereference on r->name
120         * src/pic16/ralloc.c (newReg): fixed indentation
121
122 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
123
124         * src/SDCCval.c (constVal): fixed bug 730366
125         * support/Util/SDCCerr.c,
126         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
127
128 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
129
130         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
131
132 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
133
134         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
135
136 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
137
138         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
139           (hex2dec): made hex_digit unsigned char, removed ascii dependance
140         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
141           (hex2dec): made hex_digit unsigned char, removed ascii dependance
142         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
143         * packihx/packihx.c (hexDigit): made c unsigned char
144         * as/mcs51/lklibr.c (fndsym),
145         * link/z80/lkgb.c (gb),
146         * link/z80/lklibr.c (fndsym),
147         * link/z80/lkrloc.c (relr),
148         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
149         * src/SDCC.lex (checkCurrFile, process_pragma),
150         * src/SDCCglue.c (spacesToUnderscores),
151         * src/SDCCmain.c (setParseWithComma, processFile),
152         * src/asm.c (tvsprintf, printCLine),
153         * src/avr/gen.c (emitcode, aopPut),
154         * src/ds390/gen.c (emitcode),
155         * src/hc08/gen.c (emitcode, emitinline),
156         * src/mcs51/gen.c (emitcode, genInline),
157         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
158           tokenizeLineNode),
159         * src/pic/ralloc.c (debugLog),
160         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
161           tokenizeLineNode),
162         * src/pic16/ralloc.c (debugLog),
163         * src/z80/main.c (_process_pragma):
164            made all ctype.h function calls safe
165         * src/SDCCopt.c: include math.h for fabs
166         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
167           and used them throughout the code to make ctype.h function calls safe
168         * src/ds390/main.c (asmLineNodeFromLineNode),
169         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
170         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
171            unsigned char*
172         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
173           (newpCodeAsmDir): made ctype.h function calls safe
174         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
175           pic16_emitcode):  made lbp unsigned char*
176         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
177           (pic16_newpCodeAsmDir): made ctype.h function calls safe
178         * src/xa51/gen.c (emitcode),
179         * src/z80/gen.c (_emit2): made lbp unsigned char*
180         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
181            char*
182
183 2005-09-05 Raphael Neider <rneider AT web.de>
184
185         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
186           access bank splitpoint
187
188 2005-09-05 Raphael Neider <rneider AT web.de>
189
190         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
191
192 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
193
194         * .version: changed to version 2.5.3
195         * doc/sdccman.lyx: changed version to 2.5.3,
196           documented --codeseg and --constseg and pragma codeseg and constseg,
197           documented bit parameters (reentrant) and bit returning
198         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
199            currFunc->recvSize, but is this ok for all ports?
200           (ast2iCode): result of ~ on unsigned char must be cast to int for
201            bool to work
202         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
203           function pointers in bit space
204         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
205           (processFuncArgs): call port.reg_parm() with reentrancy info
206         * src/port.h,
207         * src/avr/main.c,
208         * src/ds390/main.c,
209         * src/hc08/main.c,
210         * src/pic/main.c,
211         * src/pic16/main.c,
212         * src/xa51/main.c,
213         * src/z80/main.c: port.reg_parm prototype extended with
214           "bool reentrant" parameter
215         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
216           options.stackAuto for allocating bit register parameters
217         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
218           (genSend): set BitBankUsed if it is,
219           (selectRegBank): factored out of genCall for use in genPcall,
220           (genCall): removed redundant dtype assignmen, use selectRegBank,
221           (genPcall): handle returning in Carry properly, save in F0 if needed,
222           (genReceive): handle bit register parameters
223         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
224           (mcs51_assignRegisters): enable bit registers for all reentrant
225            functions and don't set BitBankUsed unconditionally
226         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
227         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
228         * support/regression/tests/funptrs.c: added tests for BOOL and for return
229
230 2005-08-27 Borut Razem <borut.razem AT siol.net>
231
232         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
233         ppc-osx (Darwin) does not support -u option. It seems that it is
234         supported only on Linux - GNU cp
235
236 2005-08-25 Borut Razem <borut.razem AT siol.net>
237
238         * sim/ucsim/gui.src/serio.src/Makefile.in,
239           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
240           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
241           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
242           install and strip, since the strip at /usr/ccs/bin should be used
243           on solaris
244
245 2005-08-24 Borut Razem <borut.razem AT siol.net>
246
247         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
248
249 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
250
251         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
252         ffffffffu
253
254 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
255
256         * as/mcs51/aslink.h: completed lkrloc.c prototypes
257         * as/mcs51/lkmain.c (link_main): fixed warning
258         * device/include/stdbool.h: ds390 has no advanced bit support yet
259         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
260         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
261         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
262           and updated their macros
263         * src/SDCCval.c (constVal): updated comment for renamed b_long
264
265 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
266
267         * as/mcs51/asdata.c: changed ctype['['] to BINOP
268         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
269           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
270           (oprio): set priority for '['
271         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
272            and adb_24_bit
273         * as/mcs51/asm.h: added defines R_BIT and S_BIT
274         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
275         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
276         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
277           added overlayable BIT_BANK area
278         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
279           (summary2): explain 'T' in legenda
280         * as/mcs51/lkrloc.c: replaced old K&R style,
281           (relr): added R_BIT processing,
282           (errmsg): added "Bit-addressable relocation error",
283           (adb_bit): added for converting from byte- to bit-addressable space,
284           (adb_24_bit): added for converting from byte- to bit-addressable space
285         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
286            used in reentrant functions now even as return value
287         * device/lib/_gptrput.c (_gptrput): removed obsolete code
288         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
289           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
290         * src/SDCCglobl.h: added indicator BitBankUsed
291         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
292            the bit registers b0-b7
293         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
294           (geniCodeCast): fixed bug 1263853,
295           (geniCodeLogicAndOr): put result in bool or char,
296           (geniCodeReceive): added parameter func for accessing the return type,
297           (geniCodeFunctionBody): pass func to geniCodeReceive
298         * src/SDCCmain.c: added indicator BitBankUsed
299         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
300         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
301           (checkSClass): don't put automatic bool/bit on stack,
302           (checkFunction): removed check on function cannot return bit
303         * src/SDCCsymt.h: added newBoolLink prototype
304         * src/mcs51/gen.c (rb1regs): added bit registers,
305           (movc): created for assigning to carry,
306           (pushReg, popReg): created for pushing registers,
307           (sameRegs): check both AOP_REG and AOP_CRY types,
308           (aopOp): handle bit registers,
309           (aopPut): optimization no self-assign,
310           (saveRegisters): push reg->base (bits) only once for bit registers,
311            and use pushReg,
312           (unsaveRegisters): pop reg->base only once and use popReg,
313           (assignResultValue): added parameter func and return in carry for bits,
314           (genIpush): optimization no reload in A if not changed,
315           (genSend): bit parameters in reentrant functions are passed in bit
316            registers by first assigning to bits in B, then save registers and
317            copy B to bits,
318           (genCall): handle returning in Carry properly, save it in F0 if needed,
319           (genPcall): updated assignResultValue call, this is not safe yet for bit
320            returning function !!!
321           (genFunction): don't generate equ's for bit registers and use pushReg,
322           (genEndFunction): take care of bit returning functions and use popReg,
323           (genRet): return bit in Carry,
324           (genIfx): optimize bit registers and other directly addressable bits,
325           (genReceive): updated assignResultValue call
326         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
327           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
328            registers when using stack-auto
329         * src/mcs51/ralloc.c (_G): added allBitregs,
330           (regs8051): added the bit registers,
331           (createStackSpil): use macro IS_BIT,
332           (getRegBit): added to allocate a bit register, else spill,
333           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
334           (updateRegUsage): factored out to ease stepping while debugging,
335           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
336            also allocate bit registers,
337           (fillGaps): handle bit registers,
338           (findAllBitregs): added to create bit vector with all bit registers,
339           (mcs51_allBitregs): returns this bit vector,
340           (mcs51_assignRegisters): when using stack-auto use bit registers for
341            passing parameters and creating local variables
342         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
343
344 2005-08-22 Borut Razem <borut.razem AT siol.net>
345
346         * device/lib/Makefile.in: replaced find option -or with -o
347           to make it run on solaris
348
349 2005-08-22 Raphael Neider <rneider AT web.de>
350
351         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
352           fixes #1265442 (crash on Solaris)
353
354 2005-08-20 Borut Razem <borut.razem AT siol.net>
355
356         * configure, configure.in: added tests for libsocket and libnsl libraries,
357           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
358           from support/regression/Makefile.in
359         * support/regression/Makefile.in: added
360         * device/lib/pic16/Makefile.common.in: force make to use bash shell
361         * sim/ucsim/libtool: regenerated on sparc-solaris
362         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
363           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
364           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
365           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
366           sparc-solaris, which doesn't use GNU ld linker
367         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
368         * as/Makefile: find on sparc-solaris does not support -maxdepth option
369
370 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
371
372         * src/mcs51/peeph.def: updated comments
373
374 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
375
376         * device/lib/_gptrget.c,
377         * device/lib/_gptrput.c: slightly shorter
378         * doc/sdccman.lyx: incremented version
379         * src/mcs51/peeph.def: moved peephole comments to the line of first
380           change to better keep line correlation, reanimated 186.e
381         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
382
383 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
384
385         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
386           David Saxton with quotes around file name.
387
388 2005-08-15 Borut Razem <borut.razem AT siol.net>
389
390         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
391           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
392           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
393           make tests run on x86_64 platform
394
395 2005-08-13 Raphael Neider <rneider AT web.de>
396
397         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
398           as it might be executed DURING a build (parallel make is wonderful)
399
400 2005-08-13 Raphael Neider <rneider AT web.de>
401
402         * device/lib/Makefile.in (port-specific-objects-pic16):
403           revert to cp $(PORT)/bin/*.* $(PORTDIR)
404         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
405           dependency
406         * device/lib/pic16/Makefile.rules: build subdirs before creating
407           the library, removed builddir rule, create $(builddir) early in
408           recurse rule, use empty recurse rule for leaf directories
409         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
410           mkdir errors (race condition), removed duplicate suffix "hex"
411           from clean rules
412         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
413         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
414           prevents mkdir -p from aborting on Alpha
415
416 2005-08-12 Raphael Neider <rneider AT web.de>
417
418         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
419           db-statements in order to allow for arrays of pointers in code
420           sections to be placed without interspersed 0-padding, fixes
421           bug #1256215
422         * (emitStatistics): fixed division by zero for pic18f1220
423         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
424           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
425         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
426         * (pic16_pCodeConstString): keep track of already emitted string
427           literals to prevent "duplicate definitions of symbol _str_NR"
428         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
429           debug message
430         * device/lib/Makefile.in: ignore failing PIC16 library builds
431         * device/lib/pic16/Makefile: do not build if gputils are missing
432         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
433
434 2005-08-10 Raphael Neider <rneider AT web.de>
435
436         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
437           my last commit)
438
439 2005-08-10 Raphael Neider <rneider AT web.de>
440
441         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
442           Rokas' patch to add the new fixed point type "__fixed16x16"
443         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
444           functions for __fixed16x16 arithmetics
445         * device/lib/pic16: reimplemented the build system to support
446           a separate build directory, better handling of libio (create
447           the library in a separate subdir for each architecture) and
448           easier configuration (centralized in Makefile.common)
449
450 2005-08-07 Raphael Neider <rneider AT web.de>
451
452         * src/pic16/gen.c (genrshTwo): fixed sign extension
453         * src/pic16/device.c: added pic18f2320, 4220 and 4320
454         * device/include/pic16/pic18f2220.h: changed some bit definitions,
455           added T0CONbits
456         * device/include/pic16/pic18f4220.h: NEW, header for
457           pic18f4220 and pic18f4320
458         * device/include/pic16/pic18fregs.h: added new devices,
459           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
460         * device/include/pic16/signal.h: resolved name clashes
461           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
462           to also allow testing for interrupt enable bits, added
463           comments on how to use the macros
464         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
465         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
466           register definitions for the devices
467         * device/lib/pic16/pics.all: added new devices
468         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
469           allocated memory
470         * device/lib/pic16/libc/stdlib/memfree: do not count
471           the block header as free memory
472         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
473           simplified and added missing end-of-blocklist-marker
474           (reported by Peter Onion, fixes #1252814)
475         * (_mergeHeapBlock): fixed loop condition
476         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
477           len==0, restructured code
478         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
479           up a bit, reduced bitfield accesses, prevent endless loops
480           in case of heap corruption
481         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
482           "unreferenced arguments/must return a value" warnings
483         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
484           replaced BAUDREG with SPBRG
485         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
486           device/lib/pic16/debug/gstack/gstack.c: replaced
487           _naked, _asm, _endasm with __naked, __asm, __endasm
488
489 2005-08-05 Raphael Neider <rneider AT web.de>
490
491         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
492           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
493
494 2005-08-05 Borut Razem <borut.razem AT siol.net>
495
496         * device/lib/Makefile.in: added missing ';'
497         * configure: removed ^M characters
498
499 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
500
501         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
502           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
503           License
504
505 2005-08-04 Borut Razem <borut.razem AT siol.net>
506
507         * configure.in: pic16 libraries build 2nd try - enable running
508           configure in device/lib/pic16
509         * configure: regenerated from configure.in
510         * device/lib/Makefile.in: create $(PORT)/bin directory
511
512 2005-08-03 Raphael Neider <rneider AT web.de>
513
514         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
515           to get/set values via pointers
516         * (genUnpackBits,genPackBits): changed detection of
517           ptr->bitfield vs. sym.bitfield, fixed access via generic
518           pointers, removed dead (wrong) code for multibyte bitfields
519         * (genNearPointerGet, genGenPointerGet): removed useless code,
520           fixed bitfield detection, fixes #1250594
521         * (genNearPointerSet): removed useless code
522         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
523           and introduced macro pic16_emitpcode that conditionally emits
524           the origin of the following pCode (useful for debugging SDCC)
525         * src/pic16/pcode.c: changed (and disabled) some debug outputs
526         * (createDefmap): fixed handling of LFSR for --optimize-df
527
528 2005-08-02 Borut Razem <borut.razem AT siol.net>
529
530         * device/lib/Makefile.in: pic16 libraries build enabled since
531           gputils-0.13.2 are now localy installed at sourceforge's compile farm
532
533 2005-08-02 Raphael Neider <rneider AT web.de>
534
535         * src/pic16/gen.c (genPackBits): removed deprecated warning
536         * (genGenPointerSet): fixed bitfield detection
537
538 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
539
540         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
541
542 2005-07-31 Raphael Neider <rneider AT web.de>
543
544         * device/lib/pic16/libdev/pic18f458.c,
545           device/include/pic16/pic18f458.h: added missing T0CONbits
546
547 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
548
549         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
550
551 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
552
553         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
554
555 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
556
557         * device/include/mcs51/at89c51ed2.h: added.
558
559 2005-07-23 Raphael Neider <rneider AT web.de>
560
561         * src/pic/gen.h: added emitpcode macro for debugging
562         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
563           and replace by macro adding debug information on demand
564         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
565         * (gencjne): tried to fix; replaced with correct (slower) code
566         * (gen{Unp,P}ackBits): fixed single bit access
567         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
568         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
569           previous instruction
570         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
571           register has to be handled with care (forbidding movement
572           of assignments/uses, removing assignments completely, ...)
573         * (pCodeOptime2pCodes): make use of regIsSpecial
574         * added lots of debugging output (commented out)
575         * src/pic/rallloc.c (deassignLRs): prevent operand registers
576           from being reused as result UNLESS it is known to work
577
578 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
579
580         * support/Util/dbuf.h: include <stddef.h> for size_t
581         * .version: changed to version 2.5.2
582
583 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
584
585         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
586
587 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
588
589         * src/hc08/gen.c (genMinus): fixed bug #1241835,
590           (genModOneByte): removed needless psha/pula
591
592 2005-07-22 Raphael Neider <rneider AT web.de>
593
594         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
595           have PIC14 handled like PIC16, fixes broken pic14 linker calls
596         * src/pic/gen.c (resolveIfx): do not "invent" labels
597         * (genSkipc): changed to positive logic
598         * (genSkipCond): removed as no longer needed
599         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
600           backport from PIC16
601         * (genLeftShift): check operands are in different registers
602         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
603           INCF does not update CARRY...
604         * src/pic/main.c: fixed _linkCmd
605         * src/pic/pcode.c (unlinkpCode): added inactive code
606         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
607           alive (do not assign result and operand overlapping registers)
608
609 2005-07-22 Raphael Neider <rneider AT web.de>
610
611         * src/pic/device.c (dump_sfr): replaced register declaration with
612           call to emitSymbolToFile() to avoid duplicate symbols
613         * (assignRelocatableRegisters): do not declare external symbols
614         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
615           right (take size of type, not etype)
616         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
617         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
618         * (packRegsForAccUse): disabled assignment of WREG as
619           the result reg to prevent occurence of just fixed #1235003,
620           fixes #1242954
621         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
622           symbols (avoids duplicate symbols in .asm file)
623         * (pic14emitRegularMap): use emitSymbolToFile()
624         * src/pic/gen.c (aopOp): fixed spillLocation handling
625         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
626         * (genDataPointerSet): removed unneccessary variables/output
627
628 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
629
630         * as/mcs51/lkarea.c: enlarged codemap for banked memory
631         * device/lib/mcs51/crtbank.asm: added # to 0x0F
632
633 2005-07-21 Raphael Neider <rneider AT web.de>
634
635         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
636           architecture cannot handle them efficiently, fixes bug #1235003
637         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
638           check for empty sets before using them (fixes bug #1232190)
639
640 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
641
642         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
643           (lnksect2): generate warnings for memory overlap
644         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
645           constseg to set the name of these segments so you can instruct the linker
646           to place them in banks
647         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
648         * src/SDCCglobl.h: added MODEL_HUGE to enum,
649           added code_seg and const_seg to options
650         * src/SDCCglue.c (emitMaps): use options.const_seg,
651           (createInterruptVect): put interrupt vectors in segment HOME,
652           (glue): put HOME before static segment and put the main glue in HOME,
653           (glue): use options.code_seg
654         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
655         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
656           these segments so you can instruct the linker to place them in banks
657           (linkEdit): use code_loc for HOME segment which should be the first
658           segment in code memory now
659         * src/SDCCmem.c: fixed more stuff like bug 1238386
660         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
661           (changePointer): don't change function pointers to code pointers for
662           banked functions,
663           (compareType): added exceptional check for banked function pointers
664         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
665         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
666           after static in code memory
667         * src/mcs51/gen.c: added aopLiteralLong prototype,
668           (aopForSym): use getSize for functions,
669           (genCall): generate banked calls over one trampoline __sdcc_banked_call
670           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
671           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
672           the segment,
673           (genPcall): use call for literal function pointers and generate banked
674           calls over the one trampoline so there's only one place for the user to
675           modify according to his/hers hardware,
676           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
677           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
678         * src/mcs51/main.c: added keyword banked,
679           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
680         * support/Util/SDCCerr.c,
681         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
682           needed for passing the bank and address to the trampoline
683         * device/lib/mcs51/crtbank.asm: added for bankswitching
684         * device/lib/mcs51/Makefile: added crtbank
685
686 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
687
688         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
689           for fields at offset 0 of a struct or union as reported
690           on 2005-07-07 in the developer mailing list.
691
692 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
693
694         * src/SDCCmem.c: fixed bug 1238386
695
696 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
697
698         * src/mcs51/peeph.def: added labelrefcounting for peepholes
699           (patch #1144962), added peephole 300, enabled 259.x
700         * doc/sdccman.lyx: removed screenshot and provided link instead
701
702 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
703
704         * doc/sdccman.lyx: added section about debugging with ddd
705         * doc/figures/ddd_example.eps: screenshot of debugging session
706
707 2005-07-04 Raphael Neider <rneider AT web.de>
708
709         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
710           like CODE pointers, fixes #1115683
711         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
712           call, fixes bugs #1232211, #1228110,
713           fixed wrong casts to pCodeFlow from pCodeInstructions
714
715 2005-07-04 Raphael Neider <rneider AT web.de>
716
717         * src/pic/gen.c (popGet): changed assert to allow for
718           bit operands
719         * (popGetAddr): changed signature to provide
720           an additional index, patched all call sites
721         * (genCmpEq): handle literal-like operands correctly
722         * (genAddrOf): added sanity checks on __code/__data pointers
723         * (genAssign): added handling of symbols from __code section
724         * (gencjne): do not generate code for comparisons whose result
725           is neither stored nor used, fixes bug #1171114
726         * (AccLsh, AccRsh): operate on operand instead of WREG
727         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
728           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
729           by known count
730         * rewrote complete shift-by-literal logic, commented unused
731           functions out
732         * (genConstPointerGet): get multiple bytes (if result size > 1),
733           fixed handling of non-immediate addresses
734         * (genPointerGet): handle CODE pointers like CONST pointers
735         * (genpic14Code): insert C-SRC lines as Cource-pCodes
736         * ({aop,op}_isLitLike): NEW, single place to decide whether an
737           operand is to be treated as a literal or not
738         * (mov2w,genPcall,genCmpEq),
739           src/pic/genarith.c: use aop_isLitLike() to decide between
740           literal/register contents
741         * (addSign): added missing offset
742         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
743           only emit comment in debug-mode,
744           use {aop,op}_isLitLike throughout the file
745         * src/pic/glue.c: fix initializers for pointers (work in progress)
746         * src/pic/pcode.c (get_op): honor index on _const symbols
747         * ({reset,dump}pCodeStatistics): NEW, estimate code size
748         * (dumppBlock): added pCode size estimation
749         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
750           check for IS_SYMOP before OP_SYMBOL'ing
751         * fixed indentation, compacted switch-statements
752         * (allocReg): find free register and allocate it instead of
753           allocating new registers all the time
754         * (deassignLRs): prevent POINTER_GET's from being assigned the same
755           registers as its operands (necessary only for multibyte GETs)
756
757 2005-07-01 Raphael Neider <rneider AT web.de>
758
759         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
760           debugging .asm-output macros FENTRY + FEXIT
761         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
762           way... I wonder...
763         * (emitpComment): NEW, printf to pCode
764         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
765           offset handling
766         * (popGetAddr): NEW, variant of popGet to access an immediates
767           high(er) bytes instead of the n'th byte of memory they reference,
768           replaced popGet with popGetAddr where neccessary
769         * (genDataPointerGet): reactivated and fixed implementation
770         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
771           accesses
772         * (genDataPointerSet): fixed multibyte assignments
773         * (genpic14Code): fixed --i-code-in-asm handling
774         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
775         * (genPlus): fixed index-out-of-bounds error
776         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
777         * src/pic/ralloc.c: added debugging output macro FENTRY2
778         * (spillThis): fixed indentation, enbraced for-body for clarity
779         * (rematStr): commented out as now unused
780         * (regTypeNum): commented out special spill case (overwrites
781           arbitrary values)
782         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
783
784 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * doc/sdccman.lyx: documented sfr16/sfr32,
787           added example for using storage class with function pointers
788         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
789
790 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
791
792         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
793         * device/lib/_itoa.c,
794         * device/lib/_ltoa.c: optimized codesize
795         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
796           but don't know how to suppress the double warning.
797         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
798         * support/Util/SDCCerr.c,
799         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
800
801 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
802
803         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
804           fixed old K&R prototypes
805         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
806         * device/lib/_gptrget.c,
807         * device/lib/_gptrgetc.c,
808         * device/lib/_gptrput.c: changed versions for new memory indicator values,
809           also new versions for small generic pointers and banked generic pointers
810         * src/port.h: added const_name
811         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
812         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
813         * src/SDCCcse.c (findPrevIc): check all associative operators
814         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
815         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
816         * src/SDCCmem.c: updated comments,
817           set far-space to 0 for pdata, results in optimized code
818         * src/SDCCmem.h: added macro CONST_NAME
819         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
820           moving the info into the highest bits, see also gptrget/gptrput
821         * src/src.dsp: added sdcc.ico to project files
822         * src/avr/gen.c (genCast): fixed bug 0x%d
823         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
824         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
825           relation between ptr_type and DCL_TYPE,
826           (genCast): fixed bug 0x%d
827         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
828           (CODE)" for const_name
829         * src/hc08/gen.c (genCast): fixed bug 0x%d
830         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
831           (hc08_port): added "CONST (CODE)" for const_name
832         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
833           (aopForRemat, adjustArithmeticResult): disconnected direct relation
834           between ptr_type and DCL_TYPE,
835           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
836           operand* and took AOP() inside function so sfr-ness can be checked,
837           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
838           new prototype,
839           (genFunction, genEndFunction): optimized stack setup,
840           (genMinus): optimized for literals with ending zeroes (in bytes),
841           (genCast): fixed bug 0x%d
842         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
843           (mcs51_port): added "CONST (CODE)" for const_name
844         * src/mcs51/peeph.def: made rule 226 more generic
845         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
846         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
847         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
848         * src/z80/main.c (z80_port): added NULL for const_name,
849           (gbz80_port): added NULL for const_name
850         * support/regression/tests/bug663539.c,
851         * support/regression/tests/sfr16.c: new tests
852
853 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
854
855         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
856
857 2005-06-24 Raphael Neider <rneider AT web.de>
858
859         * device/lib/pic16/libdev/pic18f[68][567]20.c:
860           corrected typos...
861         * device/include/pic16/signal.h: added USBIF
862           and SIG_USB
863
864 2005-06-24 Raphael Neider <rneider AT web.de>
865
866         * device/lib/pic16/libdev/pic18f2455.c,
867           device/include/pic16/pic18f2455.h: NEW
868         * device/include/pic16/pic18fregs.h,
869           device/lib/pic16/pics.all,
870           src/pic16/device.c: added 18f2455
871         * device/lib/pic16/libdev/pic18f[68][567]20.c,
872           device/include/pic16/{pic18f[68][567].h,usart.h}:
873           replaced MULTIPLE_USARTS define with more relaible
874           compatibility sfrs (for USART access)
875
876 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
877
878         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
879           and the output asm file line is printed on two lines.
880
881 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
882
883         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
884           BGT, BLE, BHI, and BLS instructions
885         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
886           genCmpEq): removed
887         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
888           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
889           fixes bug #1216342
890         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
891
892 2005-06-15 Raphael Neider <rneider AT web.de>
893
894         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
895         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
896         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
897           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
898           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
899
900 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
901
902         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
903           Marcel Telka in bug #1215704
904
905 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
906
907         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
908           located in shared memory bank.
909
910 2005-05-31 Raphael Neider <rneider AT web.de>
911
912         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
913           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
914           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
915
916 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
917
918         * device/lib/_strncpy.c: fixed the fix
919
920 2005-05-26 Raphael Neider <rneider AT web.de>
921
922         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
923           initializers with \0, bug #1208187
924         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
925           intializers with \0, bug #1208187
926
927 2005-05-26 Raphael Neider <rneider AT web.de>
928
929         * src/pic16/glue.c (pic16_printIvalChar): fixed string
930           initializers with \0, bug #1208187
931         * src/pic16/main.c (_process_pragma): added sanity checks
932           for stack position and size, emit warnings when appropriate
933
934 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
935
936         * device/lib/_strncpy.c: fixed not filling with \0
937
938 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
939
940         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
941           createFunction),
942         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
943           compound_statement),
944         * src/SDCCsymt.h,
945         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
946
947 2005-05-24 Raphael Neider <rneider AT web.de>
948
949         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
950
951 2005-05-24 Raphael Neider <rneider AT web.de>
952
953         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
954           TRISE definitions, closes bug #1162453
955
956 2005-05-22 Raphael Neider <rneider AT web.de>
957
958         * src/pic16/main.c (_process_pragma): check for missing
959           arguments to pragmas code and udata
960         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
961           consistency fixes to match other headers (thanks to Jim Paris)
962         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
963
964 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
965
966         * src/SDCCicode.c (isOperandEqual): fixed missing ;
967
968 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
969
970         * support/regression/tests/bug1198642.c: new test
971         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
972         * src/SDCCcse.c (findPrevIc): added comment, please have a look
973         * support/scripts/resource.h,
974         * support/scripts/resource.rc,
975         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
976         * support/scripts/sdcc.ico: added 32x32 icon
977
978 2005-05-18 Raphael Neider <rneider AT web.de>
979
980         * device/lib/pic16/libdev/pic18f*.c,
981         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
982           keywords to "__sfr" and "__at (X)"
983         * device/include/pic16/pic18fregs.h: added pic18f4520
984         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
985           #1203088 (MPLAB compatibility)
986
987 2005-05-17 Raphael Neider <rneider AT web.de>
988
989         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
990         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
991         * device/lib/pic16/pics.all: added new devices
992         * src/pic16/device.c: added support for pic18f4520
993
994 2005-05-16 Raphael Neider <rneider AT web.de>
995         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
996         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
997         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
998           convenience function for bit access
999
1000 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1001
1002         * device/lib/printf_large.c: fixed bug 1193299
1003         * support/regression/tests/bug1057979.c: added test %3.3s
1004
1005 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1006
1007         * device/include/mcs51/8051.h,
1008         * device/include/mcs51/8052.h: made parseable with lint
1009         * device/include/mcs51/lint.h: added include file for (sp)lint
1010         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1011         * doc/cdbfileformat.lyx,
1012         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1013
1014 2005-05-14 Raphael Neider <rneider AT web.de>
1015
1016         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1017         * device/lib/pic16/libc/stdlib/itoa.c (new)
1018         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1019         * device/lib/pic16/libio/Makefile: exclude subdir according to
1020           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1021         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1022         * src/pic16/gen.c (genFunction): prevent annoying warning
1023         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1024           nameclashes on BeOS
1025         * support/cpp2/cppmain.c (cpp_output_string): new
1026         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1027           fixes bug 1116802
1028
1029 2005-05-13 Borut Razem <borut.razem AT siol.net>
1030
1031         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1032
1033 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1034
1035         * .version: changed to version 2.5.1; back to bleeding edge development
1036
1037 2005-05-11 Borut Razem <borut.razem AT siol.net>
1038
1039         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1040           generate PDF version 1.3 documents
1041
1042 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1043
1044         * .version: changed to version 2.5.0
1045
1046 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1047
1048         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1049
1050 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1051
1052         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1053         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1054         well as many smaller updates.
1055         * .version: changed to version 2.5.0-pre1
1056
1057 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1058
1059         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1060
1061 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1062
1063         * support/regression/tests/bug1185672.c: added
1064         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1065           bug 1185672
1066         * src/mcs51/gen.c (genCall): added comments, made it look safer
1067         * src/mcs51/gen.c (genEndFunction): simplified
1068
1069 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1072
1073 2005-04-14 Borut Razem <borut.razem AT siol.net>
1074
1075         * fixed bug 1045046 - SIGSEGV with really simple code?:
1076           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1077           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1078
1079 2005-04-14 Borut Razem <borut.razem AT siol.net>
1080
1081         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1082           src/pic16/device.h: temporarily disabled experimental #inline pragma
1083           for 2.5.0 release
1084
1085 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1086
1087         * device/include/z80/stdio.h,
1088         * device/include/z80/string.h: removed these highly incomplete files so
1089           SDCC can use the default ones in device/include/
1090
1091 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1092
1093         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1094         gcc warning.
1095         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1096         fix sdcpp warnings.
1097
1098 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1099
1100         * device/include/malloc.h: removed redundant __reentrant prototypes
1101         * device/lib/_mullong.c: added working xstack variant in asm (C version
1102           doesn't pass regression tests)
1103         * device/lib/bpx.c: used __data and made bpx char for mcs51
1104         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1105           (createFunction): fixed bug with xstackPtr
1106         * src/SDCCcse.c: corrected comments
1107         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1108           (killDeadCode, eBBlockFromiCode): removed unused code
1109         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1110           corrected comments
1111         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1112           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1113           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1114           (genModOneByte): fixed warning in MSVC
1115         * src/mcs51/main.c (): added comments
1116         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1117
1118 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1119
1120         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1121
1122 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1123
1124         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1125
1126 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1127
1128         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1129         characters arrays of larger size than the declared one.
1130
1131 2005-04-10 Borut Razem <borut.razem AT siol.net>
1132
1133         * src/pic/gen.c (genInline),
1134           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1135           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1136           (findNextInstruction), (findPrevInstruction),
1137           (findInstructionUsingLabel),
1138           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1139         * src/pic/pcode.c (findLabel): added missing '\n'
1140         * src/src.dsp: added SDCCdwarf2.c to the project
1141
1142 2005-04-09 Borut Razem <borut.razem AT siol.net>
1143
1144         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1145
1146 2005-04-08 Raphael Neider <rneider AT web.de>
1147
1148         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1149           into the chain after a given one) and mergeDefmapSymbols (combine
1150           defmap entries for each symbol per pcode)
1151         * (createDefmap): have defmap entries merged in the end
1152         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1153           a symbol before replacing one access type's symbol, merge symbols in
1154           the end (replacement symbol might already have an entry)
1155         * (assignValnums): keep reference to written WREG intact
1156
1157 2005-04-08 Raphael Neider <rneider AT web.de>
1158
1159         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1160           Alpha)
1161
1162 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1163
1164         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1165         bytes
1166
1167 2005-04-07 Raphael Neider <rneider AT web.de>
1168
1169         * device/include/pic16/usart.h: added compatibility defines for
1170           devices with more than one USART
1171         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1172
1173 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1174
1175         * device/lib/Makefile.in: updated for port specific include
1176
1177 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1178
1179         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1180
1181 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * device/include/8051.h,
1184         * device/include/8052.h,
1185         * device/include/at89S8252.h,
1186         * device/include/at89c55.h,
1187         * device/include/at89x051.h,
1188         * device/include/at89x51.h,
1189         * device/include/at89x52.h,
1190         * device/include/mcs51reg.h,
1191         * device/include/reg51.h,
1192         * device/include/reg764.h,
1193         * device/include/regc515c.h,
1194         * device/include/sab80515.h: (re)moved these 12 files
1195         * device/include/mcs51/8051.h,
1196         * device/include/mcs51/8052.h,
1197         * device/include/mcs51/at89S8252.h,
1198         * device/include/mcs51/at89c55.h,
1199         * device/include/mcs51/at89x051.h,
1200         * device/include/mcs51/at89x51.h,
1201         * device/include/mcs51/at89x52.h,
1202         * device/include/mcs51/mcs51reg.h,
1203         * device/include/mcs51/reg51.h,
1204         * device/include/mcs51/reg764.h,
1205         * device/include/mcs51/regc515c.h,
1206         * device/include/mcs51/sab80515.h: and added them here
1207
1208 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * device/include/stdarg.h: changed SDCC specific keywords to double
1211           underlined form.
1212         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1213           mcs51 and ds390.
1214         * device/include/hc08/mc68hc908gp32.h,
1215         * device/include/hc08/mc68hc908jb8.h,
1216         * device/include/hc08/mc68hc908jkjl.h,
1217         * device/include/hc08/mc68hc908qy.h: fixed comments
1218         * device/include/mcs51/README: updated
1219         * device/include/mcs51/c8051f120.h: added PINRSF
1220         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1221         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1222           amidst code. Also inline is not supported.
1223
1224 2005-04-06 Raphael Neider <rneider AT web.de>
1225
1226         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1227         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1228           callers stack/frame pointers
1229
1230 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1231
1232         * device/include/pic16/usart.h: added, missing in previous commit,
1233         * device/include/pic16/adc.h: fixed typo,
1234         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1235         commit,
1236         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1237         <p18fxxx.inc>
1238         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1239         uninitialized because a bug appears with gplink
1240         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1241         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1242         complains for unrecognised option
1243
1244 2005-04-05 Raphael Neider <rneider AT web.de>
1245
1246         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1247           structs as well (using memcpy)
1248         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1249           on ISRs (GOTO has no label)
1250         * src/pic16/device.h: added OF_OPTIMIZE_DF
1251         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1252           new data flow analysis/optimization
1253         * src/pic16/pcode.c: added (prototypes for and implementation of)
1254           dataflow analysis functions, fixed pCodeInstructions' inCond and
1255           outCond values, made RCALL a branch instruction
1256         * (pic16_unlinkpCode): keep C line if possible
1257         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1258           C line moved if possible
1259         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1260         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1261           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1262         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1263           new flow)
1264         * (pic16_getJumptabpCode): NEW, needed in...
1265         * (LinkFlow): fixed handling of jumptables, calls and conditional
1266           branches
1267         * (pic16_InsertCommentAfter): NEW
1268         * (pic16_pCodeReplace): made verbose and flow preserving
1269         * (AnalyzeFlow): added call to data flow analysis
1270         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1271         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1272         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1273
1274 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1275
1276         * src/SDCCast.c (decorateType): fixed bug #1105626
1277
1278 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1279
1280         * device/include/asm/pic16/features.h,
1281         * pic18f*.h headers,
1282         * device/include/pic16/adc.h,
1283         * device/include/pic16/delay.h,
1284         * device/include/pic16/i2c.h,
1285         * device/include/pic16/malloc.h,
1286         * device/include/pic16/stdio.h,
1287         * device/include/pic16/stdlib.h,
1288         * device/include/pic16/string.h,
1289         * device/lib/pic16/libc/stdio/printf_tiny.c,
1290         * device/lib/pic16/libc/stdio/printf_small.c,
1291         * device/lib/pic16/libc/stdio/strmgpsim.c,
1292         * device/lib/pic16/libc/stdio/strmmssp.c,
1293         * device/lib/pic16/libc/stdio/strmusart.c,
1294         * device/lib/pic16/libc/stdio/vfprintf.c,
1295         * device/lib/pic16/libc/stdlib/ltoa.c,
1296         * device/lib/pic16/libc/stdlib/putchar.c,
1297         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1298         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1299         * device/lib/pic16/libc/stdlib/memchrram.c,
1300         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1301         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1302         * device/lib/pic16/libio/adc/adcbusy.c,
1303         * device/lib/pic16/libio/adc/adcread.c,
1304         * device/lib/pic16/libio/adc/adcsetch.c,
1305         * device/lib/pic16/libio/usart/ubaud.c,
1306         * device/lib/pic16/libio/usart/ubusy.c,
1307         * device/lib/pic16/libio/usart/udrdy.c,
1308         * device/lib/pic16/libio/usart/uopen.c,
1309         * device/lib/pic16/libio/usart/uputc.c,
1310         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1311         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1312         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1313         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1314         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1315         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1316         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1317         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1318         specific keywords to double underlined form,
1319         * device/lib/pic16/libc/Makefile.rules,
1320         * device/lib/pic16/libsdcc/Makefile.rules,
1321         * device/lib/pic16/libm/Makefile,
1322         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1323         to compile with C standard set in Makefile.common
1324         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1325         rand.c and crc.c in compilation process,
1326         * device/lib/pic16/libsdcc/int/divuint.c,
1327         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1328         `c' from signed to unsigned,
1329         * device/lib/pic16/startup/crt0.c,
1330         * device/lib/pic16/startup/crt0i.c,
1331         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1332         keywords to double underlined form, bug fixes in _do_cinit function
1333         which prevented the correct initialization of the .idata segment,
1334         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1335         core to enter a infinite loop
1336         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1337
1338 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1339
1340         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1341
1342 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1343
1344         * device/include/Makefile.in: add support for hc08 subdirectory
1345         * device/include/hc08/: new subdirectory
1346         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1347         Lucas Loizaga, thanks!
1348         * device/include/hc08/mc68hc908qy.h,
1349         * device/include/hc08/mc68hc908gp32.h,
1350         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1351         their own directory. Changed internal macro names to use the compiler
1352         reserved namespace. Changed SDCC specific keywords to double
1353         underlined form.
1354         * device/include/math.h,
1355         * device/include/malloc.h,
1356         * device/include/stdarg.h,
1357         * device/include/stdbool.h
1358         * device/include/string.h,
1359         * device/include/tinibios.h,
1360         * device/include/ds400rom.h,
1361         * device/include/8051.h,
1362         * device/include/8052.h,
1363         * device/include/80c51xa.h,
1364         * device/include/at89c55.h,
1365         * device/include/at89S8252.h,
1366         * device/include/at89x51.h,
1367         * device/include/at89x52.h,
1368         * device/include/ds80c390.h,
1369         * device/include/reg764.h,
1370         * device/include/regc515c.h,
1371         * device/include/sab80515.h,
1372         * device/include/mcs51/c8051f000.h,
1373         * device/include/mcs51/c8051f018.h,
1374         * device/include/mcs51/c8051f020.h,
1375         * device/include/mcs51/c8051f040.h,
1376         * device/include/mcs51/c8051f060.h,
1377         * device/include/mcs51/c8051f120.h,
1378         * device/include/mcs51/c8051f300.h,
1379         * device/include/mcs51/c8051f310.h,
1380         * device/include/mcs51/c8051f320.h,
1381         * device/include/mcs51/c8051f330.h,
1382         * device/include/mcs51/c8051f350.h,
1383         * device/include/z180.h: Changed SDCC specific keywords to double
1384         underlined form.
1385
1386 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1387
1388         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1389         18F4455,
1390         * (pic16_assignConfigWordValue): disable testing of configuration
1391         register value with config mask,
1392         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1393         function with port->fun_prefix,
1394         * (genFunction): when generating a naked interrupt function never
1395         create an absolute segment placed in interrupt vector address, place
1396         the actual interrupt function at IVA instead, when an interrupt
1397         function is generated with unspecified interrupt then do not create
1398         the absolute section,
1399         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1400         code for generating a call to generic pointer get/put function with
1401         a call to function pic16_callGenericPointer(),
1402         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1403         the call to the generic pointer get/put functions with prefixing the
1404         function name with port->fun_prefix,
1405         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1406         * src/pic16/main.c (_process_pragma): prefix function with
1407         port->fun_prefix,
1408         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1409         calling assembler, old 18Fxxxx macro is deprecated,
1410         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1411         PC_ASMDIR in while condition,
1412         * (findInstruction): add PC_ASMDIR in while condition,
1413         * (buildCallTree): prefix main with port->fun_prefix,
1414         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1415         identifier for variable with banked access in instructions BTFSS,
1416         BTFSC, BCF, BSF, BTG
1417         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1418         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1419         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1420         perform optimization when enviroment variable NO_REG_OPT is set,
1421         * (insideLRBlock): NEW, return 1 if register is inside an
1422         INF_LOCALREGS block,
1423         * (RemoveRegFromLRBlock): remove a register that is completely
1424         eliminated by register optimization, but it is still left in local
1425         register store/restore in/from stack block,
1426         * (Remove2pcodes): after removing register, check to see if it
1427         should be removed from local register store/restore in/from stack
1428         block,
1429         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1430         DUMMY_READ_VOLATILE,
1431
1432         * device/include/pic16/adc.h: minor prototype modifications and
1433         update,
1434         * device/include/pic16/malloc.h: added GPL notice various
1435         modifications,
1436         * device/include/pic16/stdint.h: NEW, standard header for ints
1437         * device/include/pic16/delay.h: NEW, header for delay functions,
1438         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1439         delay1mtcy,
1440         * device/include/pic16/signal.h: NEW, header providing helper macros
1441         for implementing signal handlers,
1442         * device/include/pic16/stdio.h: added prototypes for functions,
1443         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1444         prototypes for stdin and stdout, added macro PUTCHAR to
1445         automatically implement putchar function prototype,
1446         * device/include/pic16/usart.h: modified and updated USART library,
1447         * device/lib/pic16/libio/adc/,
1448         * device/lib/pic16/libio/i2c: some modifications to improve library
1449         performance,
1450         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1451         family of functions,
1452         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1453         family of functions and other sources,
1454         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1455         of the PIC18Fxx[28] devices,
1456         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1457         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1458         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1459         _do_cinit function, because the previous failed when local variables
1460         where not placed in the same memory bank,
1461         * device/lib/pic16/libsdcc/char/: various modifications to improve
1462         library performance,
1463         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1464         information on the new functions of the c library and more...
1465
1466 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1467
1468         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1469
1470 2005-03-26 Raphael Neider <rneider AT web.de>
1471
1472         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1473           if condition == CARRY)
1474         * (genCmp): adapted to new genSkipc semantics
1475         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1476           on rIfx (genCmp was broken)
1477
1478 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1479
1480         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1481         * src/z80/main.c (_keywords[]),
1482         * src/SDCCglobal.h (struct options),
1483         * src/SDCC.y,
1484         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1485         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1486         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1487         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1488         always available in leading double underscore form. The C99 support is
1489         mostly missing, but it's a start.
1490         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1491         reserved identifier "__data".
1492
1493 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1494
1495         * src/mcs51/peeph.def: fixed bug 1170013
1496
1497 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1498
1499         * device/include/mcs51reg.h: fixed bug 842007
1500
1501 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1502
1503         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1504         last time.
1505
1506 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1507
1508         * src/port.h (struct PORT),
1509         * src/avr/ralloc.c (avr_assignRegisters),
1510         * src/avr/main.c,
1511         * src/ds390/ralloc.c (ds390_assignRegisters),
1512         * src/ds390/main.c,
1513         * src/hc08/ralloc.c (hc08_assignRegisters),
1514         * src/hc08/main.c,
1515         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1516         * src/mcs51/main.c,
1517         * src/pic/ralloc.c (pic14_assignRegisters),
1518         * src/pic/main.c,
1519         * src/pic16/ralloc.c (pic16_assignRegisters),
1520         * src/pic16/main.c,
1521         * src/xa51/ralloc.c (xa51_assignRegisters),
1522         * src/xa51/main.c,
1523         * src/z80/ralloc.c (z80_assignRegisters),
1524         * src/z80/ralloc.h,
1525         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1526         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1527         * src/SDCCcse.h,
1528         * src/SDCCdflow.c (computeDataFlow),
1529         * src/SDCCdflow.h,
1530         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1531         * src/SDCCloop.h,
1532         * src/SDCCcflow.c (*),
1533         * src/SDCCcflow.h,
1534         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1535         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1536         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1537         immedDom() returning wrong block; probably fixes bug #1160833)
1538
1539 2005-03-20 Borut Razem <borut.razem AT siol.net>
1540
1541         * support/scripts/inc2h.pl: WIN32 port
1542
1543 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1544
1545         * device/lib/makefile.in: added abs.c and labs.c
1546
1547 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1548
1549         * device/include/stdint.h: added
1550         * device/lib/abs.c: added
1551         * device/lib/labs.c: added
1552         * device/include/stdlib.h: added abs() and labs() prototypes
1553         * device/lib/libsdcc.lib: added abs and labs
1554         * device/include/float.h,
1555         * device/lib/_fsmul.c,
1556         * device/lib/printf_fast.c,
1557         * device/lib/printf_tiny.c: updated comments
1558
1559 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1560
1561         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1562         bug #1164313
1563
1564 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1565
1566         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1567         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1568
1569 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1570
1571         * device/lib/printf_large.c: removed inline assembly for portability and
1572           readability. Use printf_fast if speed or size are more important.
1573         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1574         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1575
1576 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1577
1578         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1579         prevent compiler warning
1580
1581 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1582
1583         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1584         moved to level 0 and declared as static. Also they are explicit
1585         placed in access bank. This was necessery because some times they
1586         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1587         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1588         optimizations. Currently only compare to unsigned char is implemented,
1589         * src/pic16/gen.c: added fReturnIdx array,
1590         * (struct resolvedIfx) is moved to gen.h and made public,
1591         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1592         * (aopForSym): added an optimization to directly store in stack of
1593         the operand of a SEND iCode,
1594         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1595         but as registers instead (AOP_REG) using the fReturnIdx array,
1596         * (pic16_freeAsmop): remove the freed register from the
1597         _G.sregsAlloc field,
1598         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1599         a compare of 'WREG',
1600         * (pic16_popGetTempRegCond): changed function prototype, now
1601         function takes also a bitVector argument v which holds the current
1602         set of registers that are allocated for stack access by aopForSym,
1603         registers allocated in aopForSym for accessing stack symbols are not
1604         any more part of the functions usedRegs field,
1605         * (genCall): some times aopOp is called for a stack variable to be
1606         send, aopForSym might perform the push, if this is true make sure
1607         that genCall doesn't push the variable twice by testing _G.resDirect,
1608         * (genFunction): changed testing for unspecified interrupt number
1609         from 256 to INTNO_UNSPEC,
1610         * modified selection scheme of frame pointer generation. Previously
1611         if function did use local registers a frame pointer was generated,
1612         now a frame pointer is generated only if function has arguments
1613         (that need PLUSW2 register access), or has stack arguments, or the
1614         compiler is not instructed to omit the frame pointer,
1615         * (genEndFunction): before restoring local registers that were saved
1616         in the function preamble, also restore the registers that *might*
1617         have been allocated for stack access,
1618         * (genRet): removed some old comments,
1619         * (genCmp, the active (RN's) version): added a call to the
1620         pic16_genCmp_special function to perform the compare with a more
1621         robust and optimized way,
1622         * (genInline): a feature has been added in inline code generation,
1623         which allows a wildcard variable substitution when writing inline
1624         assembly. Code is incomplete and experimental therefore undocumented,
1625         * (genCast): changed order of aopOp for result and right to allow
1626         aopForSym to directly load the result if possible,
1627         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1628         perform an optimized compare on some selected special occasions,
1629         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1630         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1631         generate an IVT any more,
1632         * src/pic16/main.c (pic16_optionsTable): added command line option
1633         --optimize-cmp,
1634         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1635         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1636         macros,
1637         * src/pic16/NOTES: Raphael Neider added in list of active developers
1638         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1639         jumptable_end to prevent bug #,
1640         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1641         inCond and outCond fields,
1642         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1643         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1644         turn off register spilling,
1645         * (packRegsForOneUse): synced with other ports' versions although it
1646         is not used currently,
1647         * (pic16_packRegisters): added an optimization while reading
1648         structure bitfields, some registers may be saved (malloc code is
1649         decreased by 80 bytes)
1650
1651 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1652
1653         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1654         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1655         this can be optimized more?
1656
1657 2005-03-10 Raphael Neider <rneider AT web.de>
1658
1659         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1660           genNearPointerGet): (hopefully) fixed access to bitfields via
1661           pointers (p->bitN = x; and x = p->bitN; failed)
1662
1663 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1664
1665         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1666
1667 2005-03-09 Raphael Neider <rneider AT web.de>
1668
1669         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1670
1671 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1672
1673         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1674         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1675           (regTypeNum): set REG_BIT type if necessary
1676         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1677         * support/regression/tests/critical.c: check bug 1144613
1678
1679 2005-03-02 Raphael Neider <rneider AT web.de>
1680
1681         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1682
1683 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1684
1685         * src/avr/ralloc.c (serialRegAssign),
1686         * src/ds390/ralloc.c (serialRegAssign),
1687         * src/hc08/ralloc.c (serialRegAssign),
1688         * src/mcs51/ralloc.c (serialRegAssign),
1689         * src/pic/ralloc.c (serialRegAssign),
1690         * src/pic16/ralloc.c (serialRegAssign),
1691         * src/xa51/ralloc.c (serialRegAssign),
1692         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1693
1694 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1695
1696         * src/SDCCast.c (decorateType): fixed bug 1124787
1697
1698 2005-02-20 Hubert Sack <sack AT digiplan.de>
1699         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1700
1701         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1702         patch #1121755
1703
1704 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1705
1706         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1707         to keep the correct label reference count when adding/removing references
1708         to labels. A peephole file using this is appended to patch #1144962.
1709
1710 2005-02-14 Raphael Neider <rneider AT web.de>
1711
1712         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1713         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1714         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1715           retrievals of result operand's value on assignment
1716
1717 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1718
1719         * device/include/pic16/string.h: modified prototype for memccpy()
1720         to memccpy(void *, void *, char, size_t)
1721         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1722         check whether to omit frame pointer or not,
1723         * (genInline): convert all occurences of "\n" to LF in inline
1724         assembler blocks, this helps formatting the inline text,
1725         * (pic16_loadFSR0): modified prototype,
1726         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1727         removed some 8051 legacy code,
1728         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1729         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1730         before allocating temporary registers in functions,
1731
1732 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1733
1734         * support/regression/tests/bitvars.c: corrected the "fix"
1735
1736 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1737
1738         * support/regression/tests/bitvars.c,
1739         * support/regression/tests/bitwise.c,
1740         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1741
1742 2005-02-10 Raphael Neider <rneider AT web.de>
1743
1744         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1745           different size for Alpha
1746         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1747
1748 2005-02-09 Raphael Neider <rneider AT web.de>
1749
1750         * src/SDCC.lex(doPragma) : save and restore warning options as well
1751           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1752         * have #pragma less_pedantic set the errorlevel to WARNING
1753           (fixes #1117001)
1754         * (cloneOptimize) : fixed wrong malloc's size
1755         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1756           facilitate correct handling of #pragma (save|restore)
1757
1758 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1759
1760         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1761
1762 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1763
1764         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1765
1766 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1767
1768         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1769
1770 2005-02-02 Raphael Neider <rneider AT web.de>
1771
1772         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1773         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1774         * (pic16_storeForReturn): fixed to allow returning function pointers
1775         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1776         * device/include/pic16/{stddef.h,stdbool.h}: added
1777
1778 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1779
1780         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1781
1782 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1783
1784         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1785         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1786          appeared to be required
1787
1788 2005-01-31 Borut Razem <borut.razem AT siol.net>
1789
1790         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1791           include/mcs51 and include/z80 directories to the package
1792
1793 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1794
1795         * src/hc08/gen.c (genFunction): fixed bug #1112752
1796
1797 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1798
1799         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1800
1801 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1802
1803         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1804
1805 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1806
1807         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1808
1809 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1810
1811         * device/include/c8051fxxx.h: removed these 6 files
1812         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1813
1814 2005-01-26 Raphael Neider <rneider AT web.de>
1815
1816         * src/pic16/gen.c (genAssign): fixed assignment from longs
1817           in codespace (were cut to three bytes)
1818         * (genDummyRead): implemented (except for CODESPACE...),
1819           fixed bug #1108575
1820         * src/pic16/glue.c (emitStatistics): beautified
1821         * device/lib/pic16/libm/Makefile: added include path
1822
1823 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1824
1825         * src/z80/gen.c (aopPut): fixed bug #1103902
1826
1827 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1828
1829         * device/lib/expf.c: fixed bug #1095792
1830
1831 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1832
1833         * device/lib/pic16/libm: added Math library sources
1834
1835 2005-01-24 Raphael Neider <rneider AT web.de>
1836
1837         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1838           to enable upcast to pCodeOpReg2 (there is no type tag to
1839           differenciate the two and pic16_popGet2p cast into PCOR2)
1840         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1841           (sizeof(sectNames) changed to sizeof(sectName))
1842           Both patches fix segfaults under MinGW.
1843
1844 2005-01-23 Raphael Neider <rneider AT web.de>
1845
1846         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1847           Safe_[mc]?alloc()'ed variables
1848         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1849           of (byte sized) temporaries (assign them to WREG for now)
1850         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1851           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1852           this might fix SIGSEGVs on MinGW...
1853         * src/SDCCopt.c (killDeadCode): restored original behaviour
1854           (volatile operands might get thrown away though)
1855
1856 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1857
1858         * src/pic16/gen.c: fixed bug #1106975,
1859         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1860         pointer update, INTCON is saved, global interrupts are disabled and
1861         restored after updateing TOS.
1862         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1863         * added function attribute 'shadowregs' to take advantage of shadow
1864         registers,
1865         * added function attribute 'wparam' as an alternative to the wparam
1866         pragma,
1867         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1868         user declares a non-ISR function as 'shadowregs',
1869         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1870
1871 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1872
1873         * .version: bumped version number to 2.4.8
1874         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1875         pic16 port,
1876         * device/lib/pic16/libio/i2c/: I2C module support library,
1877         * device/include/pic16/i2c.h: I2C support library header,
1878         * device/lib/pic16/libc/stdio/: standard IO support sources,
1879         * (printf_small.c): printf_small() source, supports float print,
1880         * (printf_tiny.c): printf_tiny() source, does not support floats,
1881         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1882         enable global optimizations for entire library source, other
1883         Makefiles in the source tree are also modified to reflect this,
1884         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1885         function,
1886         * doc/sdccman.lyx: updated to reflect new changes,
1887         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1888         sym->onStack if-case,
1889         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1890         sbit, idata, _idata, xdata, _xdata,
1891         * added pragma library, to link an external library, (see doc),
1892         * removed command line options, --pomit-config-words, --pomit-ivt,
1893         --pleave-reset-vector,
1894         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1895         when calling assembler to reflect memory model used, also define
1896         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1897         reflect stack model used,
1898         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1899         on stack return NULL,
1900
1901 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1902
1903         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1904           of the operands is volatile. Fixes #1020220
1905
1906 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1907
1908         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1909         * (OptimizeRegUsage): make sure that there is really no other flow where
1910           the first pCode is used
1911
1912 2005-01-22 Raphael Neider <rneider AT web.de>
1913
1914         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1915           to fix #1106967 (pCode->seq are not set up correctly)
1916
1917 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1918
1919         * src/SDCCglue.c (glue): make sure code area is declared before the
1920         static initialization area.
1921
1922 2005-01-21 Raphael Neider <rneider AT web.de>
1923
1924         * device/lib/Makefile.in: fixed test for pic16 install dir
1925         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1926           optimizations
1927         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1928           added --optimize-goto compiler switch and pragma wparam documentation
1929         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1930         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1931           and PRODH closing bug #1071770 (peephole optimizer)
1932
1933 2005-01-19 Raphael Neider <rneider AT web.de>
1934
1935         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1936           cmdLine buffers (used when calling sdcpp...) are large enough
1937           (MAX_PATH=256 truncates arguments leading to system halts when
1938           used in MinGW...)
1939         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1940         * (genUminus): rewritten to for efficiency
1941         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1942           used uninitialized in some cases)
1943         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1944           copy the third byte from the int -- now assumes 0x80 (data memory)
1945         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1946           operands (genAddLit expects the iCode's operands to swapped as
1947           well), fixed leftover bytes (crashed for short left operands)
1948         * (pic16_genMinusDec): performance improvements, removed false
1949           PIC14 emitSKPNCs
1950         * (pic16_genMinus): fixed to cope with differently sized operands
1951         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1952           for --obanksel > 1
1953         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1954         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1955           new banksel optimization
1956         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1957           analysis for temporary registers (segfaults...)
1958         * src/pic16/peeph.def: added rule
1959
1960 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1961
1962         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1963         which converts a float number to its ASCII representation
1964         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1965         functions to convert the fractional and integer part of a float to ASCII,
1966         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1967         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1968         ram
1969         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1970         _STATMEM macros,
1971         * device/include/pic16/adc.h: added GPL info,
1972         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1973         a pCodeOp as tested operand,
1974         * (genNearPointerGet): optimized bit testing, does not use
1975         intermediate register for bit value, test directly instead with
1976         BTFSS, BTFSC, works only for single bits,
1977         * (genpic16Code): dump the name of the iCode in the asm,
1978         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1979         renamed to pic16_decodeOp,
1980         * (serialRegAssign): do not allocate a temporary register for iCode
1981         sequences that test a single bit for 1/0
1982
1983 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1984
1985         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1986         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1987         access stack and frame pointers. They are initially assigned to
1988         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1989         accessing SFRs. Updated all occurences of modification of stack or
1990         frame pointer in gen.c and pcode.c,
1991         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1992         assigning of a literal value to pointers,
1993         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1994         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1995         selected
1996
1997 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1998
1999         * doc/sdccman.lyx: update documentation about stack pragma, added
2000         some info for stack memory models
2001
2002 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2003
2004         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2005
2006 2005-01-08 Raphael Neider <rneider AT web.de>
2007
2008         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2009           udata sections to fix bug #1097823
2010
2011 2005-01-05 Raphael Neider <rneider AT web.de>
2012
2013         * src/pic16/gen.c (genGenericShift): added handling of differently
2014           sized left operand and result
2015
2016 2005-01-04 Raphael Neider <rneider AT web.de>
2017
2018         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2019         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2020           to hold the condition bit)
2021         * added new version of genCmp (old code available via #define)
2022         * added new version of genShiftLeft/genShiftRight in a generic
2023           way, now supports shifting by negative values
2024         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2025           shiftCount (expected by genGenericShift)
2026         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2027         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2028           dump
2029         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2030           is an invalid literal too...)
2031
2032 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2033
2034         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2035         from Raphael Neider,
2036         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2037         for 8-bit literals. This fixes some literal operands which are sign
2038         extended to 16-bits ints when instruction needs only 8-bits.
2039
2040 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2041
2042         * device/lib/logf.c: added mcs51 assembly version
2043         * device/lib/expf.c: added mcs51 assembly version
2044         * device/lib/_logexpf.c: new shared asm code for expf and logf
2045         * device/include/math.h: add defines for assembly math library
2046         * device/lib/Makefile.in: build new _logexpf.c
2047         * device/lib/libfloat.lib: use new _logexpf.c
2048
2049 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2050
2051         * src/pic/device.c
2052         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2053           device types which have less than 0x7f registers.
2054
2055 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2056
2057         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2058
2059 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2060
2061         * device/lib/printf_fast.c: only build on supported arch.
2062         * device/lib/printf_tiny.c: only build on supported arch.
2063         * device/lib/printf_fast_f.c: only build if asm float lib
2064         * device/lib/_fsget1arg.c: only build if asm float lib
2065         * device/lib/_fsget2args.c: only build if asm float lib
2066         * device/lib/_fsnormalize.c: only build if asm float lib
2067         * device/lib/_fsreturnval.c: only build if asm float lib
2068         * device/lib/_fsrshift.c: only build if asm float lib
2069         * device/lib/_fsswapargs.c: only build if asm float lib
2070         * device/include/stdio.h: don't provide print_fast,
2071           print_fast_f, print_tiny prototypes if --xstack used
2072
2073 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2074
2075         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2076         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2077           to the SOURCES
2078
2079 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2080
2081         * device/lib/printf_fast_f.c: same as printf_fast, but
2082           with floating point enabled
2083         * device/lib/printf_fast.c: minor tweaks
2084         * device/include/stdio.h: add printf_fast_f
2085
2086 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2087
2088         * src/SDCCmain.c: make --float-reent default for mcs51
2089         * device/lib/_fsadd.c: added mcs51 assembly version
2090         * device/lib/_fssub.c: added mcs51 assembly version
2091         * device/lib/_fsmul.c: added mcs51 assembly version
2092         * device/lib/_fsdiv.c: added mcs51 assembly version
2093         * device/lib/_fseq.c: added mcs51 assembly version
2094         * device/lib/_fsneq.c: added mcs51 assembly version
2095         * device/lib/_fsgt.c: added mcs51 assembly version
2096         * device/lib/_fslt.c: added mcs51 assembly version
2097         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2098         * device/lib/Makefile.in: add _fscmp to build
2099         * device/lib/libfloat.lib: add _fscmp to build
2100
2101 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2102
2103         * device/lib/_fs2slong.c: added mcs51 assembly version
2104         * device/lib/_fs2sint.c: added mcs51 assembly version
2105         * device/lib/_fs2schar.c: added mcs51 assembly version
2106         * device/lib/_fs2ulong.c: added mcs51 assembly version
2107         * device/lib/_fs2uint.c: added mcs51 assembly version
2108         * device/lib/_fs2uchar.c: added mcs51 assembly version
2109         * device/lib/_slong2fs.c: added mcs51 assembly version
2110         * device/lib/_sint2fs.c: added mcs51 assembly version
2111         * device/lib/_schar2fs.c: added mcs51 assembly version
2112         * device/lib/_ulong2fs.c: added mcs51 assembly version
2113         * device/lib/_uint2fs.c: added mcs51 assembly version
2114         * device/lib/_uchar2fs.c: added mcs51 assembly version
2115         * device/include/float.h: added #define to select asm vs c
2116
2117 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2118
2119         * device/lib/printf_fast.c: improvements to float output
2120         * device/include/float.h: add defines for assembly float library
2121         * device/lib/_fsget1arg.c: receive 1 float arg
2122         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2123         * device/lib/_fsnormalize.c: normalize a float
2124         * device/lib/_fsreturnval.c: return float, various helper routines
2125         * device/lib/_fsrshift.c: right shift a float's mantissa
2126         * device/lib/_fsswapargs.c: swap 2 floats
2127         * device/lib/Makefile.in: build these 6 new files for mcs51
2128         * device/lib/libfloat.lib: add these 6 files to the library
2129
2130 2004-12-26 Borut Razem <borut.razem AT siol.net>
2131
2132         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2133           built by gcc 3.4.2
2134
2135 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2136
2137         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2138           and fully reentrant and register bank neutral.
2139         * device/lib/printf_fast.c: added float (not enabled by default),
2140           added compact/slower integer (also not enabled by default),
2141           improved size/speed of fast integer code, other minor changes
2142         * device/include/stdio.h, device/lib/Makefile.in,
2143           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2144
2145 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2146
2147         * src/pic16/pcode.c: declaring variables other than at the start of a
2148           block is not supported in C by VC6.
2149
2150 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2151
2152         * applied a previous patch from Raphael Neider that wasn't included
2153         in the previous commits, which fixes infinite loops within jumptable
2154         improvements,
2155         * made some fixes that previous patches introduced
2156
2157 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2158
2159         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2160         that fixes an issue with AOP_PCODE asmop's offset,
2161         * (pic16_popCopyReg): update instance field too,
2162         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2163         function of pic port,
2164         * (genCmp, genAnd, genAssign),
2165         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2166
2167 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2168
2169         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2170         variables initial values to idata section,
2171         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2172         variables in some functions. This utilizes parmBytes field of iCode
2173         structure to hold the offset of the variable in stack. (might be
2174         able to use the stack field too?)
2175         * applied patch from Raphael Neider # ### , # ###
2176         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2177         variable initial values in idata section,
2178         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2179         for static variables with initial value
2180         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2181         applied fix in while loop from Raphael Neider.
2182
2183 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2184
2185         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2186         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2187         * src/ds390/ralloc.c (serialRegAssign): spill bits
2188         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2189         * support/Util/SDCCerr.c,
2190         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2191         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2192         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2193
2194 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2195
2196         * device/include/sdcc-lib.h: inserted LGPL, added includes
2197           asm/ds390/features.h and asm/mcs51/features.h
2198         * device/include/asm/default/features.h,
2199         * device/include/asm/gbz80/features.h,
2200         * device/include/asm/z80/features.h: added empty _AUTOMEM
2201           and _STATMEM
2202         * device/include/asm/ds390/features.h,
2203         * device/include/asm/mcs51/features.h: added files with defines for
2204           _AUTOMEM and _STATMEM indicating automatic and static storage class
2205         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2206         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2207         * src/SDCCicode.c (geniCodeCast),
2208         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2209         * src/SDCCloop.c (loopInduction): removed unused variable lr
2210         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2211           to convertToFcall to include char modulo (RFE 1065037), added check
2212           if left operand is unsigned and use abs of literal value
2213         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2214           as it doesn't work after conversion from peephole.def to peephole.rul
2215         * src/mcs51/gen.c (toBoolean): added check for size,
2216           (genModOneByte): optimized code for signed char modulo a literal
2217           power of 2 (thanks to Hubert Sack),
2218           (genRRC): removed unnecessary "clr c",
2219           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2220         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2221           jump optimization,
2222           swapped rules 256.c and 256.d,
2223           extended 256.d by using new multiple checks (thanks Erik),
2224           added rules 256.e and 256.f,
2225           updated rule 261.a and 261.b to new generated code
2226         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2227
2228 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2229
2230         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2231           induction related bugs, including first part of bug #1074377
2232
2233 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2234
2235         * applied patch from bug-report #1076292,
2236         * applied patches for genAnd and Goto-optimizations for Raphael
2237         Neider,
2238         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2239         dump a less iCode information,
2240         * src/pic16/device.h (pic16_options_t): added field debgen,
2241         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2242         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2243         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2244         puclic,
2245         * (various functions): added macros FENTRY and FENTRY2 to functions,
2246         to emit function prologue,
2247         * (various functions): fixed indentation,
2248         * (genNearPointerGet): fixed loading of FSR0,
2249         * (genPackBits): applied patch from Raphael Neider to fix updating
2250         of FSR0 and touching only the modified bits,
2251         * src/pic16/genarith.c (various functions): added macros FENTRY to
2252         emit function prologue in comments,
2253         * src/pic16/pcode.h: added functions debugf2, debugf3,
2254         * src/pic16/ralloc.c: partial fix for packForPush caused
2255         segmentation fault,
2256
2257 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2258
2259         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2260           <stsp AT users.sourceforge.net> with reversed byte order
2261         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2262
2263 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2264
2265         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2266           bug #1074377
2267         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2268         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2269
2270 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2271
2272         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2273
2274 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2275
2276         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2277           conditions,
2278           (setFromConditionArgs): friendly operand parser for peephole rules,
2279           (operandBaseName, operandsNotRelated): new peephole condition
2280           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2281           architecture specific register naming into account, handles n-way
2282           comparisons, and supports quoted literals
2283         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2284
2285 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2286
2287         * src/mcs51/peeph.def: fixed bug #1076940
2288
2289 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2290
2291         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2292
2293 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2294
2295         Adding support for replacing ljmps with sjmps in jumptables
2296         generated for switch statements. For now you need to set the
2297         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2298         Now 4 algorithms for mcs51 jumptable generation are used:
2299         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2300         addresses loaded pc-relative for up to 112 cases and stack-pushing
2301         target addresses loaded with offset from dptr for up to 256 cases.
2302
2303         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2304         * src/mcs51/main.c: adapted constants for switch table generation
2305         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2306
2307 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2308
2309         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2310         * support/regression/tests/bug1057979.c: added test for bug 1073386
2311
2312 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2313
2314         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2315         compilers
2316
2317 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2318
2319         * src/pic16/device.h,
2320         * src/pic16/genarith.c,
2321         * src/pic16/glue.c,
2322         * src/pic16/main.c,
2323         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2324
2325 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2326
2327         Large cummulative patch for pic16 port.
2328         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2329         to call when a stack overflow occurs,
2330         * (malloc.h): added CVS Id tag,
2331         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2332         variable,
2333         * added libc directory. The current version of LibC contains string
2334         functions, ctype functions and macros and some functions of the
2335         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2336         be extensively tested in the future. Standard disclaimer here.
2337         Library is not automatically build yet. But one can build it by
2338         invoking 'make' inside the libc directory.
2339         * added ADC library under libio. Preliminary version yet.
2340
2341         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2342         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2343         aopForRemat() now and not by pic16_aopOp(),
2344         * (pic16_popGetTempReg): removed warning messgae when allocating
2345         temporary registers, its a buggy feature and will be removed,
2346         * (pic16_popGet): set register instance field in AOP_CRY,
2347         * (pic16_outBitC): fixed for results in size greater than 1,
2348         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2349         * (pic16_storeForReturn): optimized return of 0,
2350         * (genCmp): experimental code for new genCmp which uses PIC18's
2351         special compare&skip instructions. Initial tests fail some times
2352         with variables grater than 1 byte in size, so new code is disabled,
2353         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2354         a single bit,
2355         * (genCast): began a fix to optimize the casting of a bit to another
2356         bit, now assigning a bitfield to another bitfield will fail, sorry,
2357         * src/pic16/main.c: disabled the use of lr-support feature,
2358         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2359         * added some function prototypes, added function _debugf prototype,
2360         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2361         bits with offset (case PO_GPR_BIT),
2362         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2363         command line,
2364         * (isBankInstruction): modified to return 0 for no banking instruction,
2365         and 1 for banking instruction,
2366         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2367         caused stop processing pCodes after a inline assembly block,
2368         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2369         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2370         registers when it shouldn't,
2371         * src/pic16/ralloc.c (allocReg): add preliminary support for
2372         supporting a limited set of temporary registers,
2373
2374 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2375
2376         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2377           genDataPointerSet): ensure assignments always copy in MSB to LSB
2378           order,
2379           (loadRegFromAop): recognize CLRH optimization,
2380           (genFunction): optimize RECEIVE iCodes in reentrant functions
2381
2382 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2383
2384         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2385           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2386           selected.
2387         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2388         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2389           contiguous with data
2390
2391 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2392
2393         * device/lib/_gptrget.c (_gptrget),
2394         * device/lib/_gptrgetc.c (_gptrgetc),
2395         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2396           instead of sjmp to ret
2397         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2398           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2399
2400 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2401
2402         * .version: bumped version to 2.4.7
2403         * device/lib/_gptrget.c (_gptrget): is now _naked
2404         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2405         * device/lib/_gptrput.c (_gptrput): is now _naked
2406         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2407           (createFunction): fixed xstack
2408         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2409         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2410           or bit either,
2411           (geniCodeCritical): store original interrupt state in an iTemp bit
2412           var unless stack-auto
2413         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2414         * src/SDCCmain.c (setIncludePath): added include/target to search path
2415         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2416         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2417           prototype,
2418           (processFuncArgs): put bit vars in bit area
2419         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2420           unsaveRBank): fixed xstack,
2421           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2422           (genFunction, genEndFunction): fixed xstack,
2423           (genAssign): optimization don't walk backwards through mem
2424         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2425         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2426         * support/regression/Makefile: also make library (for stack-auto) when
2427           making "all" and added "test-mcs51-xstack-auto"
2428         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2429         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2430         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2431         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2432         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2433           make-library by MAKE_LIBRARY
2434         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2435           regression tests for xstack
2436         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2437         * support/regression/tests/critical.c: test for critical on mcs51
2438
2439 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2440
2441         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2442           built version of sdcc instead of installed version
2443
2444 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2445
2446         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2447         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2448           vprintf.c now
2449         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2450         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2451           WARNING: remove device/lib/build/z80/printf.o by hand when
2452           updating from previous build!
2453         * device/lib/z80/printf.c: updated comment
2454         * support/regression/tests/bug1057979.c: test all ports now
2455         * support/regression/tests/bug1065458.c: file added
2456
2457 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2458
2459         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2460           *_start and *_end symbols for static functions
2461
2462 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2463
2464         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2465           and search crt0.o in all library paths,
2466           (setIncludePath): proper handling of --nostdinc,
2467           (setLibPath): proper handling of --nostdlib
2468         * support/regression/Makefile,
2469         * support/regression/ports/ds390/spec.mk,
2470         * support/regression/ports/gbz80/spec.mk,
2471         * support/regression/ports/hc08/spec.mk,
2472         * support/regression/ports/mcs51/spec.mk,
2473         * support/regression/ports/mcs51-large/spec.mk,
2474         * support/regression/ports/mcs51-stack-auto/spec.mk,
2475         * support/regression/ports/z80/spec.mk: use include and lib files from
2476           built version of sdcc instead of installed version
2477         * doc/sdccman.lyx: fixed typo in --nostdinc
2478
2479 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2480
2481         * src/pic/pcode.c,
2482         * src/pic/device.c,
2483         * src/pic/ralloc.c,
2484         * src/pic/gen.c : added support to generate code for struct bit fields.
2485
2486 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2487
2488         * as/xa51/xa_version.h,
2489         * device/include/errno.h,
2490         * device/include/regc515c.h,
2491         * device/lib/_itoa.c,
2492         * device/lib/_ltoa.c,
2493         * device/lib/ser_ir_cts_rts.c,
2494         * sim/ucsim/xa.src/glob.cc,
2495         * sim/ucsim/xa.src/inst_gen.cc,
2496         * sim/ucsim/xa.src/xa_bit.cc,
2497         * sim/ucsim/xa.src/xa_sfr.cc,
2498         * sim/ucsim/z80.src/inst_dd.cc,
2499         * sim/ucsim/z80.src/inst_fdcb.cc,
2500         * support/scripts/keil2sdcc.pl,
2501         * src/pic16/pic16.dsp,
2502         * src/pic16/pic16a.dsp: corrected cvs line endings
2503         * device/lib/printf_large.c: fixed bug 1057979
2504         * src/pic16/gen.c: fixed non-C standard code
2505         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2506         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2507         * support/regression/ports/mcs51/support.c: reload T1 asap
2508         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2509           pdata use and clear idata startup behaviour
2510         * support/regression/tests/bug1057979.c: added
2511
2512 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2513
2514         * device/examples/ds390/ow390/ad26.h,
2515         * device/examples/ds390/ow390/cnt1d.h,
2516         * device/examples/ds390/ow390/crcutil.c,
2517         * device/examples/ds390/ow390/ownet.h,
2518         * device/examples/ds390/ow390/owsesu.c,
2519         * device/examples/ds390/ow390/swt12.h,
2520         * device/examples/ds390/ow390/swtoper.c,
2521         * device/examples/ds390/ow390/temp10.h,
2522         * device/examples/ds390/ow390/thermodl.c,
2523         * device/examples/ds390/tinitalk/tinitalk.dsp,
2524         * device/examples/ds390/tinitalk/tinitalk.dsw,
2525         * device/examples/mcs51/clock/hw.h,
2526         * device/examples/mcs51/simple2/go.bat,
2527         * device/examples/serialcomm/windows/serial.h,
2528         * device/examples/xa51/dummy.c,
2529         * device/examples/xa51/hello.c,
2530         * device/include/80c51xa.h,
2531         * device/include/at89x051.h: corrected cvs line endings
2532
2533 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2534
2535         * src/pic16/main.c (options): added command line --gstack, to trace
2536         stack over/under flows,
2537         * added pragma 'wparam' to allow passing first byte of function
2538         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2539         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2540         call to __gstack_test function and sets up the symbol as extern,
2541         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2542         * popaop): added call to pic16_testStackOverflow,
2543         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2544         wparamList list,
2545         * (genCall, genPcall): now all parameters are passed via stack
2546         except in functions that are pass to wparam pragma in which WREG is
2547         used too,
2548         * (genPcall): REENTRANT flag is checked to see if variable prototype
2549         contains reentrant keyword, don't call a non-reentrant function, via
2550         a reentrant function pointer or vice versa, functions are never
2551         passed via WREG,
2552         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2553         D.Winkler,
2554         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2555         SIGSEGV when accessing a NULL register stucture,
2556         * (pic16_printGPointerType): modified to handle UPPER modifier for
2557         function initializers, changed prototype of function to simpler one,
2558         * (pic16_printIvalFuncPtr): check to see if function is already
2559         added in externs list,
2560         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2561         optimized a move from W to SFR with a move to the same register
2562         later after a CALL,
2563         * device/lib/pic16/debug: NEW directory, contains debug features
2564         which are enabled when linking with libdebug.lib, currently command
2565         line option --gstack enables stack pointer tracing for over/under
2566         flow, corresponding sources are in debug/gstack
2567
2568 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2569
2570         * doc/sdccman.lyx: updated SDCC version,
2571         * (PIC16 port): update list of command line options,
2572         * src/pic16/device.h (structure pic16_options_t): added field gstack
2573         to enable stack overflow tracing on push/pops,
2574         * src/pic16/device.c (statistics structure): added statistics
2575         structure,
2576         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2577         pic16_dump_int_registers): increase statistics counters for each
2578         * variable which is encountered
2579         * (pic16_dump_usection): emit each .udata variable to its own udata
2580         section,
2581         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2582         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2583         parameters via stack, otherwise use old scheme,
2584         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2585         assembler output file,
2586         * src/pic16/main.c: added command line options --gstack to enable
2587         push/pop tracing for stack overflow,
2588         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2589         instructions): added size of each instruction,
2590         * (pic16_countInstruction): estimate size of instructions in
2591         the_pFile list, inline assembly blocks are not counted,
2592         * (pic16_FixRegisterBanking): trace previous register usage, when
2593         banksel optimizations is greater than 0, don't emit a redudant
2594         banksel directive,
2595
2596 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2597
2598         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2599         * src/pic16/ralloc.c : applied same fix for pic16.
2600         * src/pic/gen.c : tidied it up a little.
2601
2602 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2603
2604         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2605         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2606
2607 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2608
2609         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2610
2611 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2612
2613         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2614         non-reentrant function __modsint in the interrupt function (thus
2615         corrupting math operations during serial I/O)
2616         * device/lib/ser_ir.c: as above, changed buffersize
2617         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2618         256.c,d for zeroing
2619         * doc/Makefile: added option -t for rsync
2620
2621 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2622
2623         * src/SDCCast.h (struct ast),
2624         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2625
2626 2004-10-20 Borut Razem <borut.razem AT siol.net>
2627
2628         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2629         package
2630
2631 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2632
2633         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2634         makefile targets,
2635         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2636         support functions to replace long sequences of MOVFF's from access
2637         bank registers to stack and vice versa,
2638         * src/pic16/device.h: added new field opt_flags, where optimization
2639         flags can be set to enable certain features,
2640         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2641         * pBlock, (genFunction, genEndFunction): surroung loop for
2642         saving/loading used registers in stack with PC_INFO pCodes,
2643         INF_LREGS. Code in between can then be optimized by pCode optimizer
2644         to support function calls,
2645         * (genDataPointerSet): fixed bug which loaded float fields in
2646         structures with corrupt data,
2647         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2648         in a standard way debug info on stderr. Feature used for developing
2649         and debugging only,
2650         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2651         obsolete chunks of code,
2652         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2653         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2654         * pic16/src/pcode.c (pic16_newpCodeInfo,
2655         * (pic16_newpCodeOpLocalRegs),
2656         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2657         feature,
2658         * (pic16_pCodeConstString): printing of the initial value of a
2659         symbol as a comment is inhibited since parsing was already done by
2660         copyStr and output is corrupt,
2661         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2662
2663 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2664
2665         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2666
2667 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2668
2669         * as/mcs51/lkarea.c: removed old K&R style,
2670           (lnksect): changed check on boundary error,
2671           (lnksect2): changed check on boundary error,
2672           (lnksect2): extend XSTK to end of page if size = 1
2673         * as/mcs51/lkmain.c: removed old K&R style,
2674           (Areas51): create l_IRAM symbol
2675         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2676         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2677           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2678         * device/lib/_mullong.c: added version to be compiled with xstack
2679         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2680         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2681         * device/lib/mcs51/crtxstack.asm: fixed comment
2682         * src/SDCCglue.c: maxInterrupts defaults to 0,
2683           (emitMaps): added pdata,
2684           (createInterruptVect): (re)moved default,
2685           (glue): added pdata,
2686           (glue): moved __start__xstack to XSTK with default size 1
2687         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2688           and options.float_rent when options.stackAuto is set,
2689           (linkEdit): only write XDATA_NAME if provided on command line
2690         * src/SDCCmem.h,
2691         * src/SDCCmem.c: added pdata
2692         * src/port.h: added pdata_name to PORT
2693         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2694           (saveRegisters, unsaveRegisters): removed usage of B,
2695           (genMinus): fixed accumulator clash,
2696           (genJumpTab): added comment, this needs another look
2697         * src/mcs51/gen.c: added check for "B in use" paranoia,
2698           added pushB() and popB()
2699         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2700           chance
2701         * src/avr/main.c,
2702         * src/ds390/main.c,
2703         * src/hc08/main.c,
2704         * src/mcs51/main.c,
2705         * src/pic/main.c,
2706         * src/pic16/main.c,
2707         * src/xa51/main.c,
2708         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2709           added PSEG (PAG,XDATA) or NULL to port specifier
2710         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2711         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2712           (_mcs51_genInitStartup): removed __start__xstack equ,
2713           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2714         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2715         * src/z80/gen.c (_rleAppend): fixed warnings
2716         * support/regression/tests/zeropad.c: added pdata test
2717         * .version: bumped to 2.4.6
2718
2719 2004-10-17 Borut Razem <borut.razem AT siol.net>
2720
2721         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2722         as a part of nightly build
2723
2724 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2725
2726         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2727         WREG holds the first byte function parameters,
2728         * (aopForSym): take special case for symbols which are in FARSPACE
2729         but in CODESPACE too,
2730         * (assignResultValue): modified to take into account _G.useWreg,
2731         * (genCall): don't use wreg for parameter passing when function is
2732         declared as reentrant, too, added optimization INCF to stack
2733         pointer when stack parameter count is 1,
2734         * (genFunction, genEndFunction): refurnished and fixed to not using
2735         wreg for passing parameters when function has varargs or is
2736         reentrant, fixed bug with symbol name compare for generating
2737         functions in absolute address,
2738         * (pic16_storeForReturn): refurnished,
2739         * (genCmp): began writing a new version of the function, not ready
2740         yet, therefore it is disabled,
2741         * (genAssign): do not read code memory when assigning a function to
2742         a pointer function,
2743         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2744         array of characters, not pointer,
2745         * (pic16initialComments): in debug mode emit an .ident directive for
2746         the assembler,
2747         * (_process_pragma): emit a new warning type (internal to pic16)
2748         when setting stack to default length, emit a similar warning when
2749         placing a function at absolute address and address is not word aligned
2750         * (_pic16_parseOptions): added 'return TRUE' statement,
2751         * (_pic16_linkEdit): if compiling a source, then add the source's
2752         file object, first in the list of objects to link,
2753
2754 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2755
2756         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2757         * src/pic/main.c : removed VC warning.
2758         * src/pic/gen.c : changed comment.
2759
2760 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2761
2762         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2763         reference to a deprecated symbol _GPTRREG was causing failure to
2764         link. Thanks G. M. Gallant for the info.
2765
2766 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2767
2768         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2769         comments for Bugs item #954788.
2770
2771 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2772
2773         * src/pic16/device.c (pic16_dump_gsection,
2774         * pic16_groupRegistersInSection): handle symbols declared to be in
2775         access bank differently,
2776         * src/pic16/gen.c (struct _G): added field resDirect,
2777         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2778         send values read from stack directly to result and don't allocate
2779         temporary values,
2780         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2781         same registers,
2782         * (pic16_sameRegsOfs): NEW,
2783         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2784         free because they were not allocated from temporary pool,
2785         * pic16_popRegFromString): workaround to fix a problem with
2786         allocating variables twice or never,
2787         * (genGenPointerGet): using PRODL instead of FSR0H,
2788         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2789         instead of FSR0H,
2790         * (genAssign): take advantage of the _G.resDirect flag,
2791         * (genCast): around line 11844, use mov2f instead of directly
2792         MOVFF'ing between operands to account for literal values,
2793         * src/pic16/genutils.c: some new debug functions for gpsim have been
2794         added,
2795         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2796         float with integer part only,
2797         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2798         place variables in access bank
2799         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2800         updated sources to reflect recent changes in gen.c
2801
2802 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2803
2804         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2805         sources that searched for headers in installation path, now the
2806         device/include/pic16 is used,
2807         * src/pic16/glue.c (pic16glue),
2808         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2809         .line directives if not in debug mode, this suppresses assembler's
2810         warnings for ignored directives
2811
2812 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2813
2814         * src/port.h: made reset_regparms prototype void parameter explicit.
2815         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2816         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2817         * doc/sdccman.lyx: documented warning disabling and how to use
2818           printf_large to make it print floats.
2819         * device/include/stdbool.h: NEW
2820         * device/lib/_atof.c,
2821         * device/lib/_divuint.c,
2822         * device/lib/_divulong.c,
2823         * device/lib/expf.c,
2824         * device/lib/printf_large.c,
2825         * device/lib/sincosf.c,
2826         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2827         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2828           a completely reentrant lib.
2829
2830 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2831
2832         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2833         * device/include/pic16/stdio.h: fixed bug with colon
2834
2835 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2836
2837         * device/include/pic16/stdio.h,
2838         * device/include/pic16/stdlib.h,
2839         * device/include/pic16/math.h: NEW
2840         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2841         declared as _naked to reduce overhead
2842         * device/lib/Makefile.in (target port-specific-objects-pic16):
2843         changed * to *.* so to ignore the CVS directory,
2844         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2845         stacked variables back in stack,
2846         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2847         corruption
2848
2849 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2850
2851         * .version: bumped version number to 2.4.5
2852         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2853         * support/Util/SDCCerr.c (messages structure): added entry for
2854         W_POSSBUG2
2855
2856         Large cumulative patch for pic16 port and libraries.
2857         * device/include/pic16/sdcc-lib.h,
2858         * device/include/pic16/stdarg.h,
2859         * device/include/asm/pic16/features.h,
2860         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2861         * device/include/pic16/float.h: changes reentrant keyword with
2862         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2863         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2864         updated target build-libraries to include objects from gptr,
2865         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2866         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2867         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2868         all function headings,
2869         * src/SDCCmain.c: added global parameter userIncDirsSet,
2870         * (parseCmdLine): when option -I is encountered add directory to
2871         userIncDirsSet too,
2872         * src/version.awk: added space between control and long,
2873         * src/pic16/NOTES: added some notes for the port,
2874         * src/pic16/gen.c: added prototype for mov2fp function,
2875         * (fReturnpic16[]): properly named return value registers,
2876         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2877         * (aopForSym): added code to handle symbols with onStack flag set,
2878         symbols onStack are allocated PTRSIZE bytes,
2879         * (aopFreeAsmop): handles special case where asmops are stack objects,
2880         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2881         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2882         added argument lock to trace flaws in allocating temporary registers
2883         when developing port,
2884         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2885         * (pic16_popRegFromString): reenabled allocating a direct register
2886         from string,
2887         * (assignResultValue): various beautifications,
2888         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2889         referenced function argument,
2890         * (genIpush): reenabled to allow stacked arguments, handles only
2891         ic->parmPush iCodes,
2892         * (genCall, genPcall): major changes to allow for variable argument
2893         functions, fixed a bug with falsely restoring stack pointer after
2894         returning from call,
2895         * (genFunction): pending code for critical function,
2896         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2897         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2898         * (genNearPointerGet): fixed bug with indirect reading, was always
2899         reading from INDF0
2900         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2901         pointers,
2902         * (genAddrOf): rewrote code to take address of a stacked function parameter
2903         * (genCast): fixed casting to generic pointer type,
2904         * src/pic16/gen.h: added AOP_STA,
2905         * (struct asmop): added field stk,
2906         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2907         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2908         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2909         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2910         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2911         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2912         generic pointers,
2913         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2914         and library paths,
2915         * (pic16_port structure): generic pointer size is set to 3,
2916         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2917         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2918         compiler warning,
2919         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2920         operand is an iTemp,
2921
2922 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2923
2924         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2925         * debugger/mcs51/simi.c: addapt new syntax of s51
2926
2927 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2928
2929         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2930         * src/pic16/pcode.c: commented out some calls to free() in order to
2931         fix bug #989576,
2932
2933 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2934
2935         * src/SDCCicode.h,
2936         * src/SDCCicode.c (isiCodeInFunctionCall),
2937         * src/avr/ralloc.c (selectSpil),
2938         * src/pic/ralloc.c (selectSpil),
2939         * src/pic16/ralloc.c (selectSpil),
2940         * src/ds390/ralloc.c (selectSpil),
2941         * src/hc08/ralloc.c (selectSpil),
2942         * src/xa51/ralloc.c (selectSpil),
2943         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2944         stack in the middle of a function call sequence (fixes bug #1020268)
2945         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2946         costs associated with the minimum switch case.
2947
2948 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2949
2950         * src/SDCC.lex: fixed bug #1030549
2951
2952 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/SDCCcse.h (struct cseDef),
2955         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2956         over a function call if the CSE is derived from a symbol whose
2957         address has been taken (fixes bug #1029883)
2958         * support/regression/tests/bug-1029883: a new regression test for
2959         this bug
2960
2961 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2962
2963         * src/hc08/gen.c (emitinline): fixed bug #1029778
2964         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2965         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2966         and starts toward RFE #905167)
2967
2968 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2969
2970         * src/pic16/gen.c (mov2f): New function to move an operand to
2971         another without considering if it is a literal or a register,
2972         * (pic16_sameRegs): don't check if they are both AOP_REG,
2973         * (AccRsh): removed andmask=0 lines,
2974         * (genLeftShift): duplicated to be improved in future versions,
2975         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2976         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2977         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2978         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2979         * (insertBankSwitch): fixed inserting banksel directives algorithm
2980         for instructions that follow a skip instruction, this fixes a report
2981         for broken subtraction code generation,
2982         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2983         iCode is a left op, just in case result and right share the same
2984         registers
2985
2986 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2987
2988         * src/hc08/main.c,
2989         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2990         preservation of HX
2991         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2992         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2993         on 2004-09-12; it was buggy
2994
2995 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2996
2997         * src/SDCCsymt.h: removed RESULT_CHECK
2998         * src/SDCCast.c,
2999         * src/SDCCglue.c,
3000         * src/SDCCval.c,
3001         * src/pic/glue.c,
3002         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3003
3004 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3005
3006         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3007         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3008         configuration values no more rejected by compiler, they are assigned
3009         to configuration registers with a warning message instead,
3010         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3011         the for-loop so last conf register is emitted too,
3012         * (_pic16_initPaths): link library libsdcc.lib by default,
3013         * (_hasNativeMulFor): modified test for multiplication according to
3014         Raphael Neider's remarks. Integer multiplication is also done with
3015         support functions,
3016         * device/include/pic16/pic18fregs.h: corrected type error in while
3017         testing and including 18f6720 header file
3018
3019 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3020
3021         * src/pic16/device.h (pic16_options): removed field use_crt,
3022         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3023         until an optimization to handle single bits is added,
3024         * (pic16_loadFSR0): moved before genUnpackBits,
3025         * (genAnd): some white lines removed,
3026         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3027         leave_reset flags in pic16_options when using crt modules,
3028
3029 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3030
3031         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3032           for bugs 898889 & 979599. Also used some safer print instructions.
3033
3034 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3035
3036         * src/pic16/device.h (pic16_options_t): added field use_crt,
3037         crt_name, no_crt,
3038         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3039         catch a probable future bug,
3040         * src/pic16/gen.c: aopIdx function commented out,
3041         * (genAssign): commented out old code which used aopIdx,
3042         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3043         code, added if conditionals to take into account the --use-crt
3044         command line options,
3045         * src/pic16/main.c (pic16_optionsTable): added new command line
3046         options, --use-crt= and --no-crt,
3047         * (_pic16_linkEdit): now the proper crt object is added in the
3048         linker command line except than when --no-crt is specified,
3049         * src/pic16/pcode.c,
3050         * src/pic16/pcode.h: added some structures and functions for a new
3051         optimization scheme to compansate for instruction overhead between
3052         same iCodes, this scheme is currently under development and is not
3053         working in any way,
3054         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3055         to && operator,
3056         * device/lib/pic16/startup/crt0i.c,
3057         * device/lib/pic16/startup/crt0iz.c: added global char variable
3058         __uflags to force the generation of an idata section
3059
3060 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3061
3062         * doc/Makefile,
3063         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3064         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3065
3066 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3067
3068         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3069         Frieder) and clarified the default code optimization mode
3070
3071 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3072
3073         * src/SDCC.lex (doPragma, process_pragma),
3074         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3075         "opt_code_size", and "opt_code_balanced"
3076         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3077         regrouped options by category, added support for category headers
3078         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3079         and "--opt-code-size"
3080         * doc/sdccman.lyx: documented these new options and pragmas
3081         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3082         preference into account
3083
3084 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3085
3086         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3087           geniCodePreDec): Fixed bug 904237 by generating a warning
3088         * src/SDCCerr.h,
3089         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3090
3091 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3092
3093         * src/pic/device.c : When no max ram set validate full memory range.
3094         * src/pic/pcode.c,
3095         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3096
3097 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3098
3099         * device/lib/_gptrget.c,
3100         * device/lib/_gptrput.c: updated comment
3101         * device/lib/calloc.c,
3102         * device/lib/free.c,
3103         * device/lib/malloc.c,
3104         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3105         * src/SDCCcse.c (cseBBlock),
3106         * src/SDCCicode.c (printOperand, geniCodeArray),
3107         * src/SDCCicode.h (struct operand): fixed bug 868103
3108         * support/regression/tests/bug-868103.c: added
3109         * src/SDCCast.c (searchLitOp),
3110         * src/SDCCcse.h (struct cseDef),
3111         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3112         * src/SDCCicode.h (struct operand),
3113         * src/SDCCsymt.h (struct sym_link),
3114         * src/avr/gen.c (hasInc),
3115         * src/ds390/gen.c (hasInc),
3116         * src/hc08/gen.c (genPlusIncr, hasInc),
3117         * src/mcs51/gen.c (hasInc),
3118         * src/pic16/glue.c (pic16_printIvalChar),
3119         * src/pic16/ralloc.c (regWithIdx),
3120         * src/xa51/gen.c (hasInc) : removed warnings
3121         * src/SDCCast.c (createBlock): added comment ???
3122         * src/hc08/ralloc.c: updated comments
3123
3124 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3125
3126         * doc/sdccman.lyx: updated section on switch statements, added
3127         section about semaphore locking
3128         * doc/Makefile: added option -info for latex2html
3129         * device/lib/_gptrget.c,
3130         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3131
3132 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3133
3134         * src/pic/device.h,
3135         * src/pic/device.c,
3136         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3137          maxram is less than 0x100.
3138
3139 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3140
3141         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3142
3143 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3144
3145         * src/port.h,
3146         * src/mcs51/main.c,
3147         * src/ds390/main.c,
3148         * src/z80/main.c,
3149         * src/hc08/main.c,
3150         * src/pic/main.c,
3151         * src/pic16/main.c,
3152         * src/avr/main.c,
3153         * src/xa51/main.c
3154         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3155         a jump table is the best form for a switch statement, including
3156         automatic insertion of missing cases to make the case range
3157         continuous. Developed in collaboration with Frieder Ferlemann.
3158
3159 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3160
3161         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3162         accumulator result if it needs sign extension
3163
3164 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3165
3166         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3167
3168 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3169
3170         * device/lib/gbz80/printf.c,
3171         * device/lib/z80/printf.c: removed define for NULL
3172
3173 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3174
3175         * as/xa51/xa_link.c,
3176         * device/examples/ds390/ow390/ad26.c,
3177         * device/examples/ds390/ow390/cnt1d.c,
3178         * device/examples/ds390/ow390/counter.c,
3179         * device/examples/ds390/ow390/ds2480.h,
3180         * device/examples/ds390/ow390/ds2480ut.c,
3181         * device/examples/ds390/ow390/findtype.c,
3182         * device/examples/ds390/ow390/gethumd.c,
3183         * device/examples/ds390/ow390/owllu.c,
3184         * device/examples/ds390/ow390/ownetu.c,
3185         * device/examples/ds390/ow390/swt12.c,
3186         * device/examples/ds390/ow390/swtloop.c,
3187         * device/examples/ds390/ow390/temp.c,
3188         * device/examples/ds390/ow390/temp10.c,
3189         * device/examples/ds390/ow390/thermo21.c,
3190         * device/examples/ds390/ow390/tinilnk.c,
3191         * device/examples/ds390/ow390/tstfind.c,
3192         * device/examples/serialcomm/windows/serial.cpp,
3193         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3194         * device/include/reg51.h: fixed line endings for cvs
3195
3196 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3197
3198         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3199         packRegsForAccUse, packRegisters): new accumulator register
3200         packing algorithm
3201         * support/regression/ports/hc08/support.c (_putchar): suppress
3202         warning of unused variable
3203         * src/SDCCicode.c: added SWAP entry to codeTable
3204
3205 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3206
3207         * device/lib/sprintf.c: forgot to add this file before previous commit
3208
3209 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3210
3211         * src/pic16/gen.c (genPackBits): added operand right in function
3212         parameters, load result directly if p_type is POINTER (that is
3213         called by genNearPointerSet)
3214         * (genUnPackBits): added operand left in function parameters,
3215         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3216         FSR0 if accessing bitfields,
3217
3218 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3219
3220         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3221           _print_format; updated printf, sprintf, vsprintf
3222         * device/include/asm/default/features.h: corrected comment/define
3223         * device/lib/Makefile.in: added sprintf.c
3224         * device/lib/libsdcc.lib: added sprintf module
3225         * device/lib/printf_large.c,
3226         * device/lib/vprintf.c,
3227         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3228           into these 3 files
3229         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3230         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3231         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3232           hc08 test
3233         * support/regression/tests/zeropad.c: define idata as data for hc08
3234
3235 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3236
3237         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3238         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3239         labels are referenced at least once (even if a reference is not found)
3240         * src/hc08/gen.c (emitcode): set isComment flag for comments
3241         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3242         loads), rules 6a..6b (optimize jumps to return)
3243
3244 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * device/lib/acosf.c (acosf),
3247         * device/lib/asinf.c (asinf),
3248         * device/lib/atanf.c (atanf),
3249         * device/lib/ceilf.c (ceilf),
3250         * device/lib/cosf.c (cosf),
3251         * device/lib/coshf.c (coshf),
3252         * device/lib/cotf.c (cotf),
3253         * device/lib/fabsf.c (fabsf),
3254         * device/lib/floorf.c (floorf),
3255         * device/lib/log10f.c (log10f),
3256         * device/lib/logf.c (logf),
3257         * device/lib/sinf.c (sinf),
3258         * device/lib/sinhf.c (sinhf),
3259         * device/lib/sqrtf.c (sqrtf),
3260         * device/lib/tanf.c (tanf),
3261         * device/lib/tanhf.c (tanhf),
3262         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3263         replaced all instances of "reentrant" in the library functions
3264         defined in math.h with this macro.
3265         * support/regression/tests/float_trans.c: reenabled test for hc08
3266
3267 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3268
3269         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3270         erroneously deleted
3271
3272 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3273
3274         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3275         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3276         multi-byte volatile operands are used
3277         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3278         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3279         initialization to area GSINIT0 so that it would always precede
3280         any static initializers in GSINIT
3281         * support/regression/tests/zeropad.c: fixed idata define for hc08
3282         * support/regression/tests/bug-927659.c,
3283         * support/regression/tests/float_trans.c: disabled tests for hc08
3284         pending missing library routines
3285         * .version: increased version number to 2.4.4 - hc08 port now passes
3286         regression tests
3287
3288
3289 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3290
3291         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3292         * Makefile.common.in,
3293         * as/Makefile,
3294         * as/hc08/Makefile.in,
3295         * as/mcs51/Makefile.in,
3296         * as/z80/Makefile.in,
3297         * debugger/mcs51/Makefile.in,
3298         * device/include/Makefile.in,
3299         * device/lib/Makefile.in,
3300         * doc/Makefile,
3301         * link/Makefile,
3302         * link/z80/Makefile.in,
3303         * packihx/Makefile.in,
3304         * sim/ucsim/main_in.mk,
3305         * sim/ucsim/avr.src/Makefile.in,
3306         * sim/ucsim/doc/Makefile.in,
3307         * sim/ucsim/gui.src/serio.src/Makefile.in,
3308         * sim/ucsim/hc08.src/Makefile.in,
3309         * sim/ucsim/s51.src/Makefile.in,
3310         * sim/ucsim/xa.src/Makefile.in,
3311         * sim/ucsim/z80.src/Makefile.in,
3312         * src/Makefile.in,
3313         * support/cpp2/Makefile.in,
3314         * support/librarian/Makefile,
3315         * support/makebin/Makefile: added DESTDIR to the install path proposed
3316         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3317         * doc/sdccman.lyx: added DESTDIR documentation
3318
3319 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3320
3321         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3322         instruction for interrupt handlers, use fast returns when returning
3323         from high priority interrupts
3324
3325 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3326
3327         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3328         code generation
3329         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3330         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3331         bugs, ported much of Bernhard's code from mcs51
3332         * src/mcs51/gen.c (genSend),
3333         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3334         than one when calling a reentrant function
3335         * device/lib/_mullong.c: defined an alternate struct layout for big
3336         endian ports (hc08)
3337
3338 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3339
3340         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3341         test
3342
3343 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3344
3345         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3346         are sane and complete before asking the port its prefered parameter
3347         passing method (fixes bug #1017633)
3348         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3349         and _ret3
3350
3351 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3352
3353         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3354         problem in bitfields >= 8 bits.
3355
3356 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3357
3358         * src/SDCCsymt.c: undid changes that were not meant to be committed
3359
3360 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3361
3362         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3363
3364 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3365
3366         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3367           copied and wrong bit got inverted
3368
3369 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3370
3371         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3372         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3373         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3374         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3375         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3376         assignments to bitfields at known addresses
3377         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3378         reads from bitfields at known addresses
3379         * src/hc08/ralloc.c (packRegisters),
3380         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3381         genhc08Code): optimize pointer get values used as conditionals
3382         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3383         and branch
3384
3385 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3386
3387         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3388         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3389         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3390         as conditionals
3391
3392 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3393
3394         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3395
3396 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3397
3398         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3399         related problems
3400
3401 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3402
3403         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3404
3405 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3406
3407         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3408         mcs51 port
3409
3410 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3411
3412         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3413
3414 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3415
3416         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3417         cases use more compact code.
3418
3419 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3420
3421         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3422
3423 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3424
3425         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3426
3427 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3428
3429         * src/SDCCsymt.h,
3430         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3431         parameter of changePointer() from symbol* to sym_link*
3432         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3433         * src/SDCCsymt.c (compareType): void* type is castable to other
3434         pointers, but not necesarily an exact match.
3435         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3436         is no longer blindly treated as an exact match.
3437         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3438
3439 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3440
3441         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3442
3443 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3444
3445         * src/pic/gen.c,
3446         * src/pic/pcode.c,
3447         * src/pic/ralloc.h,
3448         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3449
3450 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3451
3452         * src/pic/device.c,
3453         * src/pic/device.h,
3454         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3455
3456 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3457
3458         * src/mcs51/gen.c (emitcode): fixed bug #992819
3459
3460 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3461
3462         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3463           there's no need to make it worse
3464
3465 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3466
3467         * src/mcs51/ralloc.c (deassignLR),
3468         * src/ds390/ralloc.c (deassignLR),
3469         * src/hc08/ralloc.c (deassignLR),
3470         * src/z80/ralloc.c (deassignLR),
3471         * src/pic/ralloc.c (deassignLR),
3472         * src/pic16/ralloc.c (deassignLR),
3473         * src/avr/ralloc.c (deassignLR),
3474         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3475         rlivePoint): fixed another part of bug #971834
3476
3477 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3478
3479         * src/z80/main.c: enabled "critical" keyword
3480         * src/z80/mappings.i,
3481         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3482         functions (fixes bug #979646)
3483         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3484
3485 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3486
3487         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3488           such as c:\mydir.
3489
3490 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3491
3492         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3493           doesn't disable too much optimizations
3494
3495 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3496
3497         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3498
3499 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3500
3501         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3502
3503 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3504
3505         * src/pic/gen.c tidied up tabs
3506         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3507         * src/pic/main.c tidied up tabs
3508         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3509         * src/pic/pcoderegs.c tidied up tabs
3510         * src/pic/ralloc.c tidied up tabs
3511
3512 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3513
3514         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3515         to S_FIXED for pic16 port and when symbol is not in level 0,
3516         allocate for S_REGISTER storage class and pic16 port, too,
3517         * src/pic16/device.h: prototype for checkSym,
3518         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3519         * (pic16_assignConfigWordValue): test the value and the mask to
3520         validate that the value is suitable for the configuration word,
3521         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3522         collect extern declared symbols, don't emit symbol twice, check
3523         first if symbol is in publics set first,
3524         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3525         * added command line '--fstack' which enables an experimental
3526         feature for stack access, too buggy to be used yet...
3527         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3528         * (pic16_allocDirReg): when register has storage class S_REGISTER
3529         allocate in pic16_dynAccessRegs,
3530         * device/include/pic16/pic18f????.h: modified configuration word
3531         naming convention, words started as CONFIG0H but should be CONFIG1H
3532
3533 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3534
3535         * device/include/mcs51reg.h: fixed bug 970993
3536
3537 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3538
3539         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3540         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3541         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3542         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3543         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3544         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3545           error/warning numbers,
3546           added function setWarningDisabled()
3547         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3548         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3549           _memcmp.c _memmove.c calloc.c realloc.c free.c
3550         * support/regression/tests/malloc.c: added tests for new functionality
3551         * support/regression/tests/zeropad.c: added tests for truncated initializers
3552           and initialized char arrays starting with '\x0'
3553         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3554
3555 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3556
3557         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3558
3559 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3560
3561         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3562         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3563         peephole 177.e. Thanks to anonymous
3564
3565 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3566
3567         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3568         function isn't used in the source but referenced as a
3569         variable initializer then declare it as extern in .asm file
3570
3571 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3572
3573         * .version: increased version number to 2.4.3
3574
3575         Adding version extension according to ChangeLog CVS revision
3576         * src/Makefile.in (target all): added dependency 'version.h'
3577         * (rule version.h): added rule to create version.h from ChangeLog,
3578         * (rule dep): added dependency version.h,
3579         * src/version.awk: AWK script to create version.h
3580         * src/SDCCdwarf2.c (dwWriteModule),
3581         * src/SDCCglue.c (initialComments),
3582         * src/SDCCmain.c (printVersionInfo): modified to write after
3583         version string the version extension number,
3584         * src/SDCCutil.c: included "version.h"
3585         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3586         number,
3587         * src/SDCCutil.h: added prototype for getBuildNumber
3588
3589         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3590         includeDirsSet, too,
3591         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3592         const char [] is found in function prototype...
3593
3594         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3595         moving to WREG with source is already in WREG,
3596         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3597         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3598         * (aopForSym): stack'ed symbols are partially supported, added
3599         if-clause to support symbols in FARSPACE,
3600         * (sameRegs): added test for AOP_ACC to see if registers are same,
3601         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3602         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3603         * (pic16_popRegFromString): will not allocate a new register if it
3604         doesn't find one by name, bug may have introduced...
3605         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3606         * (genIpush): revived to use pic16 port's stack,
3607         * (genAddrOf): added incomplete case for stack'ed operand,
3608         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3609         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3610         can handle multibyte operands,
3611         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3612         * (pic16initialComments): added message for MPLAB compatibility
3613         mode enabled,
3614         * src/pic16/main.h: prototype for pic16_mplab_comp,
3615         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3616         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3617         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3618         because of increased complexity of procedure,
3619         * (_process_pragma): stack pragma changed to format 'stack pos len',
3620         emit symbol '_stack_end' to conform with gplink,
3621         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3622         to search for register,
3623         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3624         PO_GPR_REGISTER,
3625         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3626         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3627         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3628         case for PO_GPR_REGISTER,
3629         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3630         dies, the new era is ahead !...
3631         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3632         pic16_dynInternalRegs,
3633         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3634         * (pic16_allocDirReg): minor optimizations and bug fixes,
3635         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3636
3637         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3638         load stack and frame pointer with address of 'stack_end' symbol
3639
3640 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3641
3642         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3643         without source code but only variable initializers
3644
3645 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3646
3647         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3648         external are not declared as extern to reduce overhead while linking
3649
3650 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3651
3652         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3653
3654 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3655
3656         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3657           Yee Keat for the patch
3658         * src/SDCCast.c (decorateType): fixed bug #979599
3659         * src/ds390/gen.h: removed local fReturnSizeDS390
3660         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3661         * src/ds390/gen.c (genAnd, genOr, genXor),
3662         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3663
3664 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3665
3666         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3667         add relFilesSet to $3, manipulate $2 to handle linking of object
3668         files without source files in command line,
3669         * device/include/pic16 (all headers): added ID location macros,
3670         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3671         entries for ID location bytes,
3672         * (pic16_assignIdByteValue): NEW,
3673         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3674         added field dumpcalltree to pic16_options_t,
3675         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3676         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3677         emitting rFalseIfx label after check_carry label,
3678         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3679         pic16_emitDIRegs), NEW
3680         * (pic16glue): dump .calltree file when option --calltree found,
3681         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3682         * (_pic16_genAssemblerPreamble): emit ID locations after
3683         configuration registers,
3684         * (pic16_linkCmd): modifications of the link command,
3685         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3686         * (pic16_pCodeInitRegisters): don't init stack registers,
3687         * (pic16_findPrevInstruction): fixed bug,
3688         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3689         bug with immediate registers,
3690         * (buildCallTree): traces stack push and pop,
3691         * (pct2): dump also stack usage for each function,
3692         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3693         * (pic16_allocDirReg): various modifications,
3694         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3695         fixed to 1,
3696
3697 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3698
3699         * src/pic16/pcode.c: removed buggy double colon
3700
3701 2004-07-01 Borut Razem <borut.razem AT siol.net>
3702
3703         * support/scripts/sdcc.nsi: added include/pic16 to setup
3704
3705 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3706
3707         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3708         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3709         target 'clean',
3710         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3711         specific command line arguments. Also added sample lkr script
3712         for placing a variable at a specific memory bank.
3713         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3714         at a specific memory bank,
3715         * (pic16_dump_isection): fixed bug which caused string literals to
3716         be omitted when dumping idata section,
3717         * (pic16_groupRegistersInSection): added code to handle registers
3718         in specific memory banks,
3719         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3720         public, all references are renamed too,
3721         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3722         AOP_DPTR2,
3723         * (pic16_storeForReturn): added case to handle when dest is WREG,
3724         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3725         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3726         pic16_rel_udata, check to see if that register is marked as being
3727         a member of a specific memory bank,
3728         * (pic16_printIvalCharPtr): added code to add string literals either
3729         to code or the idata sections,
3730         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3731         also accept the 'udata' pragma,
3732         * src/pic16/main.h: new structure types sectName and sectSym
3733         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3734         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3735         * (pic16_findPrevInstruction): fixed, it returned nothing,
3736         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3737         instruction combinations,
3738         * (pic16_FixRegisterBanking): heavily reorganised,
3739         * (pic16_AnalyzeBanking): if generating banksel directives is
3740         disabled, then don't call FixRegisterBanking at all,
3741         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3742         completely removed,
3743         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3744
3745 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3746
3747         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3748         Phuah Yee Keat <yk.phuah AT nestac.com>
3749
3750 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3751
3752         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3753         correctly the IVT even if it is relocated to some other location
3754
3755 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3756
3757         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3758         * device/include/pic16/pic18f2220.h: NEW,
3759         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3760         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3761         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3762         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3763         nodefaultlibs, ivt_loc is the location of the interrupt vector
3764         table, and nodefaultlibs signs that default libraries should not be
3765         linked in link stage,
3766         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3767         according to --ivt-loc argument,
3768         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3769         when pragma stack is found,
3770
3771 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3772
3773         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3774         256 (range check), 257 (do while), 258.a-f (bit banging
3775         f.e. on 3-wire SPI bus)
3776
3777 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3778
3779         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3780         variables used exclusively within a loop
3781
3782 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3783
3784         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3785
3786 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3787
3788         * src/SDCClrange.c (computeClash): fixed bug #971834
3789
3790 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3791
3792         * src/mcs51/gen.c (genCmp): fixed bug #975903
3793         * src/hc08/gen.c (operandsEqu),
3794         * src/ds390/gen.c (operandsEqu),
3795         * src/z80/gen.c (operandsEqu),
3796         * src/pic/gen.c (operandsEqu),
3797         * src/pic16/gen.c (operandsEqu),
3798         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3799         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3800
3801 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3802
3803         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3804
3805 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3806
3807         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3808         default case in switch statement,
3809         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3810         to eliminate problem with initialisation of pointers, but problem
3811         still exists,
3812         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3813         * (emitStaticSegment): removed various lines emitting debug info,
3814         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3815         added processor registers for utilizing EEPROM,
3816         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3817         configurable and set 8
3818
3819 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3820
3821         * .version: increased version number to 2.4.2,
3822
3823         Cumulative patch for pic16 port
3824         * src/pic16/device.c: changed scheme to dump initial values for
3825         variables in idata segment, all print_idata* functions were removed,
3826         now the pic16_printIval* will be called,
3827         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3828         * _pic16_printPointerType, pic16_printPointerType,
3829         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3830         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3831         NEW, similar to the respective functions in SDCCglue.c,
3832         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3833         way, emitting hex bytes,
3834         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3835
3836 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3837
3838         * src/avr/ralloc.c (serialRegAssign),
3839         * src/xa51/ralloc.c (serialRegAssign),
3840         * src/pic/ralloc.c (serialRegAssign),
3841         * src/pic16/ralloc.c (serialRegAssign),
3842         * src/hc08/ralloc.c (serialRegAssign),
3843         * src/z80/ralloc.c (serialRegAssign),
3844         * src/ds390/ralloc.c (serialRegAssign),
3845         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3846
3847 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3848
3849         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3850         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3851
3852 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         Cumulative patch for pic16 port:
3855         * src/pic16/device.h (typedef PIC16_device) modified fields for
3856         defining microcontrollers,
3857         * src/pic16/device.c: added new info for all devices in Pics16 array,
3858         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3859         to be optimised out by the pCode optimiser,
3860         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3861         specially, bug reported by G.M. Gallant,
3862         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3863         as force'd so that cannot be optimised out by pCode optimiser,
3864         * src/pic16/pcode.c,
3865         * src/pic16/pcodepeeph.c,
3866         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3867         they are disabled by default, but can be enabled explicit with
3868         command argument --denable-peeps, for testing,
3869         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3870         --pomit-ivt in COMPILE_FLAGS
3871
3872 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3873
3874         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3875           compilation on MSVC
3876
3877 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3878
3879         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3880
3881 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3882
3883         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3884         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3885
3886 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3887
3888         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3889         would only assign 0x300001 register.
3890
3891 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3892
3893         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3894         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3895
3896 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3897
3898         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3899         for ds80c400
3900         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3901         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3902         added peephole 254 (left shift), 255 (jump table)
3903
3904 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3905
3906         * device/lib/Makefile.in: removed comment line with model-pic16,
3907         * (target port-specific-objects-pic16): the libraries and objects
3908         are copied to the build directory form the device/lib/pic16/bin
3909         directory
3910
3911         Cumulative patch concerning pic16 port:
3912         * library directory has been re-organized,
3913         * added support for PIC18F1220,
3914         * added headers and library sources for chips 18f1220,18f6520,
3915         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3916
3917         * configuration registers setting has changed, now each supported
3918         device has a complete description of the registers it uses,
3919         * all initialisations are moved to idata sections, these section
3920         can be absolute or relocatable,
3921         * fixed initialisation of codespace variables,
3922         * fixed warning about PCLATU and gpsim,
3923         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3924         * (genAssign): use table reads when assigning from variables in codespace,
3925         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3926         char/int variables placed in codespace,
3927         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3928         registers set in .asm file, no need for --pomit-config-words anymore,
3929         * (pic16glue): some 8051 legacy segments are commented out
3930         (to be removed completely),
3931         * added support for alternative assembler and linker with --asm=
3932         and --link= command line arguments,
3933         * peepholes are disabled automatically in the port, no need to
3934         specify on command line,
3935         * port supports natively char/int/long multiplication, but converts
3936         all divisions to support functions,
3937         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3938         to the file set in variable $2,
3939         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3940         strings in ASCII format and not in hex,
3941         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3942         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3943         allocate proper register if iCodes aren't temporary,
3944
3945 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3946
3947         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3948
3949 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3950
3951         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3952         is commented out
3953
3954 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3955
3956         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3957         computed address is reused
3958         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3959         multi-byte bitfields
3960
3961 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3962
3963         * src/z80/gen.c: (genArrayInit): must check for pointers too
3964
3965 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3966
3967         * support/regression/tests/zeropad.c: never meant to commit the
3968           nestedstruct test: removed, added check for GCC version
3969
3970 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3971
3972         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3973         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3974         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3975           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3976           bugs 928906 and 954082 half-empty initializers
3977         * src/SDCCsymt.h,
3978         * src/SDCCsymt.c (getAllocSize): added for above fix
3979         * src/z80/gen.c (genArrayInit): fixed bug 741044
3980         * support/regression/tests/zeropad.c: added tests
3981
3982 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3983
3984         * src/pic16/device.c (pic16_dump_section): corrected bug which
3985         caused some symbols of the libraries to be misplaced
3986
3987 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3988
3989         * src/pic16/glue.c,
3990         * src/pic16/ralloc.h,
3991         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3992         to fix conflict with pic port
3993
3994 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3995
3996         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3997         externs configuration variables,
3998         * src/pic16/ralloc.h,
3999         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4000         prototype in header, commented out some debug messages
4001
4002 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4003
4004         * src/pic16/glue.c,
4005         * src/pic16/main.c,
4006         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4007         for gpasm COFF object generation. Thanks to D. Hawkins for
4008         his patch info
4009
4010 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4011
4012         * src/ds390/main.c,
4013         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4014         Brock for spotting this)
4015         * src/ds390/gen.c (genEndFunction),
4016         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4017         interrupt handler and critical. Disable push/pop optimizations when
4018         peephole optimizations disabled.
4019
4020 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4021
4022         Updated pic16 library sources and headers.
4023         * device/lib/pic16/pic18f*/ ,
4024         * device/include/pic16/*.h: modified to handle structured SFR
4025         definitions
4026
4027 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4028
4029         * src/port.h (PORT structure): added hook initPaths, now each
4030         port can declare its own default search paths,
4031         which can been seen with the --print-search-dirs option,
4032         see pic16 port for example,
4033         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4034         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4035         * (doPrintSearchDirs): NEW, replaces in a central manner the
4036         printing of search dirs which was split in set*Paths functions,
4037         * (main): added call to port->initPaths and doPrintSearchDirs,
4038         * src/avr/main.c,
4039         * src/ds390/main.c,
4040         * src/hc08/main.c,
4041         * src/izt/i186.c,
4042         * src/izt/tlcs900h.c,
4043         * src/mcs51/main.c,
4044         * src/pic/main.c,
4045         * src/pic16/main.c: modified port structures to reflect addition of
4046         initPaths hook,
4047
4048         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4049         * (pic16_dump_section): for registers in same address reserve memory once,
4050         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4051         to no_banksel,
4052         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4053         result is greater in size than right or left,
4054         * (pic16_genUMult8X8_8): there are some cases where the result can
4055         be 16 bits size, so handle these,
4056         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4057         * (pic16_outBitC): modified to emit pcodes,
4058         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4059         or not,
4060         * (genDivOneByte): implemented algorithm to divide 8-bits,
4061         * (genCmp): uncommented goto, but issues still exist,
4062         * (genAnd): fixed a bug with variables >8bits,
4063         * (genPackBits): optimization added that uses BCF/BSF to change a
4064         single bit,
4065         * (genAssign): fixed bug when assigning floating point literals,
4066         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4067         __sdcc_gsinit_startup label,
4068         * src/pic16/main.c (_pic16_init): removed search directory
4069         initialisations,
4070         * (_pic16_initPaths): NEW, used to initialise search directories,
4071         * (_hasNativeMulFor): support functions for all except char/int
4072         multiplication, and char division,
4073         * (PIC16_port struct): modified entry for native mul support,
4074         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4075         no_banksel option,
4076         * (buildCallTree): call to register_usage is ifdef'ed out,
4077
4078 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4079
4080         * device/include/string.h: applied Stas Sergeev's patch to make this
4081         header file compatible with the preprocessor -Wundef option
4082         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4083         failure (fixes bug #941458)
4084
4085 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4088         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4089         that the variable, not the function, should be static
4090         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4091         to be consistent with non-literal case
4092
4093 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4094
4095         * src/SDCCast.c (isConformingBody): fixed bug #949967
4096         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4097         convilong): fixed bug #952086
4098
4099 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4100
4101         * src/SDCCmem.c (allocVariables): fixed bug #955321
4102
4103 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4104
4105         * src/hc08/main.c (_hc08_genAssemblerEnd),
4106         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4107         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4108         completely eliminated the use of a temporary file
4109         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4110         when more than one file linked
4111         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4112
4113 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4114
4115         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4116         which fixes bug #543481
4117         * support/regression/tests/bug-751703.c: fixed comments left from a
4118         cut and paste error
4119         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4120         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4121         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4122         scopes
4123         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4124         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4125         are now changed to underscores in moduleName
4126
4127 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4128
4129         * as/mcs51/lkmem.c: better fix for bug #954173
4130
4131 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4132         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4133
4134         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4135         * device/include/c8051f000.h,
4136         * device/include/c8051f120.h,
4137         * device/include/c8051f300.h,
4138         * device/include/c8051f310.h,
4139         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4140         PWM16) and detab'ed
4141
4142 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4143
4144         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4145         and mailing lists, doc'ed --no-peep-comments, removed reference
4146         to knoppix (newest version has no LyX/LaTeX), other minor changes
4147         * src/SDCCglue.c (glue): save 2 bytes stack space with
4148         option --main-return. The ljmp could probably be avoided too
4149
4150 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4151
4152         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4153
4154 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4155
4156         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4157         * src/SDCCopt.c (isLocalWithoutDef),
4158         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4159         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4160         (credit to Maarten Brock for patch #949363, on which this is based)
4161         * support/regression/tests/bug-751703.c: some test cases of extern used
4162         within inner scopes.
4163
4164 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4165
4166         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4167         SPEC_STRUCT
4168         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4169         struct definitions
4170         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4171         dwWriteLabel): fix to create valid debugger symbols even when
4172         the module name has non-alphanumeric symbols in it
4173         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4174         when a variable's allocation has been optimized away
4175
4176
4177 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4178
4179         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4180         * src/hc08/main.c,
4181         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4182         * src/mcs51/main.c,
4183         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4184         * src/ds390/main.c,
4185         * src/z80/gen.c (z80_emitDebuggerSymbol),
4186         * src/z80/main.c,
4187         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4188         * src/pic/main.c,
4189         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4190         * src/pic16/main.c,
4191         * src/avr/gen.c (avr_emitDebuggerSymbol),
4192         * src/avr/main.c,
4193         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4194         * src/xa51/main.c,
4195         * src/SDCCdebug.c (emitDebuggerSymbol),
4196         * src/SDCCdebug.h,
4197         * src/port.h: added a debugger struct to the port struct. Added a
4198         callback for defining debugger symbols
4199
4200         * src/SDCCast.c (createLabel),
4201         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4202         with isitmp = 1
4203         * src/SDCCicode.h,
4204         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4205         iCode back to the ast for the function
4206
4207         * src/hc08/ralloc.c (hc08_assignRegisters),
4208         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4209         unneeded fields from the regs struct.
4210         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4211         pushReg() & pullReg() functions instead of emitcode()
4212
4213         * src/hc08/gen.c (genLabel, genhc08Code),
4214         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4215
4216         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4217         debugger hooks
4218
4219         * src/hc08/gen.c (genEndFunction, genhc08Code),
4220         * src/hc08/gen.h,
4221         * src/mcs51/gen.c (genEndFunction, gen51Code),
4222         * src/mcs51/gen.h,
4223         * src/ds390/gen.c (genEndFunction, gen390Code),
4224         * src/ds390/gen.h,
4225         * src/z80/gen.c (genEndFunction, genZ80Code),
4226         * src/z80/gen.h,
4227         * src/z80/z80.h,
4228         * src/pic/gen.c (genEndFunction, genpic14Code),
4229         * src/pic/gen.h,
4230         * src/pic16/gen.c (genEndFunction, genpic16Code),
4231         * src/pic16/gen.h,
4232         * src/avr/gen.c (genEndFunction, genAVRCode),
4233         * src/avr/gen.h,
4234         * src/xa51/gen.c (genEndFunction, genXA51Code),
4235         * src/xa51/gen.h,
4236         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4237         specific code to cdbFile.c and out of the backend code generators
4238
4239         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4240         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4241         starting address is now 0
4242
4243         * as/hc08/asm.h,
4244         * as/hc08/m08pst.c,
4245         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4246         assembler directive for DWARF support
4247         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4248
4249         * src/src.dsp,
4250         * src/Makefile.in,
4251         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4252
4253 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4254
4255         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4256         and inappropriate peephole optimization in jump tables
4257
4258 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4259
4260         * as/hc08/m08pst.c,
4261         * src/SDCCglue.c: sdccopt works for the hc08 port now
4262
4263 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4264
4265         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4266
4267 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4268
4269         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4270
4271 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4272
4273         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4274         rules
4275         * src/SDCCmain.c,
4276         * src/SDCCglobl.h,
4277         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4278         comments from the peephole optimizer replacement rules
4279         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4280         symbols
4281         * src/SDCCcse.c (updateSpillLocation),
4282         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4283         equivalents
4284         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4285         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4286         objects far pointers
4287
4288 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4289
4290         * src/SDCCsymt.h: a missing part of my last change
4291         * src/pic/ralloc.c (regTypeNum),
4292         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4293
4294 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * src/SDCCicode.h,
4297         * src/SDCCicode.c (aggrToPtrDclType),
4298         * src/SDCCptropt.h,
4299         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4300         ptrPseudoSymConvert),
4301         * src/pic/ralloc.c (regTypeNum),
4302         * src/pic16/ralloc.c (regTypeNum),
4303         * src/hc08/ralloc.c (regTypeNum),
4304         * src/ds390/ralloc.c (regTypeNum),
4305         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4306         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4307
4308 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4309
4310         * link/z80/lkmain.c (afile),
4311         * as/hc08/lkmain.c (afile),
4312         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4313         prevent a pointer problem when a filename has no directory and
4314         no extension specified.
4315
4316 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * link/z80/lkmain.c (afile): allow periods in directory names
4319         * link/z80/lkmain.c (afile),
4320         * as/mcs51/lkmain.c (afile),
4321         * as/hc08/lkmain.c (afile): allow linker script file to have an
4322         extension other than ".lnk"
4323         * link/z80/lklex.c (getfid),
4324         * link/z80/lkmain.c (parse),
4325         * as/mcs51/lklex.c (getfid),
4326         * as/mcs51/lkmain.c (parse),
4327         * as/hc08/lklex.c (getfid),
4328         * as/hc08/lkmain.c (parse): Support comments in the linker script
4329         file on lines by themselves and after filenames
4330
4331 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4332
4333         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4334
4335 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4336
4337         * src/z80/peeph-z80.def: removed some peephole rules that don't
4338         work with multibyte arithmetic (fixed bug #937126)
4339         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4340         to registers and not global variables
4341         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4342         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4343         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4344         checking for assignments not internally generated (fixed bug #931895)
4345         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4346         structure member (fixed bug #930072)
4347
4348 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4349
4350         * src/SDCCmain.c (linkEdit),
4351         * src/hc08/main.c (_hc08_parseOptions),
4352         * as/hc08/Makefile.in,
4353         * as/hc08/aslink.h,
4354         * as/hc08/asm.h,
4355         * as/hc08/m08pst.c,
4356         * as/hc08/lkrloc.c (relr, rele),
4357         * as/hc08/lkarea.c (lnkarea)
4358         * as/hc08/lkmain.c (afile, parse),
4359         * as/hc08/lkelf.c: support for ELF output
4360         * as/hc08/lks19.c (s19),
4361         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4362
4363 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4364
4365         * as/mcs51/lkihx.c: Fixed bug #899105.
4366
4367 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4368
4369         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4370         .dsp files from Unix to DOS.
4371
4372 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4373
4374         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4375         function pointers; we have been compliant for several months now.
4376         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4377         change that was accidently commented out
4378         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4379         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4380         bug #922319
4381
4382 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4383
4384         * src/hc08/gen.c: output of all of the internal debugging information
4385         is now controlled by the D() macro; it is disabled by default
4386
4387 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4388
4389         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4390         harder to keep the same registers during a CAST iCode
4391         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4392         long via int can be done in a single cast, if the signedness is
4393         correct.
4394         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4395         putchar() in tinibios.c in ds390's library
4396
4397 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4398
4399         * src/SDCCast.c (decorateType): fixed bug #898889,
4400         cast result of a literal complement too
4401         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4402         fixed check for bitfields
4403
4404 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4405
4406         * src/SDCCicode.c (geniCodeLogic): made it static,
4407         (geniCodeLogicAndOr): added in order to fix bug #905492,
4408         (ast2iCode): fixed bug #905492
4409         * support/regression/tests/bug-905492.c: added
4410         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4411         (processParms): fixed bug #927659: don't copy parms, this will clear
4412         decorated flag
4413         * support/regression/tests/bug-927659.c: added
4414
4415 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4416
4417         * src/SDCCast.c (addCast): don't cast float to char
4418         * device/lib/libsdcc.lib: added _memmove
4419
4420 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4421
4422         * device/lib/large/Makefile: fixed parallel execution by
4423         replacing `make` by `$(MAKE)`
4424
4425 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4426
4427         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4428         offsets (fixes bug #923936)
4429
4430 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4431
4432         * device/lib/small/Makefile: fixed parallel execution by
4433         replacing `make` by `$(MAKE)`
4434
4435 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4436
4437         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4438
4439 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4440
4441         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4442         * src/regression/Makefile: Regression test was not running.
4443
4444 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4445
4446         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4447         complement if possible
4448         * src/SDCCval.c (valComplement),
4449         * src/SDCCicode.c (operandOperation): fixed complement of literal
4450         * support/regression/tests/onebyte.c (testComplement): added
4451
4452 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4453
4454         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4455         return an optimized tree; actually replace actParm with the new tree
4456         * src/SDCCast.h: added some parantheses to remove side effects
4457         * support/regression/tests/bug-920866.c
4458
4459 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4460         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4461         Bit operands were not being handled properly in the pic14 port.
4462         (now src/regression/add.c passes again).
4463
4464 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * src/SDCC.y (labeled_statement): case and default no longer require
4467         a following statement (RFE #893037)
4468
4469 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4470
4471         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4472         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4473         disabled (fixes bug #916294)
4474         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4475         "mov a,acc"; patch provided by Lenny Story
4476         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4477
4478 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4479
4480         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4481         functions
4482         * src/ds390/gen.c (genFunction, genEndFunction),
4483         * src/ds390/ralloc.c (ds390_assignRegisters),
4484         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4485         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4486         pushed if there are parameters passed on the stack. Also, a cleaner
4487         way to decide if r0/r1 should be pushed/popped. (Together they fix
4488         bug #918693)
4489
4490 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4491
4492         * doc/sdccman.lyx,
4493         * device/lib/mcs51/crtpagesfr.asm,
4494         * device/lib/mcs51/crtxinit.asm,
4495         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4496         to avoid confusion with Si Lab's SFRPAGE register.
4497
4498 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * src/SDCCglue.c (emitMaps): allow public sfr variables
4501         * src/SDCCglue.c (initialComments): include compiler build date
4502         with compiler version and put the timestamp of the generated
4503         assembly file on a serperate line to be less confusing.
4504         * src/port.h: added genInitStartup hook
4505         * src/avr/main.c,
4506         * src/ds390/main.c,
4507         * src/hc08/main.c,
4508         * src/pic/main.c,
4509         * src/pic16/main.c,
4510         * src/xa51/main.c,
4511         * src/z80/main.c: genInitStartup initialize as NULL (default to
4512         historical behaviour)
4513         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4514         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4515         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4516         library instead of hard coding it into the compiler.
4517         * support/regression/ports/mcs51-stack-auto/spec.mk,
4518         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4519         * device/lib/mcs51/Makefile,
4520         * device/lib/small/Makefile,
4521         * device/lib/large/Makefile,
4522         * device/lib/mcs51/crtpagesfr.asm,
4523         * device/lib/mcs51/crtstart.asm,
4524         * device/lib/mcs51/crtxclear.asm,
4525         * device/lib/mcs51/crtxinit.asm,
4526         * device/lib/mcs51/crtclear.asm,
4527         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4528         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4529         and into user configurable files.
4530         * device/lib/clean.mk: clean mcs51 directory too
4531         * support/regression/tests/longlit.c: added static to T1 declaration
4532         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4533         accesses in the initialization code
4534
4535 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4536
4537         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4538         OSCTRIMVAL as noted in bug #916008
4539
4540 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4541
4542         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4543         in loops with multiple exits (reported as incorrect registers
4544         used by Martin Helmling in Sdcc-user list)
4545
4546 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4547
4548         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4549         made ds390 register extensions look less like error messages
4550
4551 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4552
4553         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4554         reported by Adam Wozniak in Sdcc-user list
4555
4556 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4557
4558         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4559         arithmetic optimizations, added debug output
4560
4561 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4562
4563         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4564         * sdcc.spec: updated and split sdcc into 3 rpms
4565         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4566         needed for literals of LEFT_OP and '+'
4567         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4568         introduced RESULT_TYPE_NOPROM
4569         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4570         left shift
4571         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4572         limited promotion to int only for '*'
4573         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4574
4575 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4576
4577         * src/pic16/gen.c (genSkip),
4578         (genc16bit2lit), (gencjneshort): commented out
4579         (is_LitOp): new helper function, checks operand type
4580         (genCmpEq): rewritten
4581
4582 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4583
4584         * support/regression/tests/bug-908454.c: added
4585
4586 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4587
4588         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4589         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4590         (geniCodeCast): cosmetic, don't preserve bit storage class
4591         (geniCodeLeftShift): added promotion
4592         (geniCodeLogic): fixed regression
4593         * src/SDCCsymt.c (computeTypeOr): accept bits too
4594         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4595
4596 2004-03-07  Borut Razem <borut.razem AT siol.net>
4597
4598         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4599
4600 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4601
4602         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4603         version of pic16_genPackRegisters which does not check if ic is a
4604         CAST operator,
4605         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4606         function cause string1.c regression test fails
4607
4608 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4609
4610         * sim/ucsim/configure.in,
4611         * sim/ucsim/configure,
4612         * sim/ucsim/doc/Makefile.in: use docdir
4613         * src/SDCC.y: fixed sbit atrributes
4614         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4615         * src/SDCCast.c (decorateType): |^& need special promotion handling
4616         * src/SDCCast.h,
4617         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4618         * src/SDCCsymt.h (computeType),
4619         * src/SDCCicode.c: computeType() needs op
4620         * src/SDCCsymt.c (checkTypeSanity),
4621         * doc/sddman.lyx: "plain" bitfields are unsigned
4622         * src/SDCCsymt.c (computeTypeOr): added
4623         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4624         |^& ops
4625         * src/SDCCval.c (val*): computeType() needs op
4626         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4627         * support/regression/tests/onebyte.c: added tests for |^&
4628
4629 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4630
4631         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4632         for writing icode into asm output.
4633
4634 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4635
4636         * src/pic16/device.c: added some debug lines enabled
4637         with macro DEBUG_CHECK,
4638         * src/pic16/genarith.c: more debug in genPlus,
4639         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4640         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4641         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4642         * (aopForSym): onStack symbols are re-placed in data memspace,
4643         and onStack flag is cleared,
4644         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4645         copy temporary pcodeop,
4646         * (genPcall): added warning for not updating PCLATU,
4647         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4648         always true for pic16 port,
4649         * (genMultOneWord): NEW, supports integer multiplication,
4650         * (genMult): modified to call genMultOneWord,
4651         * (ifxForOp): added warning when return NULL,
4652         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4653         flag is set before call to operandFromSymbol for implicit
4654         added structures,
4655         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4656         options.intlong_rent are set by default,
4657         * (_hasNativeMulFor): modified to allow port generation of integer
4658         multiplication,
4659         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4660         set regtype to REG_SFR for all registers, restricting seting the
4661         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4662
4663 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4664
4665         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4666         more than 500 times in the regression tests
4667
4668 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4669
4670         * support/Util/SDCCerr.h,
4671         * support/Util/SDCCerr.c,
4672         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4673         enumerator_list),
4674         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4675         for symbol conflicts.
4676         * support/valdiags/tests/enum.c,
4677         * support/valdiags/tests/tentdecl.c,
4678         * support/valdiags/tests/struct.c: expect possible error messages
4679         referring to original symbol definitions.
4680         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4681         * src/SDCCsymt.h,
4682         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4683
4684 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4685
4686         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4687
4688 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4689
4690         * src/pic16/ralloc.c (newReg): fixed bug #908929
4691
4692 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4693
4694         * src/ds390/gen.c: added missing #include "main.h"
4695
4696 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4697
4698         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4699         checking if symbol is already in set,
4700         * src/pic16/device.h: prototype for checkAddSym,
4701         * src/pic16/gen.c: (_G): added entry interruptvector,
4702         * (assignResultValue): removed some commented out lines,
4703         * (genFunction): check for ISR via sym->type, absolute section for
4704         interrupt code is created via a new pBlock, the goto instruction is
4705         placed now correctly at the interrupt vector position, changed all
4706         references from ivec to _G.interruptvector,
4707         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4708         is the interrupt is a high priority one, same for return from ISR,
4709         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4710         externs to calls of checkAddSym,
4711         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4712         pic16_pcode_verbose flag is set,
4713         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4714         * src/pic16/pcoderegs.c: message about how many registers are saved
4715         will only be emitted if pic16_pcode_verbose flag is set,
4716
4717 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4718
4719         * src/ds390/ralloc.h,
4720         * src/ds390/ralloc.c (ds390_regWithIdx),
4721         * src/ds390/gen.c (emitcode),
4722         * src/ds390/main.h,
4723         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4724         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4725         ds390operandCompare, getRegsRead, getRegsWritten,
4726         initializeAsmLineNode): customized instruction size calculation for
4727         ds390, started basis for some register optimizations
4728         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4729         corresponding assembly output
4730         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4731         missing push/pop of r0/r1. Optimized push/pops
4732
4733 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * src/mcs51/main.c (instructionSize): fixed ACALL size
4736         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4737
4738 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4739
4740         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4741         the sorting of rlist with NULL elements
4742         * (print_idataType, print_idata): NEW to create idata sections
4743         * src/pic16/device.h: idataSymSet new variable
4744         * src/pic16/gen.c (genFunction): fixed some bugs in string
4745         comparing, improved the absolute section creation for ISRs,
4746         added FSR0L/FSR0H in registers that are saved in an ISR,
4747         * (genInline): fixed the processing of inline snippets,
4748         now they undergo no process by the peephole optimizer
4749         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4750         are placed in idataSymSet,
4751         * (pic16emitStaticSeg): extern symbols are added in externs,
4752         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4753         switching when aboslute variables are placed in access bank memory
4754         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4755         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4756         commented out with #if,
4757         * (pic16_packRegisters): reintroduce the check for CAST because some
4758         symbols are not correctly handled,
4759         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4760         pCodeInstruction instead of pCode,
4761         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4762         pCodeAsmDir definition,
4763         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4764         directive, then the argument directive is emitted without the leading
4765         tab, hack for inline labels which must be in the first column,
4766         * (compareLabel,pic16_findNextInstruction),
4767         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4768         * (insertBankSwitch): modified for the new pCodeAsmDir,
4769
4770 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4771         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4772
4773         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4774         instance,
4775         * (pushSide): commented out with #if,
4776         * (assignResultValue): fixed some typos in saving
4777         registers,
4778         * (genPcall): FIXED and sync'ed with genCall,
4779         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4780         * (genNearPointerGet): fixed to handle some more cases,
4781         implementation scheme via table reads,
4782         * (genConstPointerGet): modified to access code memory correct,
4783         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4784         and improved to handle some cases
4785         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4786         instead of "RETLW" for init data
4787         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4788         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4789         variables are placed in access bank memory (<0x80 and >=0xf80),
4790         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4791         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4792         TBLWT_POSTDEC,TBLWT_PREINC
4793         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4794         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4795         directives
4796         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4797         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4798         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4799         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4800
4801 2004-02-29  Borut Razem <borut.razem AT siol.net>
4802
4803         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4804         support/Util/findme.h, support/Util/system.h: enhance binary relative
4805         search for lib and include by using findProgramPath()
4806
4807 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4808
4809         * src/SDCCpeeph.h,
4810         * src/SDCCpeeph.c (pcDistance),
4811         * src/port.h,
4812         * src/mcs51/ralloc.h,
4813         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4814         * src/mcs51/main.h,
4815         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4816         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4817         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4818         size calculation port specific, started basis for some register
4819         optimizations
4820         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4821         missing push/pop of r0/r1. Optimized push/pops
4822         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4823         * device/lib/_modsint.c (_modsint),
4824         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4825         and stack version so regression tests pass
4826
4827 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4828
4829         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4830         * src/SDCCast.c (decorateType): catch another small optimization
4831         with '?' operator
4832         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4833         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4834         modified to finally use computeType() all over SDCC,
4835         see Feature Request #877103
4836         * src/SDCCval.h: cosmetic
4837         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4838         valCompare(); regression tested in muldiv.c
4839         * support/regression/tests/muldiv.c (testMod): mod sign follows
4840         dividend only
4841
4842 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4843
4844         * src/SDCCast.c (decorateType): fixed bug #902362
4845         * doc/INSTALL.txt: fixed install instructions for win32
4846
4847 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4848
4849         * device/include/Makefile.in (install): fixed by replacing spaces
4850         by tabs
4851         * doc/README.txt,
4852         * doc/INSTALL.txt: updated for release
4853         * doc/sdccman.lyx: added warning for --xstack being buggy
4854
4855 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4856
4857         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4858         to eliminate build warnings.
4859         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4860
4861 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4862            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4863
4864         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4865         removed -penable-stack, added comment for stack pragma, added
4866         warning for not initializing the stack/frame registers, removed
4867         comment at interrupts section
4868
4869         Stack is made permanent, there is no ability to disable stack usage.
4870         * src/pic16/device.h,
4871         * src/pic16/device.c: removed all references to USE_STACK macro,
4872         * src/pic16/device.c (pic16_dump_section): when no elements in
4873         rlist, free rlist before return,
4874         * (pic16_dump_int_registers): NEW, internal registers are a new set
4875         of general purpose registers reused by each function,
4876         * (checkAddReg): returns 1 if registers is added to set,
4877         * (pic16_groupRegistersInSection): when a registers is of type
4878         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4879         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4880         SRCASECMP macro is moved here from device.c
4881         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4882         PO_PCLATU, PO_PRODL, PO_PRODH,
4883         * (pic16_pCodeOpType, genMinus,
4884         changed compares to "a" register, with AOP_ACC,
4885         * (pic16_genPlus): fixed some bugs and indented properly,
4886         * (pic16_addSign): changed size to size+offset in the MOVWF
4887         instruction,
4888         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4889         multiply 8-bit operand by literal, result is 8-bit,
4890         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4891         multiply 2 8-bit operand, result is 8-bit,
4892         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4893         genUMult8X*_16,
4894         * src/pic16/gen.c: changed accUse to contain WREG only,
4895         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4896         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4897         true, do not use immediate addressing any more unless sym is a
4898         pointer in codespace,
4899         * (aopForRemat): do not use immediate addressing when symbol not in
4900         codespace and when symbol's address is requested,
4901         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4902         accUse size (= 1),
4903         * (aopGet): added case for AOP_ACC and don't return "accumulator
4904         bug" but WREG instead,
4905         * (popGetTempReg): pushes contents of temporary register in stack,
4906         * (popReleaseTempReg): pops contents of temporary register from
4907         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4908         * (pic16_popGet): separated case AOP_ACC to return register WREG
4909         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4910         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4911         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4912         the use of immediate pointers to certain cases only.
4913
4914         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4915         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4916         * (assignResultValue, genCall, genRet): modified to use the new
4917         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4918         genPcall is still broken,
4919         * (genFunction): added code to create 'A' type pBlocks when
4920         interrupt functions are generated, code not extensively tested yet,
4921         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4922         * (genEndFunction): modified so ISRs pop stored registers from stack,
4923         * (genMultOneByte): cleanup,
4924         * (AccRsh): added flag andmask, to and result with appropriate mask,
4925         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4926         * (genDataPointerGet): fixed and reenabled its use,
4927         * (genNearDataPointerGet): bugs fixed,
4928         * (genDataPointerSet): bugs fixed,
4929         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4930         pic16_DumpSymbol, pic16_DumpOp,
4931         * src/pic16/genutils.h: function prototypes for the above functions,
4932         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4933         pointers,
4934         * (pic16emitRegularMap): many many many improvements, but needs a
4935         major cleanup,
4936         * src/pic16/main.c: enable_stack in pic16_options is removed,
4937         * (_pic16_parseOptions): removed command line options -penable-stack,
4938         * (_process_pragma): emit stack symbol only when stack pragma is
4939         processed,
4940         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4941         redirected to FSR0L/FSR0H pair,
4942         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4943         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4944         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4945         for immediates,
4946         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4947         * (dumpPicOptype): NEW,
4948         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4949         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4950         with movff instruction,
4951         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4952         added pic16_int_regs, some packRegsFor* functions are commented out,
4953         because produce errors,
4954         * src/pic16/NOTES: minor modifications
4955
4956 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4957
4958         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4959         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4960         --pack-iram.
4961         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4962         * as/mcs51/lkaomf51.c: fixed bug #895763
4963
4964 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4965
4966         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4967
4968 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * doc/sdccman.lyx: added details about the HC08 storage classes and
4971         interrupts, fixed the register usage info for z80 & gbz80
4972
4973 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4974
4975         * doc/sdccman.lyx: added more pic16 port documentation
4976         * device/include/pic16/: added header pic18fregs.h
4977
4978 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4979
4980         * doc/sdccman.lyx: added Vangelis' contribution
4981
4982 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4983
4984         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4985         extend to the next CALL or PCALL, not just to the next CALL.
4986
4987 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4988
4989         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4990
4991 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4994         bug #895752 and a better fix for bug #716790
4995
4996 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4997
4998         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4999
5000 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5001
5002         * doc/sdccman.lyx: minor changes, minor changed
5003
5004 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5005
5006         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5007         which can't handle SDCC_NEWONEBYTEOPS,
5008         (geniCodeMultiply): removed conversion from mult to shift for pic14
5009         and pic16
5010
5011 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * src/hc08/gen.h,
5014         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5015         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5016         thus fixing bug #895406
5017
5018 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5019
5020         * device/lib/_modsint.c,
5021         * device/lib/_modslong.c: sign follows divisor only
5022         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5023         signs or signedness can be ignored
5024         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5025         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5026         added optimization for IFX,
5027         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5028         arguments;
5029         reenabled optimization for IFX, which was removed on 2004-01-11
5030         * src/SDCCast.h: added return type IFX
5031         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5032         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5033         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5034         SDCC_OLDONEBYTEOPS selects the old behaviour
5035         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5036         changed again and commented promotion rule
5037         * src/SDCCval.c (valDiv): promotion no longer necessary
5038         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5039         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5040         rewritten
5041         * support/regression/tests/onebyte.c: added
5042
5043 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5044
5045         * gen.c (genInline): reverted to old code for assemnling inline
5046         code because of bug reported James Chadd
5047
5048 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5049
5050         * ralloc.h: missing declarations from previous patch,
5051         seems that patch for ralloc.h was never applied, fixed
5052
5053 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5054            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5055
5056         * pcode.c,
5057         * pcode.h,
5058         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5059         indirect addressing. Marked FSR0 as deprecated
5060         * gen.c (pointerCode): commented out, not needed now
5061         (pic16_popGet2p): new MOVFF helper function
5062         (genGenPointerGet),
5063         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5064         (shiftRLong): removed duplicate debugging info
5065
5066 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5067
5068         * src/ds390/gen.c (genNearPointerGet),
5069         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5070         optimization with bits, but not bitfields.
5071         * src/ds390/ralloc.c (packRegisters),
5072         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5073
5074 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5075
5076         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5077
5078 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5079
5080         * src/SDCCsymt.h,
5081         * src/SDCCicode.c (operandFromSymbol),
5082         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5083         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5084         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5085         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5086         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5087         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5088         bug #892038
5089         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5090         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5091         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5092         * src/SDCCsymt.c (newSymbol),
5093         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5094         enumerator_list),
5095         * src/SDCCval.h,
5096         * src/SDCCval.c (newiList): fixed bug #885705
5097
5098 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5099
5100         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5101         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5102
5103 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5104
5105         * device/include/c8051f120.h,
5106         * device/include/c8051f300.h,
5107         * device/include/c8051f310.h: added/updated header files for Silicon
5108         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5109         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5110         in new section Submitting patches
5111
5112 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5113
5114         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5115         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5116         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5117         genGenPointerSet),
5118         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5119         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5120         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5121         genGenPointerSet),
5122         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5123         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5124         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5125         genGenPointerSet),
5126         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5127         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5128         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5129         genGenPointerSet): fixed bug #892400
5130         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5131         to eliminate build warnings.
5132         * src/SDCCast.c (processParms),
5133         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5134         fixed bug 751859
5135         * support/valdiag/valdiag.py: added GCC to the list of defines active
5136         when compiling with gcc
5137
5138 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5139
5140         * support/Util/SDCCerr.h,
5141         * support/Util/SDCCerr.c,
5142         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5143         with an incomplete type (fixed bug #883734)
5144         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5145
5146 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5147
5148         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5149
5150 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5151
5152         * src/SDCCast.c (decorateType),
5153         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5154         function pointer implementation
5155         * support/regression/tests/funptrs.c: added tests to verify both forms
5156         of function pointers work correctly. Added tests to verify parameters
5157         are passed in the correct order.
5158
5159 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5160
5161         * device.c (regCompare): registers are sorted by ascending
5162         address and increasing size,
5163         * main.c (_pic16_finaliseOptions): removed the declaration
5164         of compiler macro MCU. Now a macro of the format pic18fxxxx
5165         will be defined from the command line
5166
5167 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5168             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5169
5170         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5171         PCOP_RLCF was overwritten!
5172         * gen.c (genSkip): commented out calls to pic16_emitcode,
5173         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5174         * (genlshTwo),
5175         * (genRRC): added debugging info,
5176         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5177         overwritten while shifting,
5178         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5179         overwritten while shifting,
5180         * (AccLsh),
5181         * (AccRsh),
5182         * (shiftLLeftOrResult),
5183         * (shiftRLeftOrResult),
5184         * (shiftRLong),
5185         * (shiftLLong): Implemented with pic16_emitpcode
5186         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5187         * (genLeftShift): Fixed bug, operand for shift by variable always
5188         was "and"ed with 0x0f,
5189         * (genLeftShiftLiteral),
5190         * (genrshTwo),
5191         * (genRightShiftLiteral): added debugging info,
5192         * (genrshFour): added comment,
5193         * (genRightShift): determined signedness from operand "left"
5194         instead of "result"
5195
5196 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/SDCCicode.c (geniCodeParms),
5199         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5200         function pointers, fixed function pointer bugs #861242 and #861896
5201
5202 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5203
5204         * device/include/c8051f000.h,
5205         * device/include/c8051f120.h,
5206         * device/include/c8051f300.h: added header files for Silicon
5207         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5208
5209 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5210
5211         * src/SDCCast.c (processParams): added new type flow and restructured
5212         (gatherAutoInit): added new type flow
5213         (addCast): cosmetic changes
5214         (getLeftResultType): added new type flow for array indices, patch
5215         provided by Stas, see FR #877103
5216         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5217         array index patch by Stas
5218         * src/SDCCast.h: added prototype getResultTypeFromType()
5219         * src/SDCCval.h,
5220         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5221         * src/pic/glue.c (pic14emitStaticSeg),
5222         * src/pic16/glue.c (pic16emitStaticSeg),
5223         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5224         for initialization of symbols
5225         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5226         * support/Util/SDCCerr.h:
5227         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5228         * .version: bumped version number to 2.3.8
5229         * device/include/Makefile.in (install),
5230         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5231         avoid warnings
5232
5233 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5234
5235         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5236         Slade Rich fixed an optimization bug
5237         * src/pic/pcodepeep.c,
5238         * src/pic/pcoderegs.c
5239         * doc/Makefile (install): added test for directory
5240
5241 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5242
5243         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5244         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5245         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5246         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5247         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5248         * as/mcs51/asexpr.c (term),
5249         * as/hc08/asexpr.c (term): fixed bug #887146
5250
5251 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5252
5253         * src/z80/gen.c (genMult): handle single byte result product
5254         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5255         DUMMY_READ_VOLATILE (fixed bug #886367)
5256
5257 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5258
5259         * support/regression/tests/libmullong.c: fixed logic, on little endian
5260         hosts we ended without a mullong_wrapper()
5261
5262 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5263
5264         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5265         virus/worm forged address usage.
5266
5267 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5268
5269         Fixed promotion, it should be done on AST level:
5270         * src/SDCCast.c (addCast): added promotion to int
5271         (decorateType): updated call to upCast()
5272         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5273         usualUnaryConversions()
5274
5275 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5276
5277         * support/regression/tests/literalop.c (mulWrapper): Added a
5278         wrapper to remove integer overflow warnings.
5279
5280         * support/regression/tests/float_trans.c: Made work on host.
5281
5282         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5283         location of sz80.
5284
5285         * support/regression/generate-cases.py (main): Changed from inline
5286         to a main method.
5287
5288         * doc/Makefile (install): Changed to depth first to get rid of
5289         missing directory install warning.
5290
5291         * as/Makefile (install-doc): Made work on Mac.
5292
5293 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5294
5295         * src/SDCCast.c: added an additional type flow in decorateType() of
5296         opposite direction, see feature request #860006; it's enabled at runtime
5297         by setting the environment variable SDCC_NEWTYPEFLOW
5298         * src/SDCCast.h: changed prototype of decorateType()
5299         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5300         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5301         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5302         see feature request #877103
5303         * src/SDCCval.c: updated call of decorateType()
5304         (valBitwise): fixed bug #882876
5305         (valMinus): added promotion
5306         (valLogicAndOr): result is unsigned
5307         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5308         * src/SDCCsymt.c (computeType),
5309         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5310         must not cause an unsigned operation
5311         * src/pic/glue (pic14emitRegularMap),
5312         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5313
5314 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5315
5316         * src/pic/pcode.c (PCodeID): commented out left over debug code
5317
5318 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5319
5320         * support/valdiag/tests/overflow.c: added shift tests
5321         * src/pic/device.c,
5322         * src/pic/gen.c,
5323         * src/pic/gen.h,
5324         * src/pic/glue.c,
5325         * src/pic/main.c,
5326         * src/pic/pcode.c,
5327         * src/pic/pcode.h,
5328         * src/pic/pcodepeep.c,
5329         * src/pic/pcoderegs.c,
5330         * src/pic/ralloc.c,
5331         * src/pic/ralloc.h: applied patch from Slade Rich;
5332         added support for multiple code pages and multiple RAM banks on the
5333         PIC 14 port. The ASM files now no longer simply assume all the
5334         code / RAM are in the same page / bank. This means the linker can
5335         safely allocate code/RAM of separate ASM files to different pages/banks.
5336         * doc/sdccman.lyx: added Slade's tips
5337         * src/mcs51/peeph.def: fixed bug #880768
5338
5339 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5340
5341         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5342         * src/SDCCast.c (decorateType): fixed bug #880197
5343
5344 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5345
5346         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5347         getopt.h.
5348
5349         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5350         strtof is not part of C89 and isn't included with Mac OS X.
5351
5352 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5353
5354         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5355         shiftL2Left2Result): fixed bug #879326
5356         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5357         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5358         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5359         address fetch for clr instruction
5360         * device/lib/hc08/_mulint.c: created optimized assembly version
5361         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5362
5363 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5364
5365         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5366         proposed in FR #877103
5367
5368 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5369
5370         * src/SDCCval.c (cheapestVal): added missing checks
5371         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5372         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5373
5374 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5375
5376         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5377         equal operands
5378
5379 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5380
5381         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5382         loaded with the linker search paths (-L arguments) and the libraries
5383         to be linked with the current source (-l arguments). Changes
5384         currently will affect only the pic16 port.
5385         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5386         include path the port specific paths and port specific libraries,
5387         * gplink command now contains the $3 argument,
5388         * src/pic16/device.h,
5389         * src/pic16/device.c,: structure PIC_device is made public and
5390         renamed to PIC16_device, the same for variable Pics which is renamed
5391         to Pics16. Updated all references to them.
5392         * src/pic16/glue.c (pic16glue): corrected bug with code
5393         initialization which bypassed the variable initializations block.
5394
5395         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5396         COMPILE_FLAGS and added the --nostdinc option
5397
5398 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5399
5400         * device/include/mc68hc908jb8.h: Register defs for another member
5401         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5402
5403 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5404
5405         Documenting changes from previous commits.
5406         * configure.in (version 1.56),
5407         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5408         when generating output files to configure the pic16 library,
5409         but now I've commented it out, since gputils aren't installed in the
5410         SF compile farm, so library won't compile
5411
5412         * device/lib/Makefile.in (version 1.56): initially I've added in
5413         target 'all' the prerequestive 'model-pic16' so it compiled the
5414         pic16 library, but now I've commented it out for the same reasons
5415         above,
5416         * added targets 'model-pic16' and 'objects-pic16' to compile the
5417         library
5418         * added target 'port-specific-objects-pic16' to handle the
5419         generated libraries and copy them into the build/ directory
5420         * added target 'clean-intermediate-pic16' to clean intermediate
5421         files into pic16 directory
5422         * in target 'installdirs' added line to create directory pic16 in
5423         the installation path
5424
5425         * device/include/Makefile.in (version 1.11): in target 'install'
5426         added lines to copy all header files to installation path,
5427         * in target 'installdirs' added line create directory for pic16
5428         headers in the installation path
5429
5430 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5431
5432         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5433          a function call
5434
5435 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5436
5437         * configure,
5438         * device/lib/configure.in,
5439         * device/lib/configure: fixed for autoconf 2.57
5440
5441 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5442
5443         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5444         option so that it actually works. Made it specific to the z80, since
5445         the gbz80 doesn't have these kinds of I/O ports.
5446
5447 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5448
5449         * device/include/z180.h,
5450         * device/lib/_memcpy.c,
5451         * device/lib/_memmove.c,
5452         * device/lib/_mulint.c,
5453         * device/lib/ser_ir.c,
5454         * device/lib/ser_ir_cts_rts.c,
5455         * device/lib/_strcmp.c,
5456         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5457         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5458         portmode; added deprecation warning for bank= and protmode= forms.
5459         Also, guard against buffer overflow.
5460         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5461
5462 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5463
5464         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5465         changed interrupt vector table generation to only emit declared vectors.
5466         * device/include/Makefile.in: added missing backslash
5467         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5468
5469 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5470
5471         Mainly changes to support compilation of the device libraries
5472         * src/pic16/device.c: stack is allocated via symbol and not
5473         via literal number. The symbol is placed in the corresponding
5474         position of the data ram
5475         * (pic16_dump_section): relocatable and absolute uninitialized
5476         data are now emitted in sorted order to reduce section naming,
5477         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5478         weren't marked as being in the access bank,
5479
5480 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5481
5482         Added portion of GNU PIC Library under the directory
5483         device/include/pic16 and device/lib/pic16. These files
5484         contain the declarations of SFRs for the PIC18Fxx2 devices.
5485         The directory is initialized via configure from toplevel.
5486
5487 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5488
5489         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5490         the spilllocations to be compared correctly
5491
5492 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5493
5494         * src/SDCCast.c (decorateType): fixed bug introduced today
5495
5496 2004-01-12  Borut Razem <borut.razem AT siol.net>
5497
5498         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5499         doc/sdccman.lyx: upper case pragmas are deprecated
5500
5501 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5502
5503         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5504         in simpler and even better code
5505
5506 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5507
5508         * src/SDCCicode.c (operandOperation): fixed bug #874819
5509         * src/SDCCast.c (decorateType): fixed
5510         char foo (unsigned long ul) { return ul > 0; }
5511
5512 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5513
5514         * doc/sdccman.lyx: Moved and added some sections, small changes
5515         all over. Telling LaTeX to be less strict with word spacing
5516         to better keep the right margin. Changed some notes about
5517         maintainance of the ports in section 3.2.1 - is it OK like this?
5518
5519 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5520
5521         SDCC source changes:
5522         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5523         convilong): modified to inform the pic16 port that builtin functions
5524         are external
5525
5526         PIC16 PORT specific changes:
5527         * src/pic16/device.c pic16_dump_equates() added,
5528         processor registers declared internally by the port are emitted in
5529         the translation as equates,
5530         * src/pic16/gen.c: inline code is passed unprocessed to the
5531         translation,
5532         * (pic16_popGetLit2): fnuction modified to take second operand as
5533         pCodeOp pointer and not as literal,
5534         * (popRegFromIdx): prefixed with pic16_,
5535         * (pic16_popCombine2): modified to receive already allocated pCode
5536         operands,
5537         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5538         * (genFunction): initializes local stack frame and pushes on stack
5539         all the registers used by this function,
5540         * (genEndFunction): restores all registers from stack and restores
5541         stack frame,
5542         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5543         improvements,
5544         * (pic16glue): changed the program startup sequence,
5545         * added new dbName code 'A' for functions placed in absolute section
5546         * src/pic16/main.c: added function attribute _naked,
5547         * added pragma 'code' to place a fnuction at an absolute address,
5548         * added command line arguments --debug-ralloc and --pcode-verbose,
5549         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5550         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5551         * (pic16_newpCodeOpLit2): modified to take the second operand as
5552         pCodeOp pointer,
5553         * (pic16_printpBlock): modified to emit each function in a separate
5554         section,
5555         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5556         UPPER for immediate operands,
5557         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5558         instruction,
5559         * src/pic16/peeph.def: all peepholes with movff are commented out,
5560         because there is a problem in the pcode peep optimizer,
5561         * src/pic16/ralloc.c: the register allocator can now reuse local
5562         function symbols for another function. This saves register usage.
5563         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5564
5565         Added file src/pic16/NOTES with information about program writing on
5566         the current port version.
5567
5568 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5569
5570         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5571         and peephole 252 (array access)
5572
5573 2004-01-09  Borut Razem <borut.razem AT siol.net>
5574
5575         * src/SDCCmain.c : fixed #872250: -l command line defined library
5576           files are scanned before standard library files
5577
5578 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5579
5580         * src/SDCCast.c (decorateType): fixed bug #874046
5581
5582 2004-01-09  Borut Razem <borut.razem AT siol.net>
5583
5584         * support/scripts/sdcc.nsi: remove previous installation
5585
5586 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5587
5588         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5589         bytes for last interrupt vector (mcs51)
5590         * sdcc.spec: fixed typo
5591
5592 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5595         gen51Code): more efficient parameter receive for --model-large
5596         ("bug" #845294)
5597
5598 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5599
5600         * src/ds390/main.c,
5601         * src/z80/main.c: added missed needLinkerScript flags (more than
5602         one port structure defined in these file)
5603         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5604         bug #795325
5605
5606 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5607
5608         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5609         * src/port.h: added flag needLinkerScript in port->linker
5610         structure to inform whether to create a .lnk file or not,
5611         * src/avr/main.c,
5612         * src/ds390/main.c,
5613         * src/hc08/main.c,
5614         * src/mcs51/main.c,
5615         * src/pic/main.c,
5616         * src/pic16/main.c,
5617         * src/xa51/main.c,
5618         * src/z80/main.c: changed appropriately to configure
5619         needLinkerScript flag
5620         * src/pic/gen.c,
5621         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5622         * src/pic/glue.c: added variable udata_section_name to
5623         override default uninitialized data segment definition for
5624         devices only with SHAREBANK memory (reported from Erik Epetrich)
5625         * (pic14emitOverlay): modified to emit a commented overlay segment
5626         directive when no overlay data exist
5627         * (picglue): modified to emit uninitialized data segment
5628         according to udata_section_name
5629         * src/pic/main.c (_pic14_parseOptions): added command line
5630         options --udata-section-name=[name] to override default
5631         udata definition name
5632         * modified _linkCmd and _asmCmd to include compiler passed
5633         arguments via -W option
5634         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5635         object file from '.rel' to '.o' in port->linker structure,
5636         changed size of fptr from 2 to 3 in port structure
5637
5638 2004-01-07  Borut Razem <borut.razem AT siol.net>
5639
5640         * support/scripts/sdcc.nsi: update PATH
5641         * support/scripts/sdcc.ico: craeted
5642
5643 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5644
5645         * device/include/Makefile.in: fix install
5646         * doc/Makefile: fix install
5647
5648 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5649
5650         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5651         in bug #860505
5652         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5653         how the function variable allocation summary is displayed; also
5654         include information about variables allocated to the overlay
5655         segment
5656
5657 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5658
5659         * as/mcs51/lkmain.c: Help about -Y option
5660         * as/mcs51/lkarea.c: Fixed gcc warnings
5661
5662 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5663
5664         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5665         fixed warning
5666         * support/valdiag/tests/overflow.c: added
5667         * src/SDCCast.c (decorateType),
5668         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5669         LEFT_OP (left shift)
5670
5671 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5672
5673         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5674         (default behaviour).
5675
5676 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5677
5678         A python script to validate compiler diagnostic messages. It can be
5679         used to verify that sdcc complains about bad c source code and
5680         gives a good location of the error.
5681         * support/valdiag/Makefile,
5682         * support/valdiag/valdiag.py,
5683         * support/valdiag/tests/*
5684
5685 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5686
5687         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5688         * src/SDCCsymt.c (newEnumType),
5689         * src/SDCCsymt.h
5690         * support/Util/SDCCerr.c,
5691         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5692         enum related bugs.
5693         * support/regression/tests/enum.c: added test for enum values that
5694         require at least 2 bytes of storage.
5695
5696 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5697
5698         * src/common.h: added ifndef/define/endif macros
5699         around the header file.
5700         Bug reported from Jesus Calvino-Fraga
5701
5702 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5703
5704         * sdcc.spec: updated
5705         * device/include/Makefile.in: don't install CVS directories
5706         * device/lib/Makefile.in: added removal of CVS directories after install
5707         * doc/Makefile: fixed install, added local_icons
5708         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5709         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5710         * src/ds390/gen.c (genRightShift): fixed bug #870788
5711         * src/SDCCast.c (decorateType): fixed bug #870781
5712
5713 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5714
5715         PIC16 port related changes:
5716         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5717         added variable stackPos,
5718
5719         * gen.c: genCall, assignResultValue: added support for
5720         pushing/retrieving function parameters to/from stack,
5721         genFunction,genEndFunction: setup stack frame for the
5722         generated function,
5723         genAddrOf: will be changed according to bug 863624
5724
5725         * added files genutils.c and genutils.h which contain gen*
5726         debugged and optimised functions extracted from gen.c
5727
5728         * glue.c: added variable 'externs' which holds extern symbols,
5729         pic16emitRegularMap: is modified to properly handle relocatable
5730          symbols under the new scheme,
5731         pic16createInterruptVect: is modified
5732         pic16printPublics: is modified to emit 'global' assembler directives,
5733         added pic16_printExterns to print extern symbols,
5734         pic16glue: initializes stack/frame pointer in the beginning of
5735         the assembly output. Temporary hack, will be corrected later,
5736         because gplink yet does not support stack and SDCC does not
5737         yet support a type of crt0.o object to create the final binary.
5738
5739         * Removed many lines that contain 8051 legacy code.
5740         * The code is finally placed under a 'code' directive.
5741         * Added port specific options.
5742
5743         * _process_pragma: simplified since now we do not need *special*
5744         include file to define SFR registers. But a separate header
5745         will be needed. This will be developed later.
5746         * _pic16_parseOptions: added, parses port specific options:
5747         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5748         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5749         --preplace-udata-with=
5750
5751         * _pic16_setDefaultOptions: modified to initialize section names,
5752         but hack is temporarly out of order since it needs improvement.
5753         * _pic16_genAssemblerPreamble: configuration words are emitted by
5754         their address instead of their name. This part is incomplete and
5755         supports only the 18Fxx2 devices. Other devices will emit an error
5756         during assembly since they do not contain the same set of config
5757         registers
5758         * _pic16_genIVT: is modified,
5759
5760         * pcode.c: added definitions for some hardware registers that are needed
5761         for stack support
5762         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5763         All PCI entries are updated. Now LFSR is supported.
5764         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5765         * added pic16_newpCodeOpLit2 to support instructions with
5766         two literal arguments
5767         * pic16_pCode2str: corrected code that emits assembler instructions
5768         with two literal operands and those that have an access bit modifier
5769         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5770         this fixes a bug which caused some labels to be lost, when an
5771         assembler directive was added, i.e. banksel,
5772         * pic16_FixRegisterBanking: improved logic that causes the insertion
5773         of bank switching,
5774         * InlineFunction: functions that are called once, are not any more
5775         inlined. This can be a port option in the future,
5776
5777         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5778
5779         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5780         hold the corresponding uninitialized symbols,
5781         * pic16_allocProcessorRegister: registers have explicit marked the
5782         accessBank field,
5783         * pic16_allocInternalRegister: registers are explicit marked as
5784         not used,
5785         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5786         processing list, so bit registers were lost,
5787         *
5788
5789         * ralloc.h: added field 'accessBank' and original symbol operand
5790         in register definition,
5791         * removed the field isMapped from register definition,
5792
5793         ** Several functions have been removed from various sources:
5794         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5795         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5796         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5797         pic16_assignRelocatableRegisters
5798
5799         ** others have been introduced:
5800         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5801         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5802
5803 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5804
5805         * support/scripts/inc2h.pl: changed definition of BIT_AT
5806         to emit 'sbit at' instead of 'bit at'. This was a request.
5807
5808         PIC16 port related preliminary changes:
5809         * gen.c: prefixed function popRegFromString with
5810         pic16_ and all references to it corrected
5811         * pcode.c: all pic16_pc_* hardware registers prefixed
5812         with underscore (_),
5813         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5814         * ralloc.c: newReg(): when register is REG_SFR then
5815         set address to rIdx,
5816         pic16_allocProcessorRegister(): marks register wasUsed=0
5817         pic16_writeUsedRegs(): added a call to assign processor
5818         registers via pic16_assignFixedRegisters
5819
5820 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5821
5822         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5823         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5824         variables in unused register banks.  Also the SSEG is placed
5825         wherever there is enough space for it, and IDATA can be anywhere
5826         in internal RAM.  For now compile using -Wl-Y[stack_size].
5827         The mem file is different for this option as well, since it
5828         makes no sense of talking about DSEG lenght.
5829
5830 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5831
5832         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5833         in certain cases, e.g. when ROM assignment, patch provided
5834         from Albert den Haan.
5835
5836 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5837
5838         Many signedness and type propagation fixes:
5839         * src/SDCCicode.c: made geniCodeCast() static
5840         replaced SPEC_ by IS_ (cosmetic)
5841         (operandOperation): fixed div and mod operation
5842         (usualBinaryConversions): added support for promotion of char
5843         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5844         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5845         (geniCodeAdd): an array index will stay unsigned, even if promoted
5846         from char to int
5847         (geniCodeArray): ditto
5848         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5849         * src/SDCCsymt.c (computeType): added more support for char;
5850         promotion of char is selectable by promoteCharToInt, fixed signedness
5851         for all cases
5852         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5853         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5854         * src/SDCCval (val*): replaced signedness calculation by
5855         computeType()
5856         rearranged if-branches (cosmetic)
5857         (valShift): added warning W_SHIFT_CHANGED
5858         (valCompare): fixed problem with different types
5859         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5860         * support/regression/tests/literalop.c: added many cases
5861         * support/regression/tests/ast_constant_folding.c: changed finally to
5862         'unsigned int'
5863         * .version: new year, new version: 2.3.7
5864         * src/SDCCmain.c (main): applied patch #866468
5865         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5866         provided by Scott Bronson
5867         * doc/sdccman.lyx: updated documentation for sdcdb
5868         updated and added chapter tips
5869
5870 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5871
5872         * src/SDCCsymt.h: missing from yesterday's commits
5873
5874 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5875
5876         * src/SDCC.y (struct_or_union_specifier),
5877         * support/Util/SDCCerr.c,
5878         * support/Util/SDCCerr.h: verify that struct & union tags are used
5879         as declared.
5880
5881 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5882
5883         * src/SDCCglobl.h: missing from yesterday's commits
5884
5885 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5888         sft_attributes, struct_declaration, parameter_declaration,
5889         type_name, start_block, declaration_list),
5890         * src/SDCC.lex (check_type): support redefinition of typedef names
5891
5892 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5893
5894         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5895         aligned xdata arrays. Erik helped me with the if clause.
5896
5897 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5898
5899         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5900         warning
5901
5902 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5903
5904         * src/SDCCast.h,
5905         * src/SDCCast.c (newAst_),
5906         * src/SDCCicode.h,
5907         * src/SDCCicode.c (ast2iCode, newiCode),
5908         * src/SDCCglobl.h,
5909         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5910         expr, statement, expression_statement, selection_statement,
5911         iteration_statement, expr_opt, jump_statement): foundation for tracking
5912         sequence points
5913         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5914         point code too)
5915
5916 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         * support/Util/SDCCerr.c,
5919         * src/SDCCast.h,
5920         * src/SDCCast.c (createCase, createDefault, decorateType),
5921         * src/SDCClabel.c (labelUnreach),
5922         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5923         to error messages.
5924         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5925         (with thanks to Stas Sergeev)
5926         * device/include/time.h,
5927         * device/lib/time.c (CheckTime): suppress unreachable code warning
5928
5929 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * src/SDCCast.c (createIvalCharPtr),
5932         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5933         bug #753752)
5934         * support/regression/tests/nullstring.c: tests for these two bugs
5935
5936 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * support/Util/SDCCerr.h,
5939         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5940         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5941         about storage class and 'at' used inside struct or union
5942         * src/SDCCBBlock.c (iCodeFromeBBlock),
5943         * src/SDCCcse.c (ifxOptimize),
5944         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5945         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5946         printIval, emitStaticSeg, emitOverlay),
5947         * src/SDCClabel.c (deleteIfx),
5948         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5949         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5950         gatherAutoInit, processParms),
5951         * support/Util/SDCCerr.h,
5952         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5953         reporting for post-parse errors.
5954
5955 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5956
5957         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5958         implicit casts via union; they don't work on big endian systems
5959         (possible fix for bug #861138)
5960
5961 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5962
5963         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5964         * src/mcs51/main.c: fixed the fix for bug #737001
5965
5966 2003-12-15  Borut Razem <borut.razem AT siol.net>
5967
5968         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5969
5970 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * support/makebin/makebin.c: put output in binary mode
5973
5974 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5975
5976         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5977         xdata and data memory on startup. Set the environment variable
5978         SDCC_NOGENRAMCLEAR to disable this.
5979         * src/mcs51/peephole.def,
5980         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5981         (allows non-interrupt and interrupt code to safely compete for a resource
5982         without the non-interrupt code having to disable interrupts)
5983
5984 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5985
5986         * src/SDCCicode.c (geniCodeAdd),
5987         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5988         with valFromType if type might be a pointer and host is big endian).
5989         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5990         types, not just integer types.
5991         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5992         multiply defined with mismatching "at" address.
5993
5994 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5997         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5998         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5999         with embedded nulls (fixed bug #753752)
6000
6001 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6002
6003         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6004         Apparently this did not see much testing (endless loop)
6005
6006 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6007
6008         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6009
6010 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6011
6012         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6013         gracefully handle NULL memmap pointers
6014
6015 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6016
6017         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6018         instead of deleting the iCode when an operand is volatile
6019         * src/z80/gen.c (genDummyRead),
6020         * src/mcs51/gen.c (genDummyRead),
6021         * src/ds390/gen.c (genDummyRead),
6022         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6023         not just IC_RIGHT
6024         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6025         * src/SDCC.y: fixed bug #850420
6026
6027 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         Applied z80 i/o port patch from Peter Townson and fixed some operators
6030         to better handle operands in A register.
6031         * device/include/z180.h
6032         * src/SDCC.y
6033         * src/SDCCglue.c
6034         * src/z80/gen.c
6035         * src/z80/gen.h
6036         * src/z80/main.c
6037         * src/z80/peeph-z80.def
6038         * src/z80/peeph.def
6039         * src/z80/z80.h
6040
6041 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6044
6045 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6046
6047         * device/lib/hc08/_mullong.c: Removed extra #endif
6048
6049 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * sim/ucsim/hc08.src/inst.cc,
6052         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6053         carries from x to h
6054         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6055         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6056         * device/include/stdarg.h: fixed varargs for hc08
6057         * device/lib/Makefile.in,
6058         * device/lib/hc08/Makefile,
6059         * device/lib/hc08/_mulint.c,
6060         * device/lib/hc08/_mullong.c: fixed some endian problems
6061
6062 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6063
6064         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6065         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6066         * device/lib/_gptrget.c,
6067         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6068
6069 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6070
6071         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6072         * src/SDCCast.c (astErrors): fixed bug #846007
6073         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6074
6075 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6076
6077         * src/SDCCast.c (decorateType): disabled a transformation I added in
6078         revision 1.188 (access to fields of a structure at an absolute address);
6079         it breaks with bitfields, extern declarations, and gcse analysis.
6080         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6081         could be assigned through a pointer, so don't complain.
6082         * src/SDCCast.c (astErrors),
6083         * src/SDCCast.h,
6084         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6085
6086 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6087
6088         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6089         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6090         output of __config directives, since gpasm now supports them
6091         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6092         pre-processor macro, i.e. -DMCU=p18f452
6093         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6094         and modified to handle 'cast' icode similarly to '=' icode
6095         * src/pic16/device.h (typedef struct PIC_device): added field
6096         'extMIface' to indicate that chip has external memory interface
6097         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6098         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6099         18F8720
6100
6101 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/SDCC.y (pointer): fixed bug #846006
6104         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6105         * src/SDCCast.c (decorateType): fixed bug #846009
6106         * src/ds390/peeph.def,
6107         * src/ds390/gen.c (genAnd, genOr),
6108         * src/mcs51/peeph.def,
6109         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6110
6111 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6114         * src/SDCCdflow.c
6115         * src/SDCCcse.c
6116         * src/SDCCcse.h
6117         * src/SDCCBBlock.h
6118         * src/SDCCBBlock.c
6119
6120 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6121
6122         fixed bug #845089
6123         * src/SDCCbitv.h,
6124         * src/SDCCbitv.c: added function to free a bitvector
6125         * src/SDCClrange.h,
6126         * src/SDCClrange.c: added function to recompute the liveranges
6127         * src/avr/ralloc.c,
6128         * src/ds390/ralloc.c,
6129         * src/hc08/ralloc.c,
6130         * src/mcs51/ralloc.c,
6131         * src/pic/ralloc.c,
6132         * src/pic16/ralloc.c,
6133         * src/xa51/ralloc.c,
6134         * src/z80/ralloc.c: recompute the liveranges after register packing
6135
6136 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6137
6138         * src/SDCCloop.c (newInduction): fixed bug #845630
6139
6140 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6143         inadvertantly left behind from my 2003-11-12 change
6144
6145 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         Updated headers I neglected to commit yesterday.
6148         * src/SDCClrange.h,
6149         * src/SDCCicode.h
6150
6151 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6154         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6155         * src/SDCCopt.c (eBBlockFromiCode),
6156         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6157         the creation of the key hash table from the sequencing so it can be used
6158         earlier (for some GCSE bug fixes still pending)
6159
6160 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6161
6162         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6163         * support/regression/tests/addsub.c: testing genPlus shortcut
6164
6165 2003-11-15  Borut Razem <borut.razem AT siol.net>
6166
6167         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6168
6169 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6172         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6173         ordering is immaterial.
6174         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6175
6176 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6179         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6180         (SIGSEV) of bug #840381
6181         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6182         unlink new file before rename if new and old filenames are the same)
6183
6184 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6185
6186         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6187         uninitialized variables) for the mcs51. Set environment variable
6188         SDCC_GENRAMCLEAR to test.
6189         xdata initialization slightly shorter
6190
6191 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6192
6193         * src/SDCCsymt.h,
6194         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6195         #838241 & 780691 (basicly the same bug)
6196         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6197         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6198
6199 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6200
6201         * src/SDCCmain.c (linkEdit): "fix" #834252
6202
6203 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6204
6205         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6206         * src/SDCCast.h,
6207         * src/SDCC.y: fixed bug #819403
6208
6209 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6210
6211         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6212         the reentrant attribute.
6213         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6214         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6215         simulation
6216         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6217         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6218         erroneously reduced to a literal.
6219         * src/hc08/ralloc.c (packRegisters, rematStr),
6220         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6221         some cases
6222
6223 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6224
6225         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6226         * doc/sdccman.lyx: changed from 'article' to 'book'
6227         * doc/Makefile: readded test_suite_spec and cdbfileformat
6228
6229 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6230
6231         * device/include/stdlib.h: include malloc.h to comply with ANSI
6232         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6233
6234 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6235
6236         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6237         * doc/clean.mk: also remove *.out files
6238         * doc/sdccman.lyx: some additions, larger top/bottom margins
6239
6240 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6241
6242         * src/SDCC.y: fixed bug #837365
6243         * support/regression/tests/bitopcse.c
6244         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6245         a symbol (might be valop instead)
6246         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6247         * device/lib/clean.mk: added hc08 to the cleaning list
6248
6249 2003-11-04  Borut Razem <borut.razem AT siol.net>
6250
6251         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6252           made 2003-11-04
6253         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6254           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6255           malloc is declared in standard stdlib.h
6256
6257 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6258
6259         * device/lib/hc08/Makefile: need to clean .rel not .o files
6260         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6261
6262 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6263
6264         * src/port.h,
6265         * src/hc08/main.c,
6266         * src/mcs51/main.c,
6267         * src/ds390/main.c,
6268         * src/z80/main.c,
6269         * src/avr/main.c,
6270         * src/pic/main.c,
6271         * src/pic16/main.c,
6272         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6273         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6274         tests (which uses the port's oclsExpense function)
6275         * src/SDCC.y,
6276         * src/SDCCast.c,
6277         * src/SDCCicode.c,
6278         * src/hc08/gen.c,
6279         * src/ds390/gen.c,
6280         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6281
6282 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6283
6284         * src/SDCCcse.c (ifxOptimize),
6285         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6286         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6287         deleting the IFX iCode.
6288         * src/hc08/ralloc.c: reduced unneeded slocs
6289         * src/hc08/gen.c: fixed bug in asmopToBoolean
6290
6291 2003-11-04  Borut Razem <borut.razem AT siol.net>
6292
6293         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6294           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6295           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6296           transferred to configure
6297
6298 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6299
6300         Use headers defined in the C[++] standards:
6301         * sim/ucsim/gui.src/serio.src/fileio.cc
6302         * sim/ucsim/gui.src/serio.src/frontend.cc
6303         * sim/ucsim/gui.src/serio.src/main.cc
6304         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6305         * support/Util/NewAlloc.c
6306         * as/hc08/lklibr.c
6307         * as/mcs51/lklibr.c
6308         * as/z80/aslist.c
6309         * as/z80/assym.c
6310
6311 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6312
6313         * Added MSVC projects for hc08 assembler and linker:
6314         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6315         /as/hc08/link_hc08.dsp
6316
6317 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6318
6319         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6320
6321 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6322
6323         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6324
6325 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6326
6327         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6328
6329 2003-10-31  Borut Razem <borut.razem AT siol.net>
6330
6331         * support/cpp2/cpplib.h,
6332           support/cpp2/cpplib.c,
6333           support/cpp2/cpplex.c,
6334           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6335           to switch _asm block preprocessing on / off. Default is
6336           #pragma preproc_asm +
6337
6338 2003-10-31  Borut Razem <borut.razem AT siol.net>
6339
6340         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6341           when outputting comment blocks (when executed with -C option) and
6342           _asm (SDCPP specific) blocks
6343
6344 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6347
6348 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6349
6350         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6351
6352 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6353
6354         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6355         * src/SDCCast.c (decorateType): fixed bug #832664
6356
6357 2003-10-31  Borut Razem <borut.razem AT siol.net>
6358
6359         * support\cpp2\cpplex.c: fixed for SDCPP:
6360           comments(when executed with -C option) and _asm blocks
6361           were included even if they where in skipped #if block.
6362           Applied solution from GCC cpp 3.3.2
6363
6364 2003-10-31  Borut Razem <borut.razem AT siol.net>
6365
6366         * src/SDCC.lex: sdcc now understands both formats:
6367           '# <line_number> <file_name>' and
6368           '#line <line_number> <file_name>'
6369         * support/cpp2/cppmain.c: sdcpp now generates the standard
6370           '# <line_number> <file_name>' instead of former
6371           '#line <line_number> <file_name>'
6372
6373 2003-10-30  Borut Razem <borut.razem AT siol.net>
6374
6375         * support/cpp2/cpphash.h,
6376         * support/cpp2/cpplib.h
6377         * support/cpp2/cpplex.c,
6378         * support/cpp2/cppmain.c,
6379         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6380
6381 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6382
6383         Fixed a number of problems revealed by bug #827883.
6384         * src/SDCCloop.c (loopInvariants): Spill location of the
6385         result operand should be recomputed if extracted from
6386         a loop. Also, don't extract assignments of an iTemp
6387         from a literal.
6388         * src/SDCCast.c (isConformingBody): loop reversal should
6389         not occur if the control variable is involved with a
6390         relational operator.
6391
6392 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6393
6394         * .version: bumped to 2.3.6 to reflect the big improvements
6395         made by Erik and Klaus. Thanks!
6396
6397 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6398
6399         Replaced the livrange code.
6400         * src/SDCClrange.c: added new LR code
6401         * src/SDCCloop.c,
6402         * src/SDCCBBlock.h: removed remainig parts from old LR code
6403         * src/ds390/ralloc.c,
6404         * src/ds390/gen.c: minor fixes to make it work with new code
6405
6406 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         * as/hc08/asm.h,
6409         * as/hc08/lkrloc.c,
6410         * src/hc08/gen.c,
6411         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6412         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6413         (tweaked fix for bug #818696)
6414
6415 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6416
6417         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6418
6419 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         * src/SDCCmain.c,
6422         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6423         * src/mcs51/gen.c (gencjneshort),
6424         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6425         more efficient (per Scott Bronson's suggestion)
6426
6427 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6428
6429         Extended the semantics of the critical keyword to include
6430         individual statements. See RFE #827755 and #799831
6431         * src/SDCC.y
6432         * src/SDCCicode.c
6433         * src/SDCCopt.c
6434         * src/SDCCast.c
6435         * support/Util/SDCCerr.c
6436         * support/Util/SDCCerr.h
6437         * src/mcs51/gen.c
6438         * src/ds390/gen.c
6439         * src/hc08/gen.c
6440
6441 2003-10-19  Borut Razem <borut.razem AT siol.net>
6442
6443         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6444
6445 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6448         Fixed bug #818696
6449         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6450         and predecrement operand is displayed
6451
6452 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6453
6454         * src/SDCCval.c (valMinus): fixed bug #826041
6455
6456 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6457
6458         Some hc08 related updates that I missed earlier
6459         * sim/ucsim/stypes.h
6460         * support/regression/ports/hc08/spec.mk
6461
6462 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         New target "hc08" for the Motorola 68hc08 family of micros
6465
6466         * configure
6467         * configure.in
6468         * Makefile
6469         * src/hc08/*
6470         * src/SDCCmain.c
6471         * src/port.h
6472         * sim/ucsim/hc08.src/*
6473         * sim/ucsim/configure.in
6474         * src/ucsim/configure
6475         * sim/ucsim/packages_in.mk
6476         * as/hc08/*
6477         * as/Makefile
6478         * device/include/mc68hc908qy.h
6479         * device/lib/hc08/*
6480         * device/lib/Makefile.in
6481         * support/regression/ports/hc08/*
6482         * support/regression/Makefile
6483
6484 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6485
6486         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6487         regression test
6488         * src/ds390/gen.c (genCast): fixed bug #821957
6489
6490 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6491
6492         * device/lib/logf.c: "fixed" overlay bug
6493         * support/regression/ports/host/spec.mk: added m library
6494         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6495         * support/regression/tests/float_trans: added (for Eric)
6496
6497 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6498
6499         * src/mcs51/gen.c (genCpl): fixed bug
6500         http://sf.net/mailarchive/message.php?msg_id=6263915
6501
6502 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6503
6504         * src/SDCCast.c (decorateType): added extended constant folding
6505         * src/SDCCsymt.c (computeType): cleanup
6506         * src/SDCCval.c (valShift): minor optimization
6507         * support/regression/tests/ast_constant_folding.c: added
6508
6509 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         * src/SDCCmain.c: removed some unintended changes
6512
6513 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6516         * src/z80/gen.c: fixed part of bug #817589
6517         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6518
6519 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6520
6521         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6522         * src/SDCCcflow.c
6523         * src/SDCCcse.c
6524         * src/SDCCdflow.c
6525         * src/SDCClabel.c
6526         * src/SDCClrange.c
6527         * src/SDCCmem.c
6528         * src/SDCCopt.c
6529         * src/SDCCpeeph.c
6530         * src/SDCCset.c
6531         * src/avr/ralloc.c
6532         * src/ds390/ralloc.c
6533         * src/izt/ralloc.c
6534         * src/mcs51/ralloc.c
6535         * src/pic/ralloc.c
6536         * src/pic16/ralloc.c
6537         * src/xa51/ralloc.c
6538         * src/z80/ralloc.c
6539         * src/z80/gen.c: removed unused label "release:"
6540
6541 2003-10-06  Borut Razem <borut.razem AT siol.net>
6542
6543         * src/SDCC.lex: removed definition of unused variables
6544           save_optimize and save_options
6545
6546 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6547
6548         * clean.mk: removed '=' in "-maxdepth=1"
6549         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6550         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6551
6552 2003-10-06  Borut Razem <borut.razem AT siol.net>
6553
6554         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6555           my_unput() replaced by unput()
6556
6557 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6558
6559         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6560         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6561         type-punned pointer will break strict-aliasing rules"
6562         Old LR behaviour is again default; Klaus' LR can be choosen by
6563         defining the environment variable LRKLAUS
6564         * src/SDCCBBlock.h
6565         * src/SDCCloop.c
6566         * src/SDCClrange.c
6567         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6568         * clean.mk: fixed removal of files in bin/CVS/
6569         * device/lib/clean.mk: fixed removal of directories small and large
6570         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6571         * src/SDCCicode.c,
6572         * src/SDCCval.c: removed superflous test for pedantic
6573
6574 2003-10-05  Borut Razem <borut.razem AT siol.net>
6575
6576         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6577           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6578           message "unmatched #pragma SAVE and #pragma RESTORE"
6579
6580 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6581
6582         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6583           assembly, critical functions, atomic, nojtbound)
6584
6585 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6586
6587         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6588         * src/SDCCBBlock.h
6589         * src/SDCCloop.c
6590         * src/SDCCloop.h
6591         * src/SDCClrange.c
6592
6593 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6594
6595         * src/z80/gen.h,
6596         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6597         * src/mcs51/gen.h
6598         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6599         * src/ds390/gen.h
6600         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6601         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6602         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6603
6604 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6605
6606         * src/z80/gen.c (genRet): fixed bug #524753
6607         * src/z80/gen.c (genCast): fixed internal error on cast from
6608         pointer to long
6609         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6610         fix for bug #477835 to the z80
6611         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6612         for tracking iCodes in the peephole optimizer for z80
6613
6614 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6615
6616         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6617         the other part of bug #814548
6618         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6619
6620 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6621
6622         * src/SDCCcse.c: fixed part of bug #814548
6623
6624 2003-09-28  Borut Razem <borut.razem AT siol.net>
6625
6626         * src/asm.c: rewrite of printILine() to use temporary file instead
6627           a pipe
6628         * src/xa51/main.c: commented out declaration of int rewinds
6629
6630 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6631
6632         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6633
6634 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6635
6636         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6637         * src/asm.c (printILine): Fixed bug #811015
6638
6639 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6640
6641         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6642         freeing.
6643
6644 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6645
6646         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6647         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6648         to correctly handle general case of AOP_PAIRPTR
6649         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6650
6651 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6652
6653         * src/mcs51/ralloc.c (fillGaps),
6654         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6655         register positioning bug)
6656
6657 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6658
6659         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6660
6661 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6662
6663         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6664         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6665         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6666         (ralloc doesn't intentionally do this now, but perhaps later)
6667         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6668         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6669         register positioning bugs (Fixed bug #762602 and #795325)
6670         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6671         (Fixed bug #808779)
6672         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6673         lines that --i-code-in-asm generates
6674
6675 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6676
6677         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6678         trying to fclose a FILE* that was already closed.
6679
6680 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6681
6682         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6683         of const struct should be treated as if const themselves)
6684
6685 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6686
6687         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6688
6689 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6690
6691         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6692         Unix (/n) and DOS (/r/n) line terminations.
6693
6694 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6695
6696         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6697         bug #613775
6698
6699 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6700
6701         * src/mcs51/gen.c (genFunction, genEndFunction),
6702         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6703         and restore of EA so that stack offsets to parameters are
6704         correct when using both critical and reentrant/stack-auto.
6705         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6706         size (can be triggered in error if sloc is shared between
6707         different sized objects)
6708         * device/include/float.h: fixed macros to explicitly use
6709         unsigned long where needed
6710
6711 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6712
6713         Feature req. 799831: added code to allow nesting of critical functions
6714         * src/mcs51/gen.c (genFunction, genEndFunction)
6715         * src/ds390/gen.c (genFunction, genEndFunction)
6716
6717 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/SDCCsymt.c (sclsFromPtr),
6720         * src/SDCCsymt.h,
6721         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6722         support for standard C idiom of memory mapped variables; for
6723         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6724         to xdata int at 0x1234 tempvar = 1.
6725         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6726         provided by Akiya ISHIDA
6727
6728 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6729
6730         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6731         * src/SDCCval.c (constVal): added reduction from int to char
6732         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6733         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6734         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6735         to ignore the sign
6736         * support/regression/tests/shifts.c: fixed
6737
6738 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/z80/gen.c (genXor): Fixed bug #805445
6741
6742 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6743
6744         Fixed bug #621531 (const & volatile confusion in the type chain).
6745         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6746         refer to the const or volatile state of the pointer itself.
6747
6748         * src/SDCCast.c
6749         * src/SDCCglue.c
6750         * src/SDCCicode.c
6751         * src/SDCCsymt.c
6752         * src/SDCCval.c
6753         * src/SDCC.y
6754         * src/SDCCsymt.h
6755         * src/pic/gen.c
6756         * src/pic/ralloc.c
6757         * src/pic16/gen.c
6758         * src/pic16/ralloc.c
6759         * support/regression/tests/const.c
6760
6761 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6762
6763         When checking for duplicated modules, use absolute paths
6764         instead of relative paths.  Files changed:
6765
6766         * as/mcs51/lklib.c
6767         * link/z80/lklib.c
6768
6769 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6770
6771         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6772
6773 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6774
6775         * device/include/string.h: added size_t typedef, changed
6776         prototypes to use size_t, eliminated separate reentrant and
6777         non-reentrant declarations, added _memmove declaration
6778         * device/lib/_memcpy.c: changed to use size_t instead of int,
6779         changed /4 to >>2 to avoid division library call
6780         * device/lib/_memcmp.c,
6781         * device/lib/_memset.c,
6782         * device/lib/_strncat.c,
6783         * device/lib/_strncpy.c,
6784         * device/lib/_strncmp.c: changed to use size_t instead of int
6785         * device/lib/_memmove.c: new file (fixed bug #772294)
6786         * device/lib/Makefile.in: added _memmove.c
6787         * device/lib/z80/asm_strings.s: fixed bug #772290
6788         * support/regression/tests/bitfields.c: attempt to fix host assertion
6789         failure on amd64-unknown-linux2.2
6790
6791 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6792
6793         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6794         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6795         * as/z80/asmain.c (main): fixed bug #801766
6796
6797 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6798
6799         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6800         compilers
6801
6802 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6803
6804         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6805         reported in bug #800609
6806
6807 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6808
6809         * Top header beautifications in src/pic16 directory:
6810           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6811           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6812           pcoderegs.h, ralloc.c, ralloc.h
6813         * main.c: added top header and GPL license notice
6814         * pcode.c: fixed the if-conditional warning
6815
6816 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6817
6818         * device/lib/_mullong.c: replaced int by short for gcc
6819
6820 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6821
6822         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6823         and JUMPTABLE iCodes properly now (worked by accident before)
6824         * src/mcs51/gen.c (leftRightUseAcc),
6825         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6826         iCode properly now. Use getSize instead of nRegs since a & b
6827         aren't part of the nRegs tally.
6828
6829 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6830
6831         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6832         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6833           before instructions that use the _STATUS register
6834
6835 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6836
6837         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6838         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6839         fetching of the pointer
6840         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6841         copied from genNearPointerSet()
6842         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6843         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6844         If they pop r0/r1 they must be called in the opposite order than aopOp().
6845         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6846         (resp. --stack-auto), prepared for --xstack
6847
6848 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6849
6850         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6851
6852 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6853
6854         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6855         these ports have their own __sdcc_external_start()
6856
6857 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6858
6859         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6860         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6861         type for bits was changed. It resulted in bit variables becoming
6862         global, which is not permitted in PIC 14 assembly output.
6863
6864 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6865
6866         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6867
6868 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6869
6870         Z80 and MCS51 linkers complaint if a public symbol is defined
6871         in more than one library module:
6872
6873         * as/mcs51/lklib.c
6874         * link/z80/lklib.c
6875         * as/mcs51/Makefile.in
6876
6877 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6878
6879         A few small changes that speed up the peephole optimizer.
6880
6881         * src/SDCCpeeph.c
6882
6883 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6884
6885         Try to make the peephole optimizer smarter by maintaining
6886         an association between the assembly source code and the
6887         iCodes that originated them. Put this information to use
6888         with a new peephole rule condition "notVolatile" so that
6889         the rules can be aggressive yet still safe.
6890
6891         * src/SDCCpeeph.c
6892         * src/SDCCpeeph.h
6893         * src/mcs51/gen.c
6894         * src/mcs51/peeph.def
6895
6896 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6897
6898         Fixed bug #741761
6899
6900         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6901         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6902         if the left or right operand symbols have the accuse flag set.
6903
6904 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6905
6906         Changed the type of the result of the ! (NOT) operator to char;
6907         previously it returned the same type as the source. This allows
6908         us to eliminate all the genFloatNot functions (all of its target
6909         implementations were very buggy) since !float can use the same
6910         code as !long now.
6911
6912         * src/SDCCicode.c (ast2iCode): ! returns char
6913         * src/mcs51/gen.c (genNot, genNotFloat),
6914         * src/ds390/gen.c (genNot, genNotFloat),
6915         * src/z80/gen.c (genNot, genNotFloat),
6916         * src/pic/gen.c (genNot, genNotFloat),
6917         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6918
6919 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6920
6921         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6922         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6923            during interrupts. Ensure WSAVE is located at a shared bank address.
6924         2. Fixed page selection in some places
6925         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6926            the registers name strings.
6927         4. Fixed "signed / unsigned compare" compiler warnings.
6928         5. The PIC port manages its own allocation of the general purpose
6929            registers, but makes no attempt to reuse them. As a result when
6930            compiling it soon runs out of general purpose registers. Some
6931            additional code was added to the files pcode.c and device.c to walk
6932            through the function call tree and rename the registers so that they
6933            get reused.
6934
6935         * src/pic/device.c
6936         * src/pic/gen.c
6937         * src/pic/glue.c
6938         * src/pic/pcode.c
6939         * src/pic/pcode.h
6940         * src/pic/ralloc.c
6941         * src/pic/ralloc.h
6942         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6943         genPlus() & genMinus() when the result is the same as left or right
6944
6945 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6946
6947         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6948
6949 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         Made bitfield a distinct type from bit so that bitfields
6952         convert as per ANSI C and bits retain their traditional
6953         boolean style behaviour. Implemented bitfield support in
6954         the z80 port.
6955
6956         * src/SDCCsymt.h,
6957         * src/SDCCsymt.c,
6958         * src/SDCCast.c,
6959         * src/cdbFile.c,
6960         * src/mcs51/gen.c,
6961         * src/ds390/gen.c: bit v bitfield split
6962         * src/z80/gen.c: New support for bitfields
6963         * support/regression/tests/bitfields.c: reenabled z80,
6964         added more tests
6965
6966 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6967
6968         Rules 246.x, 247.x relate to bitfields, the others speed up
6969         access to xdata mapped I/O devices.
6970
6971         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6972
6973 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6974
6975         Cleaned up genPackBits and genUnpackBits and added two helper
6976         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6977         for literal assignments in genPackBits (thanks to Frieder for
6978         reminding me).
6979
6980         * src/mcs51/gen.c
6981         * src/ds390/gen.c
6982
6983 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6984
6985         Fixed bug #748310 (pointer to function type mishandled when the
6986         function name is omitted). Also fixed a SIGSEGV when a function
6987         attribute (reentrant, etc) is used on a non-function or on a
6988         function but misplaced before the parameter list.
6989
6990         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6991         bug #748310
6992         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6993         * support/Util/SDCCerr.h,
6994         * support/Util/SDCCerr.c: Added func attr misuse error msg
6995
6996 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         Fixed bug #787649 by anonymous
6999         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7000         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7001
7002 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7003
7004         Fixed numerous bitfield problems.
7005
7006         * src/SDCC.y: More bitfield related error checking
7007         * src/SDCCsymt.h,
7008         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7009         * support/Util/SDCCerr.h,
7010         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7011         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7012         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7013         * support/regression/tests/bitfields.c: tests added
7014
7015 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7016
7017         Made the constant following the "interrupt" keyword optional. If
7018         omitted, the function will not automatically be given an entry
7019         in the interrupt vector table (similar to #pragma NOIV, but
7020         less syntacticly kludgy). The interrupt number is also now
7021         range checked. Also fixed a bug in the high order bit example
7022         in the manual.
7023
7024         * src/SDCC.y
7025         * src/SDCCmem.c
7026         * src/SDCCglue.c
7027         * src/SDCCsymt.h
7028         * support/Util/SDCCerr.c
7029         * support/Util/SDCCerr.h
7030         * doc/sdccman.lyx
7031
7032 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7033
7034         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7035         * src/SDCCicode.c (operandOperation): rewritten some ops
7036         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7037         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7038         other type
7039         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7040         be re-activated by defining REDUCE_LITERALS)
7041         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7042         unsigned, but are signed by default
7043         * src/SDCCval.c (constVal): rearranged
7044         * src/SDCCval.c (valMod): preliminary fix
7045         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7046         * support/regression/literalop.c: added, work in progress
7047
7048 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         Generate warnings for useless declarations like "char data;"
7051         that don't do what new users expect.
7052
7053         * src/SDCC.y
7054         * support/Util/SDCCerr.h
7055         * support/Util/SDCCerr.c
7056
7057 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7058
7059         * src/SDCCval.c (valMult): fix overflow detection of negative int
7060
7061 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7062
7063         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7064
7065         Changes to support big endian targets:
7066
7067         * src/ports.h
7068         * src/SDCCglue.c
7069         * src/avr/main.c
7070         * src/ds390/main.c
7071         * src/izt/i186.c
7072         * src/mcs51/main.c
7073         * src/pic/main.c
7074         * src/pic16/main.c
7075         * src/xa51/main.c
7076         * src/z80/main.c
7077
7078 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7079
7080         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7081         * device/lib/time.c: fixed warning "integer overflow in expression"
7082
7083 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7084
7085         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7086         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7087         constants are unsigned; added recognition of "u" flag for unsigned
7088         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7089         * src/SDCCval.c (valDiv, valMod): fixed signdness
7090         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7091         signedness of modulo, left and right shift
7092         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7093         * support/Util/SDCCerr.h: added warning W_INT_OVL
7094         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7095         * src/SDCCast.c (ast_print): improved output of constants
7096
7097 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7098
7099         Fixed some warnings when building with MSVC:
7100
7101         * as\mcs51\asdata.c
7102         * as\z80\asdata.c
7103         * as\mcs51\asm.h
7104         * as\z80\asm.h
7105         * link\z80\aslink.h
7106         * link\z80\lkdata.c
7107         * link\z80\lkeval.c
7108         * link\z80\lkgb.c
7109         * link\z80\lkihx.c
7110         * link\z80\lks19.c
7111         * link\z80\lksym.c
7112         * support\cpp2\cpplib.c
7113         * src\ds390\gen.c
7114         * src\mcs51\gen.c
7115
7116 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7117
7118         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7119
7120 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7121
7122         * support\librarian\clean.mk: Do not remove Makefile.
7123         * support\librarian\Makefile: added.
7124
7125 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7126
7127         Added librarian to MSVC build:
7128         * all.dsp
7129         * sdcc.dsw
7130         * support\librarian\librarian.dsp
7131
7132         'configure' not needed for librarian, removed:
7133         * support\librarian\configure
7134         * support\librarian\configure.in
7135         * support\librarian\config_in.h
7136         * support\librarian\Makefile.in
7137
7138         Hopefully these ones built the librarian and the rest of sdcc properly:
7139         * Makefile
7140         * Makefile.common.in
7141
7142         Messed up 'configure', so revert to previous version:
7143         * configure
7144         * configure.in
7145
7146 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7147
7148         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7149         there, while the mantissa of a double is "only" 53 bits wide.
7150
7151 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7152
7153         Adding sdcclib to the build.  MSVC project coming soon.
7154         Files added/changed:
7155
7156         * support\librarian\clean.mk
7157         * support\librarian\configure
7158         * support\librarian\configure.in
7159         * support\librarian\config_in.h
7160         * support\librarian\Makefile.bcc
7161         * support\librarian\Makefile.in
7162         * support\librarian\sdcclib.c
7163         * Makefile.bcc
7164         * Makefile
7165         * Makefile.common.in
7166         * configure
7167         * configure.in
7168
7169 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7170
7171         Linker now complaints if linked modules have conflicting options, for
7172         example, one compiled using --model-large and another one compiled with
7173         --model-small.  The following files were modified:
7174
7175         * as\mcs51\asdata.c
7176         * as\mcs51\aslink.h
7177         * as\mcs51\asm.h
7178         * as\mcs51\asmain.c
7179         * as\mcs51\asout.c
7180         * as\mcs51\i51pst.c
7181         * as\mcs51\lkdata.c
7182         * as\mcs51\lklibr.c
7183         * as\mcs51\lkmain.c
7184         * as\z80\asdata.c
7185         * as\z80\asm.h
7186         * as\z80\asmain.c
7187         * as\z80\asout.c
7188         * as\z80\z80pst.c
7189         * link\z80\aslink.h
7190         * link\z80\lkdata.c
7191         * link\z80\lklibr.c
7192         * link\z80\lkmain.c
7193         * src\SDCCglue.c
7194
7195 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7196
7197         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7198         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7199
7200 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7201
7202         * src/z80/mappings.i: fix _mul[us][int,long] entries
7203
7204 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7205
7206         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7207
7208 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7209
7210         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7211         * support/regression/tests/bitopcse.c: added
7212         fixed warning:
7213         * src/avr/gen.c:
7214         * src/pic/gen.c:
7215         * src/pic16/gen.c:
7216         * src/z80/gen.c:
7217         * src/xa51/gen.c:
7218
7219 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7220
7221         added support for new library format to z80, gbz80 linkers:
7222         *link/z80/aslink.h
7223         *link/z80/lklex.c
7224         *link/z80/lklib.c
7225         *link/z80/lklist.c
7226
7227 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7228
7229         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7230         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7231
7232 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7233
7234         added DUMMY_READ_VOLATILE:
7235         * src/SDCC.y:
7236         * src/avr/gen.c:
7237         * src/xa51/gen.c:
7238         * src/z80/gen.c:
7239         * src/pic/gen.c:
7240         * src/pic16/gen.c:
7241         * src/mcs51/gen.c:
7242         * src/ds390/gen.c:
7243         * src/SDCCcse.c (algebraicOpts): many improvements
7244         * src/SDCCcse.h: removed algebraicOpts()
7245         * src/SDCCicode.c (picDummyRead): added
7246
7247 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7248
7249         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7250         "Insufficient space in data memory".
7251
7252 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7253
7254         * src/mcs51/gen.c: fixed bug #771358
7255         * src/z80/gen.c: fixed bug #759087
7256
7257 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7258
7259         * src/pic16/glue.c: minor cleanup by Vangelis
7260
7261 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7262
7263         * device/include/regc515c.h: fixed #758477
7264         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7265         * device/lib/_gptrput.c: saved a few bytes
7266         * my tab spacing is 8, yours too?)
7267         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7268         * device/lib/serial.c: process RX bytes earlier than TX bytes
7269         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7270
7271 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7272
7273         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7274
7275 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7276
7277     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7278
7279 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7280
7281         * device/lib/Makefile.in: bad fix, reverted to 1.43
7282
7283 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7284
7285         * device/lib/Makefile.in: added missing z80 object files
7286
7287 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7288
7289         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7290         pic16 progress by Vangelis:
7291         * src/SDCCglobl.h:
7292         * src/SDCCmain.c:
7293         * src/pic/Makefile:
7294         * src/pic:
7295         * pic/Makefile:
7296         * pic16/device.c:
7297         * pic16/device.h:
7298         * pic16/gen.c:
7299         * pic16/gen.h:
7300         * pic16/genarith.c:
7301         * pic16/glue.c:
7302         * pic16/main.c:
7303         * pic16/pcode.c:
7304         * pic16/pcode.h:
7305         * pic16/pcodepeep.c:
7306         * pic16/peeph.def:
7307
7308 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7309
7310     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7311
7312 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7313
7314     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7315     added gbz80 build to MSVC project.
7316     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7317     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7318     from 8051 stuff and setup so it links using a .lnk file.
7319
7320 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7321
7322     * support/librarian/sdcclib.c: sdcc librarian.
7323     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7324     with sdcclib.
7325
7326 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7327
7328     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7329
7330 2003-07-02  Borut Razem <borut.razem AT siol.net>
7331
7332         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7333         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7334         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7335         src/xa51/main.c, src/z80/main.c:
7336         virtualization of glue() function: each port has it's own glue function,
7337         which is accessed by do_glue function pointer in PORT.general structure
7338
7339 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7340
7341         * DS800C400 fun, improved ROM interface and tinibios.
7342
7343 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7344
7345         * More support for DS80C400. Now includes beginning of interface to ROM.
7346
7347 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7350
7351 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7352
7353         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7354
7355 2003-06-19  Borut Razem <borut.razem AT siol.net>
7356
7357         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7358
7359 2003-06-19  Borut Razem <borut.razem AT siol.net>
7360
7361         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7362         fixed Z80 port - crt0.o: cannot open.
7363
7364 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7365
7366         * support/Util/MySystem.c (merge_command): revert bad fix
7367
7368 2003-06-18  Borut Razem <borut.razem AT siol.net>
7369
7370         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7371
7372 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7373
7374         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7375         option --use-stdout sends errors to stdout instead of stderr.
7376
7377 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7378
7379         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7380
7381 2003-06-15  Borut Razem <borut.razem AT siol.net>
7382
7383         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7384         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7385         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7386         fixed width array of pointers replaced with sets;
7387         multiple include and lib paths ared transferred to preprocessor and linker
7388         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7389         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7390         fixed width array of pointers
7391         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7392         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7393         fixupPath(), getPathDifference()
7394         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7395         fixed width array of pointers
7396
7397 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7398
7399         * src/pic16/ralloc.c: fix warnings
7400         * src/pic16/pcode.c: fix warning
7401
7402 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7403
7404          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7405         know all the details, but essentially this set of changes enable
7406         the pic16 port to generate movff instructions and generate assembler
7407         directives,
7408         * src/SDCCmain.c:
7409         * src/pic16/gen.c:
7410         * src/pic16/glue.c:
7411         * src/pic16/pcode.c:
7412         * src/pic16/device.c:
7413         * src/pic16/main.c:
7414         * src/pic16/pcode.h:
7415         * src/pic16/pcoderegs.c:
7416         * src/pic16/ralloc.c:
7417         * src/pic16/ralloc.h:
7418
7419 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7420
7421         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7422         added option --vc, so sdcc errors and warnings are compatible with
7423         Microsoft Visual Studio.
7424
7425 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7426
7427         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7428           device/lib/libfloat.lib: added atof function.
7429
7430 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7431
7432         * doc/sdccman.lyx: updated to Lyx 1.3
7433         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7434         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7435         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7436
7437 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7438
7439         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7440
7441 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7442
7443         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7444           additions to the "related tools/documentation" section
7445
7446 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7447
7448         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7449
7450 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7451
7452         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7453         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7454
7455 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7456
7457         * doc/sdccman.lyx: fix double dash and other minor things
7458         * doc/Makefile: fix double dash
7459
7460 2003-05-28  Karl Bongers(patches from Martin Helmling)
7461         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7462           condition and ignore commands.
7463
7464 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7465
7466         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7467           is in parts still quite out of date, I did changes as far as I felt makes sense
7468           for a non-native english speaker.
7469           Please feel free to add to the manual or to correct my changes.
7470         * doc/Makefile: undid touching the date of intermediate tex files.
7471
7472 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7473
7474         * doc/sdccman.lyx: Manual has an index now
7475
7476 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7477
7478         Finalize muluint/mulsint and mululong/mulslong merging:
7479         * device/lib/_mulint.c
7480         * device/lib/_mullong.c
7481         * device/lib/gbz80/mul.s
7482         * device/lib/gbz80/stubs.s
7483         * device/lib/z80/mul.s
7484         * device/lib/z80/stubs.s
7485         * src/SDCCsymt.c (initCSupport)
7486
7487 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7488
7489         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7490         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7491           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7492           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7493           instead of /Zm500.
7494
7495 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7496
7497         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7498           the regression tests I'm not brave enough to enable 245.b, 245.c
7499         * doc/sdccman.lyx: added latex preamble for hyperref package.
7500           Using pdflatex this will give you a hyperlinked pdf file with
7501           bookmarks. (prepend '%' before /usepackage if this breaks something)
7502
7503 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7504
7505          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7506
7507 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7508
7509         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7510
7511 2003-05-21    <johan AT balder>
7512
7513         * src/SDCCglue.c (printIval): fixed bug #739934
7514
7515 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7516
7517         Applied patch from bug 737905 (renamed yylineo to mylineno):
7518         * src/altlex.c
7519         * src/SDCCast.c
7520         * src/SDCglobl.h
7521         * src/SDCC.lex
7522         * src/SDCCsymt.c
7523         * src/SDCCval.c
7524         * src/pic16/pcode.c: Cleaned warnings
7525         * src/pic16/pcodeflow.c: Cleaned warnings
7526         * src/pic16/pcoderegs.c: Cleaned warnings
7527
7528 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7529
7530         * src/pic16/pcode.c: Cleaned warnings
7531         * src/pic16/pcodepeep.c: Cleaned warnings
7532         * src/pic16/ralloc.c: Cleaned warnings
7533
7534 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7535
7536         * doc/sdccman.lyx: fixed bug 739745
7537         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7538
7539 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7540
7541         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7542         it can be defined with CFLAGS when running configure
7543         * src/SDCCmain.c: fixed compiling + linking with object files
7544
7545 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7546
7547         * configure.in: configure for pic16 port,
7548             added --disable-pic16-port
7549         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7550         * src/SDCCmain.c: linkOptions is changed to set *,
7551             added if/endif conditional macros to remove options help
7552             messages from optionsTable when a port is not configured, added
7553             support for the PIc16 port in the ports table, when executing
7554             the compiler with no port specified on command line, a default
7555             port is selected with the new macro DEFAULT_PORT which is
7556             defined in port.h, in setDefaultOptions() linkOptions is removed
7557             from initialization assignment, since now it is a set,
7558             parseCmdLine uses setParseWithComma for linkOptions, in
7559             linkEdit() linkOptions are accessed with new function indexSet()
7560             which returns the i'th item of a set variable. See SDCCset.c, in
7561             linkEdit() when calling buildCmdLine(), added linkOptions as
7562             last argument. Now users can pass arguments to gplink via the
7563             -Wl option, main() uses pic16glue() to glue up pic16 programs
7564         * src/SDCCpeeph.c: various changes to support pic16
7565         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7566             return the i'th item of the set
7567         * src/SDCCset.h: added function prototype for indexSet()
7568         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7569         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7570         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7571             added macro DEFAULT_PORT
7572         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7573         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7574             generated
7575         * src/pic16/glue.c: commented out some error producing lines
7576         * src/pic16/main.c: __config directives are commented out to stop
7577             gpasm complaining and test the linkage with gplink, _linkCmd and
7578             _asmCmd changed to be more gplink and gpasm friendly
7579         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7580             produced an error when parsed, peep rule 12 is added to utilize
7581             movff, but it is commented out since the pCode does not support
7582             yet a command with 2 address arguments
7583
7584 2003-05-18    <johan AT balder>
7585
7586         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7587         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7588 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7589
7590         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7591   Added feature to script commands from file.
7592
7593 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7594
7595         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7596         * src/SDCCutil.c: include ctype.h for win32
7597
7598 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7599
7600         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7601
7602 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7603
7604         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7605   Fixed so you can set breakpoints prior to run, run does not stop
7606   on entry now.  Add tbreak.  Other enhancements and fixes for use
7607   with ddd.
7608
7609 2003-05-12  Borut Razem <borut.razem AT siol.net>
7610
7611         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7612
7613 2003-05-11  Borut Razem <borut.razem AT siol.net>
7614
7615         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7616         the path of bin directory, so that PATH is the only env. variable, which has to be set
7617         in case of standard installation.
7618         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7619         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7620         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7621
7622 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7623
7624         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7625         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7626         temp files are in the port dir; clean the gen/test directory when
7627         generating new test.c
7628         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7629         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7630         * support/regression/tests/zeropad.c: added
7631
7632 2003-05-09    <johan AT balder>
7633
7634         * src/SDCCglue.c: fixed bug #597940
7635
7636 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7637
7638         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7639   cache sfr, optimize next,step, fix off by one sourceline,
7640   support ddd list function.
7641         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7642
7643 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * support/regression/HTMLgen.py: added compare_s2f()
7646         * support/regression/Makefile: redo 1.27
7647         * support/regression/generate-cases.py: redo 1.5
7648
7649 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7650
7651         * support/regression/tests/float.c: workaround 33 bit hex constant
7652         * support/regression/tests/simplefloat.c: fix division for host
7653
7654 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7655
7656         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7657         that tame's the PIC's over-aggressive optimizer.
7658
7659 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7660
7661          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7662          support for MSVC.
7663
7664 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7665
7666         Initial support for DS80C400. "Hello world" runs on TINIm400
7667         (with polled I/O).
7668
7669 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7670
7671          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7672          * Some notes on ddd usage added in debugger/README
7673          Martin Helmling adding more features and fixes for ddd GUI debugger.
7674          Code added for nexti, stepi, up, down, and other adjustments.
7675
7676 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7677
7678         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7679         * src/pic/peeph.def Added two rules to optimize carry manipulation
7680         * src/pic/* removed debug printfs
7681
7682 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7683
7684         * debugger/mcs51/cmd.c: added header newalloc.h
7685
7686 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7687
7688         * as/Makefile: new EXEEXT
7689         * as/z80/Makefile: remove trailing slash of BUILDIR
7690         * as/z80/clean.mk: new EXEEXT
7691         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7692         * support/cpp2/Makefile.in: new EXEEXT
7693         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7694
7695 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7696
7697         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7698         EXEEXT was introduced to fix all related problems with targets
7699         "clean", "install" and "uninstall"; a couple of further flaws
7700         especially with "clean" have been fixed too
7701         * as/mcs51/Makefile.in
7702         * as/mcs51/clean.mk
7703         * as/z80/Makefile
7704         * Makefile
7705         * clean.mk
7706         * debugger/mcs51/Makefile.in
7707         * debugger/mcs51/clean.mk
7708         * link/z80/Makefile
7709         * link/z80/Makefile.in
7710         * link/z80/clean.mk
7711         * link/Makefile
7712         * packihx/Makefile.in
7713         * packihx/clean.mk
7714         * sim/ucsim/Makefile
7715         * sim/ucsim/clean.mk
7716         * sim/ucsim/avr.src/Makefile.in
7717         * sim/ucsim/avr.src/clean.mk
7718         * sim/ucsim/s51.src/Makefile.in
7719         * sim/ucsim/s51.src/clean.mk
7720         * sim/ucsim/xa.src/Makefile.in
7721         * sim/ucsim/xa.src/clean.mk
7722         * sim/ucsim/z80.src/Makefile.in
7723         * sim/ucsim/z80.src/clean.mk
7724         * sim/ucsim/main_in.mk
7725         * sim/ucsim/packages_in.mk
7726         * sim/ucsim/gui.src/Makefile.in
7727         * sim/ucsim/gui.src/serio.src/Makefile.in
7728         * sim/ucsim/gui.src/serio.src/clean.mk
7729         * src/Makefile.in
7730         * src/clean.mk
7731         * support/cpp2/Makefile.in
7732         * support/cpp2/clean.mk
7733         * support/makebin/Makefile
7734         * support/makebin/clean.mk
7735         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7736         * doc/sdccman.lyx: --program-suffix no longer needed
7737
7738 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7739
7740          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7741          Martin Helmling added support for ddd GUI debugger.
7742          Code added to display assembly, set variables, and other commands
7743          to interface to ddd.
7744
7745 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7746
7747         * as/Makefile: fix target clean
7748         * as/clean.mk: fix target clean
7749         * as/z80/clean.mk: fix target clean
7750
7751 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7752
7753         * Makefile.common.in: added  AT EXEEXT AT
7754         * configure.in: removed all mingw32 stuff
7755         * configure: rebuilt from configure.in
7756         * doc/sdccman.lyx: updated section "installation"
7757         * support/scripts/sdcc_mingw32: adapted to configure
7758         * support/scripts/sdcc_cygwin_mingw32: added
7759
7760 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7761
7762         * src/pic Added object file support for the PIC port
7763         * src/pic Applied patch from Craig Franklin (this started the object file support)
7764         * src/regression Updated the PIC regression tests for object files
7765
7766 2003-04-20  Borut Razem <borut.razem AT siol.net>
7767
7768         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7769           lklex.c: In function `getfid':
7770           lklex.c:203: warning: array subscript has type `char'
7771         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7772           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7773         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7774           stack handling macros
7775
7776 2003-04-19  Borut Razem <borut.razem AT siol.net>
7777
7778         * "handling space characters in file path" task:
7779         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7780         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7781         * support/Util/MySystem.h: make it self-sufficient
7782         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7783           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7784           handling space characters in file path
7785         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7786           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7787         * support/Util/MySystem.c: handling space characters in executable's path
7788
7789 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         * as/z80/Makefile: fix permanent rebuild of z80
7792         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7793         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7794
7795 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7796
7797         * src/SDCCopt.c: add special case optimization to replace modulo by
7798           a power of two with a bitwise AND.
7799
7800 2003-04-18    <johan AT balder>
7801
7802         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7803
7804 2003-04-17    <johan AT balder>
7805
7806         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7807         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7808
7809 2003-04-13  Borut Razem <borut.razem AT siol.net>
7810
7811         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7812         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7813           fixed mingw problem in adl_NORMALIZE_PATH
7814
7815 2003-04-12  Borut Razem <borut.razem AT siol.net>
7816
7817         * fixed "#pragma SAVE/RESTORE can not be nested":
7818         * src/SDCC.lex: reworked pragma handling functions
7819         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7820         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7821
7822 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7823
7824         * src/SDCCutil.c (pathEquivalent): defined but not used
7825         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7826         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7827         * configure: rebuilt from configure.in
7828         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7829         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7830         * device/include/Makefile.in: replace sdcc_datadir
7831         * device/lib/Makefile.in: replace sdcc_datadir
7832         * Makefile.common.in: add LDFLAGS from configure
7833         * packihx/Makefile.in: use LDFLAGS
7834         * src/Makefile.in: use LDFLAGS
7835         * support/cpp2/Makefile.in: add LDFLAGS from configure
7836         * support/makebin/Makefile: use LDFLAGS
7837         * .version: bumped version number to 2.3.5
7838
7839 2003-04-12  Borut Razem <borut.razem AT siol.net>
7840
7841         * completed "different paths" task:
7842         * src/SDCCmacro.c: fixed bug in handling quotes
7843         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7844         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7845
7846 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7847
7848         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7849
7850 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7851
7852         * ds390/gen.c ds390/peeph.def: fix bug 706781
7853
7854 2003-04-11  Borut Razem <borut.razem AT siol.net>
7855
7856         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7857
7858 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7859
7860         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7861         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7862          set - this bit used to not be set...).
7863         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7864           bad code in PIC Port
7865         * src/regression/and2.c added to test bug 609268
7866         * src/regression/Makefile added and2.c to regression test
7867
7868
7869 2003-04-08    <johan AT CP255758-A>
7870
7871         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7872         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7873         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7874
7875 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7878         fix bug #487815
7879         * support/cpp2/Makefile.in: fix bug #487815
7880         * configure: rebuilt from configure.in
7881         * Makefile.common.in: docdir changed, new path suffixes
7882         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7883         * sdcc_vc_in.h: reflect changes from sdccconf.h
7884         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7885         * src/SDCCutil.h: remove BINDIR hack
7886         * doc/sdccman.lyx: update new path hierarchy
7887
7888 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7889
7890         * src/SDCCpeeph.c: added okToRemoveSLOC test
7891
7892 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7893
7894         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7895
7896 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7897
7898         * src/SDCCpeeph.c: added labelIsReturnOnly test
7899         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7900
7901 2003-04-05    <johan AT balder>
7902
7903         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7904         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7905         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7906         * src/SDCCast.c: fixed a warning
7907         * src/SDCCast.h: fixed a warning
7908         * src/SDCCicode.c (operandFromAst): fixed a warning
7909
7910 2003-04-04    <johan AT balder>
7911
7912         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7913         * src/SDCCast.c (decorateType): fixed bug #715076
7914         * src/SDCC.y: fixed bug #702907
7915
7916 2003-04-03    <johan AT balder>
7917
7918         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7919         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7920         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7921         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7922         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7923
7924 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7925
7926         * _decdptr.c: fix return values
7927         * _gptrget.c: fix return values
7928         * _gptrgetc.c: fix return values
7929         * _gptrput.c: fix return values
7930         * _mulint.c: fix return values
7931         * as/z80/Makefile: fix 'make -j' problem
7932
7933 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7934
7935         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7936         * configure.in: big cleanup, updated to autoconf 2.5x
7937         * configure: rebuilt from configure.in
7938         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7939         * sdcc_vc_in.h: reflect changes from sdccconf.h
7940         * doc/Makefile: fixed a flaw in "make install"
7941
7942 2003-04-02    <johan AT balder>
7943
7944         * src/ds390/gen.c (genCmp): no comments
7945         * src/mcs51/gen.c (genCmp): no comments
7946         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7947         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7948
7949 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7950
7951         * support/regression/generate-cases.py: place generated file in given sub directory
7952         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7953         * support/regression/Makefile: improvements for 'make -j';
7954         side effect: it's simpler and faster now
7955
7956 2003-03-31  Borut Razem <borut.razem AT siol.net>
7957
7958         * src/z80/main.c: link-{port} and as-{port} defined without path
7959         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7960
7961 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7962
7963         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7964
7965 2003-03-30  Borut Razem <borut.razem AT siol.net>
7966
7967         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7968           changed type of list parameter to set
7969         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7970         * src/port.h: changed type of do_assemble() parameter to set
7971         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7972           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7973           definition of "cppoutfilename" macro with NULL value in preProcess()
7974         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7975         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7976         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7977           replaced with set *binPathSet
7978         * shash_add() deallocates the item, if allready exsists, before adding the new one
7979         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7980
7981 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7982
7983         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7984           a nested for loop bug in the PIC port
7985         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7986           for loops
7987
7988 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7989
7990         * support/Util/dbuf.h: remove C++ stuff to make it portable
7991
7992 2003-03-28  Borut Razem <borut.razem AT siol.net>
7993
7994         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7995           literal strings in stringLiteral()
7996         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7997         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7998           to the project
7999
8000 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8001
8002         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8003
8004 2003-03-26    <johan AT balder>
8005
8006         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8007         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8008         * src/SDCCast.c (decorateType): fixed " -v < 3"
8009
8010 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8011
8012         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8013         Added Lenny Story's debug infrastructure changes:
8014         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8015         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8016         * src/cdbFile.c: added
8017         * src/SDCCdebug.c: added
8018         * src/SDCCdebug.h: added
8019         * src/SDCCast.c (createFunction)
8020         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8021         * src/SDCCmain.c (parseCmdLine, main)
8022         * src/SDCCmem.c (redoStackOffsets)
8023         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8024         * src/SDCCsymt.h
8025         * src/common.h
8026         * src/avr/gen.c (genAVRCode)
8027         * src/ds390/gen.c (gen390Code)
8028         * src/mcs51/gen.c (gen51Code)
8029         * src/pic/gen.c (genpic14Code)
8030         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8031         * src/xa51/gen.c (genXA51Code)
8032         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8033
8034 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8035
8036         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8037         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8038
8039 2003-03-22    <johan AT balder>
8040
8041         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8042
8043 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8044
8045         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8046         * doc/cdbfileformat.lyx: added, written by Lenny Story
8047         * doc/Makefile: added cdbfileformat.lyx
8048         * doc/clean.mk: added cdbfileformat.lyx
8049
8050 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8051
8052         * src/mcs51/peeph.def: fix bug #705773
8053
8054 2003-03-20    <johan AT balder>
8055
8056         An sfr/sbit can have an "at #" AND an initializer
8057         * src/SDCCsymt.c (checkSClass):
8058         * src/SDCCmem.c (allocGlobal):
8059         * src/SDCCmem.c (allocLocal):
8060         * src/SDCCast.c (createBlock):
8061
8062 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8063
8064         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8065
8066 2003-03-16    <johan AT balder>
8067
8068         Undid the hackup of const and volatile, the problem is much bigger
8069         * src/SDCC.y:1.65
8070         * src/SDCCast.c:1.171
8071         * src/SDCCglue.c:1.138
8072         * src/SDCCicode.c:1.146
8073         * src/SDCCsymt.c:1.150
8074         * src/SDCCval.c:1.65
8075
8076 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8077
8078         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8079         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8080
8081 2003-03-13    <johan AT balder>
8082
8083         Hackup const and volatile modifiers in type chains a bit:
8084         * src/SDCC.y:1.63
8085         * src/SDCCast.c:1.169
8086         * src/SDCCglue.c:1.136
8087         * src/SDCCicode.c:1.143
8088         * src/SDCCsymt.c1.146
8089         * src/SDCCsymt.h1.59
8090         * src/SDCCval.c:1.63
8091
8092 2003-03-12    <johan AT balder>
8093
8094         * src/SDCCBBlock.h: more LRH debugging junk
8095         * src/SDCCcflow.h: more LRH debugging junk
8096         * src/SDCCloop.c: more LRH debugging junk
8097         * src/SDCC.y (struct_declaration): fixed bug #697590
8098         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8099         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8100         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8101
8102 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8103         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8104         test function names must now match exactly).
8105         * src/SDCCcse.c: added special case in findCheaperOp to allow
8106         extending a short integer. Makes less awful code for bug 700121 test case.
8107
8108 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8109
8110         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8111         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8112
8113 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8114
8115         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8116         actually called (operandsNotEqual() was called for all
8117         operandsNotEqualX tests).
8118
8119 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8120
8121         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8122         with shorter literals. Fixes bug 700121.
8123
8124 2003-03-11    <johan AT balder>
8125
8126         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8127
8128 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8131         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8132
8133 2003-03-10  Borut Razem <borut.razem AT siol.net>
8134
8135         * src/SDCCmain.c: pipe preprocessor's output
8136         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8137         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8138         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8139         which closes all pipes in pipeSet set
8140         * src/SDCCset.c: free deleted item in function deleteSetItem()
8141         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8142         moved from z80 to src subproject
8143         * .version: increased version number to 2.3.4
8144
8145 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8146
8147         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8148         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8149         * support/regression/ports/xa51/spec.mk: fix typo
8150
8151 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8152
8153         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8154
8155 2003-03-09  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/SDCCmain.c: pipe preprocessor's output
8158         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8159         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8160         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8161         which closes all pipes in pipeSet set
8162         * src/SDCCset.c: free deleted item in function deleteSetItem()
8163         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8164         moved from z80 to src subproject
8165
8166 2003-03-09  Borut Razem <borut.razem AT siol.net>
8167
8168         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8169         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8170         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8171         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8172         * src/SDCCglobl.h: unification of WIN32 native definitions
8173
8174 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8175
8176         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8177
8178 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8179
8180         * src/configure.in:   check for endianess (even while cross-compiling)
8181         * src/configure:      check for endianess (even while cross-compiling)
8182         * src/configure_in.h: check for endianess (even while cross-compiling)
8183         * src/avr/gen.c:        remove old endianess stuff
8184         * src/mcs51/gen.c:      remove old endianess stuff
8185         * src/ds390/gen.c:      remove old endianess stuff
8186         * src/pic/gen.c:        remove old endianess stuff
8187         * src/pic/genarith.c:   remove old endianess stuff
8188         * src/pic/glue.c:       fix endianess check
8189         * src/pic16/gen.c:      remove old endianess stuff
8190         * src/pic16/genarith.c: remove old endianess stuff
8191         * src/pic16/glue.c:     fix endianess check
8192         * src/xa51/gen.c:       remove old endianess stuff
8193         * src/z80/gen.c:        fix endianess check
8194         * src/SDCCglue.c:       fix endianess check
8195         * src/ds390/peeph.def: fix bug 700036
8196
8197 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8198
8199         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8200         * src/configure: find appropriate data-types on host for SDCC's int and long
8201         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8202         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8203         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8204
8205 2003-03-07    <johan AT balder>
8206
8207         Just a big NOOP:
8208                 some minor cleanups before the big shot
8209                 OP_DEFS and OP_USES now use Kevin's protection
8210                 new option --nolabelopt
8211
8212         * src/SDCCBBlock.c:
8213         * src/SDCCast.c,:
8214         * src/SDCCcflow.c:
8215         * src/SDCCcse.c:
8216         * src/SDCCicode.c:
8217         * src/SDCCicode.h:
8218         * src/SDCClabel.c:
8219         * src/SDCCloop.c:
8220         * src/SDCCmain.c:
8221         * src/ds390/ralloc.c:
8222         * src/mcs51/ralloc.c:
8223         * src/pic/ralloc.c:
8224         * src/xa51/ralloc.c:
8225         * src/z80/ralloc.c:
8226
8227 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8228
8229         * src/pic/pcode.c (get_op): fix 64 bit warnings
8230         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8231         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8232         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8233         * support/regression/tests/malloc.c: fix 64 bit warnings
8234
8235 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8236
8237         * src/mcs51/gen.c (genMinus): fixed bug 696436
8238
8239 2003-03-02  Borut Razem <borut.razem AT siol.net>
8240
8241         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8242
8243 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * configure.in: test for mkstemp
8246         * sdccconf_in.h: add HAVE_MKSTEMP
8247
8248 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8249
8250         * device/include/ctype.h: removed warning while using --stack-auto
8251         * device/include/malloc.h: removed warning while using --stack-auto
8252         * device/include/string.h: removed warning while using --stack-auto
8253
8254 2003-02-23  Borut Razem <borut.razem AT siol.net>
8255
8256         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8257         because NDEBUG is defined (see man assert)
8258         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8259
8260 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8261
8262         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8263         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8264
8265 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8266
8267         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8268         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8269
8270 2003-02-18    <johan AT balder>
8271
8272         * as/mcs51/asmain.c (asmbl): module can start with a digit
8273         * as/z80/asmain.c (asmbl): module can start with a digit
8274
8275 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8276
8277         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8278         * src/asm.c: fix pipe() for Mingw32
8279
8280 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8281
8282         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8283         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8284         make -V work again; --c1mode reads now from stdin
8285         * doc/sdccman.lyx: added --c1mode
8286         * support/Util/SDCCerr.c: new messages for c1 mode
8287         * support/Util/SDCCerr.h: new messages for c1 mode
8288         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8289
8290 2003-02-15    <johan AT balder>
8291
8292         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8293
8294 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8295
8296         * doc/sdccman.lyx: Environment variables, -o and other minor things
8297
8298 2003-02-14    <johan AT balder>
8299
8300         * src/xa51/main.c: before anyone really tries to use it :)
8301
8302         * Install doc's in share/sdcc/doc
8303         * removed some obsolete files
8304         * Do a proper make distclean and uninstall
8305         M Makefile.common.in
8306         R sdccbuild.sh
8307         M as/Makefile
8308         M device/include/Makefile.in
8309         M device/lib/Makefile.in
8310         M doc/sdccman.lyx
8311         M link/Makefile
8312         M sim/ucsim/doc/Makefile.in
8313         M src/clean.mk
8314         R src/avr/peeph.rul
8315         R src/xa51/peeph.rul
8316         M support/cpp2/Makefile.in
8317         M support/makebin/Makefile
8318
8319
8320 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8321
8322         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8323
8324 2003-02-10  Borut Razem <borut.razem AT siol.net>
8325
8326         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8327         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8328         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8329         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8330         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8331         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8332         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8333         src/z80/Makefile.bcc: Borland Makefile cleanup
8334         * as/z80/Makefile.bcc: Added Borland Makefile
8335         * support/cpp2/borland.h: Removed
8336
8337 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8338
8339         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8340         * src/SDCC.lex: new pragma NOIV
8341         * src/SDCCglobl.h: new pragma NOIV
8342         * src/SDCCmem.c: new pragma NOIV
8343
8344 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8347
8348 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8349
8350         * src/SDCCmain.c: signal handling is switched off by --debug
8351         * doc/Makefile: small fix for install; use clean.mk again
8352         * doc/clean.mk: clean *.pdf and *.html too
8353
8354 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8355
8356         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8357         * device/lib/printfl.c: fix a ds390 bug by making it portable
8358         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8359         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8360         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8361         * debugger/mcs51/cmd.c: converted multi-line string literals
8362         * sim/ucsim/globals.cc: converted multi-line string literals
8363         * src/SDCCmain.c: introduced signal handler to remove temp files
8364         * doc/Makefile: small tweaks, implement clean
8365         * doc: removed generated files
8366
8367 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8368
8369         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8370         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8371         Address Record is not correctly generated for DS390."
8372
8373 2003-02-02  Borut Razem <borut.razem AT siol.net>
8374
8375         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8376         * as/mcs51/asm.h: fixed compilation with Borland C
8377         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8378         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8379         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8380         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8381         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8382         src/z80/Makefile.bcc: delete $(LIB) only if exist
8383         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8384
8385 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * device/include/malloc.h: introduced NULL
8388         * device/include/string.h: introduced NULL
8389         * device/include/stdlib.h: introduced NULL
8390         * device/lib/_memcpy.c: removed NULL
8391         * device/lib/_strcat.c: removed NULL
8392         * device/lib/_strchr.c: removed NULL
8393         * device/lib/_strcmp.c: removed NULL
8394         * device/lib/_strcpy.c: removed NULL
8395         * device/lib/_strcspn.c: removed NULL
8396         * device/lib/_strlen.c: removed NULL
8397         * device/lib/_strncat.c: removed NULL
8398         * device/lib/_strncmp.c: removed NULL
8399         * device/lib/_strncpy.c: removed NULL
8400         * device/lib/_strpbrk.c: removed NULL
8401         * device/lib/_strrchr.c: removed NULL
8402         * device/lib/_strspn.c: removed NULL
8403         * device/lib/_strstr.c: removed NULL
8404         * device/lib/_strtok.c: removed NULL
8405         * device/lib/malloc.c: removed NULL, include own header
8406
8407 2003-02-02    <johan AT balder>
8408
8409         * 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
8410         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8411         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8412         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8413         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8414         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8415
8416 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8417
8418         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8419         area 'DATA'"
8420
8421 2003-02-01    <johan AT balder>
8422
8423         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8424
8425 2003-01-31    <johan AT CP255758-A>
8426
8427         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8428
8429 2003-01-30    <johan AT balder>
8430
8431         * src/SDCCBBlock.c: automatic bug detection
8432         * src/SDCCicode.c: automatic bug detection
8433
8434 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8435
8436         * src/SDCCglobl.h:   now --xram-size 0 works
8437         * src/SDCCmain.c:    now --xram-size 0 works
8438
8439 2003-01-29    <johan AT balder>
8440
8441         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8442
8443 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8444
8445         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8446         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8447         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8448         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8449         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8450         * src/SDCCmain.c:    Added options --xram-size and --code-size
8451
8452 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8453
8454         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8455         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8456
8457 2003-01-27    <johan AT balder>
8458
8459         * src/SDCC.y: fixed bug #613764
8460
8461 2003-01-26    <johan AT balder>
8462
8463         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8464         * src/SDCCsymt.h: fixed bug #673374
8465         * src/SDCCglue.c: fixed bug #661910
8466         * src/SDCCast.c: fixed bug #458099 and 673374
8467
8468 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8471         * as/mcs51/strcmpi.h: added
8472         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8473         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8474         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8475         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8476         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8477         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8478         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8479         * as/mcs51/Makefile.aslink: new module strcmpi
8480         * as/mcs51/Makefile.asx8051: new module strcmpi
8481         * as/mcs51/Makefil.bcc: new module strcmpi
8482         * as/mcs51/Makefile.in: new module strcmpi
8483         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8484
8485 2003-01-26    <johan AT balder>
8486
8487         * src/SDCCglue.c: reverted back to 1.124
8488         * src/SDCCast.c: reverted back to 1.156
8489         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8490
8491 2003-01-25    <johan AT balder>
8492
8493         * src/SDCCglue.c: A better fix for bug #661910
8494         * src/SDCCast.c: A better fix for bug #661910
8495         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8496
8497 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8498
8499         * src/Makefile.in: remove spawn.o
8500         * src/SDCCmain.c: remove spawn.h
8501         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8502         * src/spawn.c: removed
8503         * src/spawn.h: removed
8504         * support/regression/ports/ds390/spec.mk: link with -r
8505
8506 2003-01-24    <johan AT CP255758-A>
8507
8508         * src/ds390/gen.c (aopOp): fixed bug #667458
8509         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8510         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8511         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8512
8513 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8514
8515         * src/mcs51/peeph.def: better assembler identation by Frieder
8516         * src/mcs51/gen.c: better assembler identation by Frieder
8517
8518 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8519
8520         * as/z80/string.h: removed for gcc 3.2
8521         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8522         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8523
8524 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8525
8526         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8527         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8528         * support/regression/Makefile: separate temp files for ports
8529         * support/regression/generate-cases.py: separate temp files for ports
8530         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8531         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8532
8533 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8534
8535         * moved tinitalk to device/examples/ds390
8536
8537 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8538
8539         * as/mcs51/lkmem.c: rflag is for DS390
8540         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8541         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8542                          (linkEdit): move mem- and map-files the same way as ihx-files
8543         * src/z80/main.c (_setDefaultOptions): removed --generic
8544         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8545         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8546         * src/pic/glue.c (picglue): --c1mode works again
8547         * src/pic16/glue.c (pic16glue): --c1mode works again
8548         * src/asm.c (printCLine): fix #660034
8549
8550 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8551
8552         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8553         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8554         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8555         * as/mcs51/lkmem (summary): better fix for sp problem
8556         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8557         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8558         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8559                                               remove --stack-after-data
8560
8561 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8562
8563         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8564         * src/SDCCutil.c (join): ugly bug: missing '\0'
8565         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8566
8567 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8568
8569         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8570         * src/port.h: typo
8571         * src/pic/main.c (_asmCmd): gpasm supports -o
8572         * src/z80/main.c: more general macros
8573         * device/lib/Makefile.in: remove intermediate files
8574
8575 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * .version: Bumped version number to 2.3.3
8578         * src/SDCCBBlock.c: new option -o
8579         * src/SDCCglobl.h: new option -o
8580         * src/SDCCglue.c: new option -o
8581         * src/SDCCmain.c: new option -o
8582         * src/asm.c: new option -o
8583         * src/ds390/main.c: new option -o
8584         * src/pic/glue.c: new option -o
8585         * src/pic/pcode.c: new option -o
8586         * src/pic/ralloc.c: new option -o
8587         * src/pic16/glue.c: new option -o
8588         * src/pic16/pcode.c: new option -o
8589         * src/pic16/ralloc.c: new option -o
8590         * src/z80/main.c: new option -o
8591         * device/lib/Makefile.in: use -o
8592         * support/regression/ports/ds390/spec.mk: use -o
8593         * support/regression/ports/gbz80/spec.mk: use -o
8594         * support/regression/ports/mcs51/spec.mk: use -o
8595         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8596         * support/regression/ports/z80/spec.mk: use -o
8597         * support/regression/ports/ucz80/spec.mk: use -o
8598         * support/regression/ports/xa51/spec.mk: use -o
8599         * support/regression/fwk/lib/timeout.c: fix usage string
8600
8601 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8602         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8603
8604 2003-01-07    <johan AT balder>
8605
8606         * src/SDCCast.c (decorateType): fixed bug #600035
8607
8608 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8609         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8610         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8611         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8612         * src/pic/pcode.c: outcommented unused variable to remove warnings
8613         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8614
8615 2003-01-06    <karl AT turbobit.com>
8616         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8617    regression tests.
8618
8619 2003-01-06    <johan AT balder>
8620
8621         * src/SDCCicode.c: fixed array add
8622
8623 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8624         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8625         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8626
8627 2003-01-04    <johan AT balder>
8628
8629         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8630
8631 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8632         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8633
8634 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8635         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8636         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8637
8638 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8639         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8640
8641 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8642         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8643
8644 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8645         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8646
8647 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8648
8649     * in \sdcc\as\mcs51\ changed these files in order to create an
8650     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8651     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8652     following files to include the previous two files: aslink.dsp,
8653     Makefile.aslink, Makefile.bcc, and Makefile.in.
8654
8655     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8656     .adb instead of .cdb
8657
8658 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8659
8660         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8661         value from option --iram-size.
8662
8663 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8664
8665         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8666         dram[] array.
8667
8668 2002-09-18    <wiml AT hhhh.org>
8669
8670         * SDCClrange.h: exposed setFromRange() and setToRange()
8671         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8672           packRegsForAccUse() (bug 542397)
8673         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8674           multiple times and emitting the fetch operations more than once
8675           added aopGetUsesAcc() function to allow binary operators to
8676           fetch their operands in the correct order; made genMinus() emit
8677           compact code for X = LITERAL - Y
8678
8679 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8680         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8681         sprintf() in line 1267.
8682
8683 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8684         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8685         like ports.
8686
8687 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8688         Changes to aslink (All the changes are marked with 'JCF'):
8689
8690         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8691         summary().
8692
8693         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8694         area BSEG.  Also moves, if possible, the DATA area down into the internal
8695         ram so more space is available.
8696
8697         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8698         sflag.
8699
8700         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8701         not bytes.  Function summary() which creates a memory usage summary
8702         file with extension .mem.  Reports of overlaping stack and small stack
8703         size.  If the space for the stack is less than 16 bytes aslink trows a
8704         warning.
8705
8706         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8707         the 8051.  Option 'y' for memory summary output file.
8708
8709         Changes to sdcc (All the changes are marked with 'JCF'):
8710
8711         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8712
8713         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8714         overlaying area for it (uses RegBankUsed[4]).
8715
8716         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8717         bank zero as used by default.  By default aslink locates the stack
8718         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8719         the creation of the .mem file.  Delegates the allocation of data area
8720         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8721         the begining of the stack area to aslink.
8722
8723         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8724         glue() in SDCCglue.c creates an area for it.
8725
8726 2002-09-03  Borut Razem <borut.razem AT siol.net>
8727         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8728         sdcc/src/pic/glue.c:
8729         introduced atexit() handler for teporay files removal in case of
8730         errors, assertions, ...
8731
8732 2002-08-29  Borut Razem <borut.razem AT siol.net>
8733         * sdcc/support/cpp2/auto-host_vc_in.h:
8734         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8735         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8736         Maybe there is a similar problem with BORLANDC? It should be checked!
8737
8738         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8739         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8740         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8741         was not executed, and the compiler (cl) launched a warning:
8742         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8743
8744 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8745         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8746
8747 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8748         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8749
8750         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8751           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8752           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8753           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8754           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8755           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8756           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8757         - added Release configuration in VS projects
8758         - review of compiler an linker options
8759         - VC .exe files are generated in bin_vc directory, not to interfere
8760           with binaries generated from other projects (cygwin, mingw, bcc ...)
8761
8762         * sdcc/src/yacc.dsp: added
8763
8764         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8765         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8766         and insert the version number definitions from .version
8767
8768         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8769
8770         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8771         added - genarate auto-host.h using auto-host_vc_in.h as template
8772
8773         * sdcc/sdcc_vc.h,
8774         removed from CVS, generated automatically
8775
8776 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8777         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8778
8779 2002-08-11  Borut Razem <borut.razem AT siol.net>
8780         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8781
8782 2002-08-10  Borut Razem <borut.razem AT siol.net>
8783         * src/SDCCmain.c (main):
8784         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8785         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8786         The consequence was that some temporary files were not removed.
8787
8788         * src/SDCCglue.c:
8789         unification of code in functions tempfilename() and tempfile():
8790         function tempnam() is defined in Visual Studio 6.0 and .NET
8791
8792         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8793
8794         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8795           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8796         - removed compiler command line option /WX: Treats all warnings as errors
8797         - update a list of source files, included into the project
8798
8799         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8800           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8801         changed project type to Generic Project so that can be correcly converted to VS.NET project
8802
8803         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8804
8805         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8806
8807         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8808
8809         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8810         added return 0 statements after assert() to make compiler happy
8811
8812         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8813         added newline in the def file to keep MSC compiler satisfied
8814
8815         * sdcc/src/z80/gen.c:
8816         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8817           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8818         - solved MSC error in function aopDump()
8819
8820         * sdcc_vc.h: define PREFIX as "\\sdcc"
8821
8822 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8823         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8824
8825 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8826         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8827         - Rewrote the register banking algorithm.
8828         - Added pCode live-range analysis to registers (for now, only non-used and
8829         singly-used registers optimized away)
8830
8831         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8832
8833         * 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.
8834
8835 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8836         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8837
8838 2002-04-22  Michael Hope  <michaelh AT vroom>
8839
8840         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8841
8842         * configure.in (DD_COPT): Added include support required for gbdk.
8843
8844         * .version: Bumped version number just to increase it.
8845
8846         * src/SDCCmain.c: Added -nostdinc to the default options.
8847
8848 2002-04-15  Michael Hope  <michaelh AT vroom>
8849
8850         * device/lib/z80/printf.c (sprintf): Added.
8851
8852         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8853
8854         * src/z80/peeph.def: Added transpose redundent load rule.
8855
8856         * src/z80/main.c: Added force callee saves for jaune.
8857
8858         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8859
8860         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8861
8862 2002-03-28  Johan Knol  <johan AT balder>
8863
8864         * src/SDCCval.c: fixed bug #532436
8865
8866 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8867         * /src/port.h:
8868         Added "char *Processor" field to the port structure.
8869
8870         * /src/SDCCmain.c:
8871         Added -p option. Allows port dependent processor to be specified.
8872
8873         * all ports:
8874         Initialized the new field char *Processor field to NULL in all ports
8875
8876         * /src/pic/*:
8877         Compiler generated registers for interrupt context saving
8878         were not getting allocated.
8879
8880 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8881
8882         * /src/SDCCast.c:
8883         Fixed left shift. Will promote the left side of a left shift
8884         if a) left shifting more than size of operand or b) when assigned
8885         to something size > size of left side
8886
8887 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8888         * src/pic/*
8889         tons of changes. Register allocation has been
8890         rewritten. Added customization for the various PICs. Flow
8891         analysis is restructured. ...
8892
8893         * src/pic/device.h:
8894         Added
8895
8896         * src/pic/device.c:
8897         Added. device.c is a PIC port hack to accomodate variations
8898         in PIC devices.
8899
8900 2002-03-13  Michael Hope  <michaelh AT vroom>
8901
8902         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8903
8904 2002-03-04  johanknol  <johanknol AT manik>
8905
8906         * /src/SDCCval.c: fixed
8907
8908         const unsigned char arr[][2] = { { 0, 1 } };
8909         t18.c:1: error: Initializer element is not constant
8910
8911 2002-03-04  bela  <bela AT manik>
8912
8913         * /device/include/mcs51reg.h:
8914         ds89c420 register definition update
8915
8916 2002-03-03    <johan AT FRIJA>
8917
8918         * support/Util/SDCCerr.c: did something, but don't no why anymore
8919
8920         * support/regression/tests/bug-524691.c: made it a little less shy
8921
8922         * src/SDCCast.c (decorateType): fixed bug #524697
8923
8924         * src/SDCCast.c: made some lineno improvements
8925
8926         * src/SDCCval.c (getNelements): changed warning to error
8927
8928         * src/SDCCglue.c (printIvalArray): changed warning to error
8929
8930         * src/SDCCicode.c: fixed a warning for mingw
8931
8932         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8933
8934         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8935
8936 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8937
8938         * src/ds390/peeph.def:
8939         Added some more peephole rules
8940
8941         * src/ds390/gen.c: Various fixes & enhancements
8942
8943         * src/SDCClrange.c, src/SDCClrange.h:
8944         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8945
8946         * src/ds390/ralloc.c:
8947         various fixes & enhancements (ds390) specific
8948
8949         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8950         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8951         from rallocs.
8952
8953         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8954
8955 2002-03-02    <johan AT FRIJA>
8956
8957         * src/SDCCast.c (decorateType): fixed bug #524708
8958
8959         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8960
8961         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8962
8963 2002-03-01  Michael Hope  <michaelh AT vroom>
8964
8965         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8966
8967         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8968
8969 2002-03-01    <johan AT FRIJA>
8970
8971         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8972
8973         * src/SDCCast.c (decorateType): fixed bug #524209
8974
8975         * src/SDCCval.c (valNot): fixed bug #524195
8976
8977 2002-02-26    <johan AT balder>
8978
8979         * src/xa51/gen.c: fixed a warning
8980
8981         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8982
8983         * src/SDCCast.c (decorateType): fixed bug #522534
8984
8985 2002-02-23    <johan AT balder>
8986
8987         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8988
8989 2002-02-22    <johan AT balder>
8990
8991         * src/SDCCast.c: fixed bug #514865
8992
8993         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8994
8995 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8996
8997         * sdcc/src/SDCCloop.c:
8998         Previous fix was not good. basic blocks that have "break" or "return" are
8999         not really partof a loop , but live ranges used in these blocks should
9000         be live thru the entire loop, so set partOfLoop but don't add them to
9001         loop region
9002
9003 2002-02-21    <johan AT FRIJA>
9004
9005         * src/SDCCcse.c: fixed bug #514308
9006
9007 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9008
9009         * src/SDCCloop.c:
9010         Fixed BUG #519583. If a conditional block ended in a return/break
9011         statement inside a loop, it was not being considered part of the loop.
9012
9013         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9014
9015 2002-02-10  Karl Bongers <karl AT turbobit.com>
9016
9017         * debugger/*:
9018         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9019         with lots of comments and notes.
9020
9021         * device/examples/test2.c:
9022         Fix bug, "red" variable not being initialized(compiler complained).
9023
9024         * device/examples/Makefile, examples/test3.c:
9025         Add Makefile in device/examples folder, compiles test3.c
9026         for use as a multiple module SDCDB test case.
9027
9028         * sim/ucsim/cmd.src/cmdset.cc:
9029         Took out debug printfs in ucsim "next" command.
9030
9031         * sim/ucsim/xa.src:
9032         Karl and Johan start ucsim XA support.  Most dissassembly working,
9033         about 75% emulation done(plenty of work remaining).
9034
9035         * sim/ucsim/z80.src:
9036         Add Z80 support to ucsim, add test-ucz80 regression test,
9037         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9038         Notice z80 compiler fails on examples/test3.c/crc code.
9039
9040 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9041
9042         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9043         Added support for --parms-in-bank1
9044
9045         * src/ds390/peeph.def:
9046         added a few more peephole optimzations
9047
9048         * src/ds390/main.c:
9049         1) added __builtin_inp & __builtin_outp used to read in data of given length
9050            from a memory mapped port
9051         2) added __builtin_memcmp
9052         3) added __builtin_swapw swap bytes of a short
9053
9054         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9055         1) handle multiple send & receives from register bank1
9056         2) ralloc can now allocate DPTR1 to some liveRanges
9057
9058         * src/SDCCsymt.c, src/SDCCsymt.h:
9059         changes to handle multiple sends & receives
9060
9061         * src/SDCCptropt.h:
9062         added some pointer arithmetic optimization
9063
9064         * src/SDCCptropt.c:
9065         added some pointer arithmetic optimizations but not stable yet so not
9066         called from anywhere (will get this working shortly)
9067
9068         * src/SDCCopt.c: fixed for multiple sends & receives
9069
9070         * src/SDCCmain.c:
9071         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9072         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9073            set preprocessor defines (depending on options)
9074
9075         * src/SDCCicode.c, src/SDCCicode.h:
9076         changes made to handle multiple sends & receives
9077
9078         * src/SDCCglobl.h:
9079         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9080
9081         * src/SDCCcse.c, src/SDCCcse.h:
9082         added function findbackward def (to be used in upcoming optimization)
9083
9084         * src/SDCCcflow.c, src/SDCCcflow.h:
9085         added function returnAtEnd - to determine if a basic block terminates with
9086         a RETURN iCode
9087
9088         * src/SDCCast.c, src/SDCCast.h:
9089         added option parms-in-bank1
9090
9091         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9092         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9093         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9094         adjusted for --parms-in-bank1 option
9095
9096         * device/include/string.h:
9097         donot redefine "reentrant" keyword
9098
9099         * device/include/ds80c390.h: Added some more SFRs
9100
9101 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9102
9103         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9104
9105 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9106
9107         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9108
9109 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9110
9111         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9112
9113 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9114
9115         * Added --xram-movc option
9116
9117 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9118
9119         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9120
9121 2002-01-11  Johan Knol
9122
9123         * Added math lib of Jesus Calvino-Fraga
9124
9125 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9126
9127         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9128         * support/regression/Makefile: new target test-mcs51-stack-auto
9129         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9130
9131 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9132
9133         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9134
9135 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9136
9137         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9138
9139 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9140
9141         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9142
9143         * src/SDCCglue.h: add definition for printIvalChar()
9144
9145 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9146
9147         * src/SDCCast.c: fix #498138 by Johan
9148
9149         * src/SDCCglue.c: fix #498138 by Johan
9150
9151 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9152
9153         * support/regression/Makefile: fix clean
9154
9155         * support/regression/ports/ds390/support.c: fix transmission of last character
9156
9157 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9158
9159         * /sdcc/src/ds390/gen.c:
9160         a) improved computing address of stack variable
9161         b) took out some #if 0 code
9162         c) improved parmBytes adjustment
9163         d) improved genPlusIncr & genMinusIncr
9164         e) genCmp could generate bad code (when left assigned to DPTR)
9165         f) Fixed bug in hasInc
9166
9167         * /sdcc/src/ds390/ralloc.c:
9168         a) packRegsForSupport could mess up live information (Fixed)
9169         b) packRegsDPTRuse could be incorrect for left & right shift
9170
9171         * /sdcc/src/mcs51/ralloc.c:
9172         packRegsForSupport could mess up the live information (Fixed)
9173
9174         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9175
9176         * /sdcc/src/SDCCast.c:
9177         can reverse a loop even if function call is present as long
9178         as the loop control variable is local & is not passed as parameter
9179
9180 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9181
9182         * /sdcc/ChangeLog: *** empty log message ***
9183
9184         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9185         More builtin function additions for TININative
9186
9187         * /sdcc/src/ds390/ralloc.c:
9188         Had broken the regression testsuite
9189
9190         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9191
9192         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9193         Added funcattr hasStackParms will be set for reentrant functions when there
9194         are paramteres on the stack, this helps in minimizing frame pointer generation
9195         typeFromStr can handle function pointers now
9196
9197         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9198         *** empty log message ***
9199
9200 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9201
9202         * /src/ds390/gen.c, /src/ds390/main.c:
9203         More builtin function additions for TININative
9204
9205         * /src/ds390/ralloc.c:
9206         Had broken the regression testsuite
9207
9208         * /src/SDCCast.c: Fixed a bug in dumptree
9209
9210         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9211         Added funcattr hasStackParms will be set for reentrant functions when there
9212         are paramteres on the stack, this helps in minimizing frame pointer generation
9213         typeFromStr can handle function pointers now
9214
9215         * /doc/builtins.txt, /doc/TININative.txt:
9216         *** empty log message ***
9217
9218
9219 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9220
9221         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9222         ALPHA version for -mTININative
9223
9224         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9225         updated to reflect changes in the port structure
9226
9227         * /src/port.h:
9228         added function do_assemble (similar to do_link) if non-null this function
9229         will be called to do assembly (-mTININative) requires a multi command
9230         assembly
9231         added function genAssemblerEnd will be called to generate assembler Epilogue
9232
9233         * /src/SDCCsymt.c:
9234         added _JavaNative to debug info printing
9235
9236         * /src/SDCCmain.c: added option --tini-libid
9237         added port->do_assemble function (-mTININative) has a multi command assemble
9238
9239         * /src/SDCCglue.c: Disabled "constExpr" check
9240         added port->genAssemblerEnd function
9241
9242         * /src/SDCCglobl.h: Added option --tini-libid value
9243
9244         * /src/SDCCast.h:
9245         tookout optimizeCompare from the header (has no external references)
9246
9247         * /src/SDCCast.c: made one more function "static"
9248
9249 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9250
9251         * src/z80/mappings.i: Added z80asm support.
9252
9253         * src/z80/main.c: Added z80asm support on --asm=z80asm
9254
9255         * src/z80/gen.c: Fixed asm portability issues.
9256
9257         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9258
9259         * src/SDCCglue.c (printExterns): Added global/extern split.
9260
9261 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9262
9263         * support/regression/Makefile: added test for mcs51 model large
9264
9265         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9266
9267         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9268
9269 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9270
9271         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9272
9273 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9274
9275         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9276
9277         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9278
9279 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9280
9281         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9282
9283         * support/regression/tests/simplefloat.c: Port to mcs51.
9284
9285 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9286         * support/regression/tests/bug-485362.c: Added.
9287
9288         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9289
9290         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9291
9292         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9293
9294         * src/z80/gen.c (aopDump): Added a dump function.
9295
9296 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9297         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9298
9299         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9300
9301         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9302
9303         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9304
9305         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9306
9307         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9308
9309         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9310
9311         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9312
9313         * support/regression/ports/ds390/support.c: Use tinibios.
9314
9315         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9316
9317 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9318
9319         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9320         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9321
9322         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9323
9324         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9325
9326 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9327
9328         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9329
9330         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9331         (packRegsForIYUse): Created and optimised.
9332
9333 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9334
9335         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9336 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9337
9338         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9339
9340         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9341
9342         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9343
9344 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9345
9346         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9347
9348         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9349
9350 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9351
9352         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9353
9354         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9355
9356         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9357
9358 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9359
9360         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9361         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9362         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9363
9364         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9365
9366         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9367         (genNotFloat): Added.
9368         (genUminusFloat): Added.
9369
9370         * device/lib/z80/Makefile: Added floating pt stubs.
9371
9372         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9373
9374         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9375
9376         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9377
9378 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9379
9380         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9381
9382         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9383
9384         * sdcc/support/regression/Makefile: Add port ds390.
9385
9386         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9387
9388         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9389
9390         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9391
9392         * sdcc/support/regression/ports/ds390/support.c: Added.
9393
9394         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9395
9396         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9397
9398         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9399
9400 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9401
9402         * device/include/malloc.h: Added z80 and gbz80 support.
9403
9404         * device/lib/gbz80/heap.s: Added.
9405
9406         * device/lib/z80/heap.s: Added.
9407
9408         * device/lib/malloc.c: Added z80 and gbz80 support.
9409
9410         * support/regression/tests/malloc.c (testMalloc): Added.
9411
9412         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9413
9414         * support/regression/tests/bug-478094.c: Added.
9415
9416         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9417
9418 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9419
9420         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9421
9422         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9423
9424         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9425
9426         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9427
9428         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9429
9430 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9431
9432         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9433
9434 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9435
9436         * support/regression/tests/bug-477927.c: Added.
9437
9438         * src/z80/peeph.def: Added minor rules.
9439
9440         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9441
9442         * src/z80/peeph.def: Added jump optimisation modification.
9443
9444 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9445
9446         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9447
9448 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9449
9450         * support/regression/tests/funptrs.c: Added.
9451
9452 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9453
9454         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9455
9456 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9457
9458         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9459
9460         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9461
9462         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9463         (movLeft2ResultLong): Created.
9464
9465         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9466         (joinPushes): Added.  Joins two char pushes into a word push.
9467
9468 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9469
9470         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9471
9472         * support/makebin/Makefile (install): Added creation of dest dir.
9473
9474 2001-10-24 Karl Bongers <karl AT turbobit.com>
9475
9476         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9477
9478 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9479
9480         * src/z80/ralloc.c: Turned off faulty pack for one use.
9481
9482         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9483
9484         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9485
9486 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9487
9488         * support/regression/Makefile: Improved clean
9489
9490         * support/regression/ports/gbz80/spec.mk: Added clean
9491
9492         * support/regression/ports/host/spec.mk: Added clean
9493
9494         * support/regression/ports/z80/spec.mk: Added clean
9495
9496         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9497
9498         * support/regression/ports/mcs51/timeout.c: little improvements
9499
9500 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9501
9502         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9503
9504         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9505
9506         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9507
9508 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9509
9510         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9511
9512         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9513
9514 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9515         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9516
9517         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9518
9519         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9520
9521         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9522
9523         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9524
9525         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9526
9527         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9528
9529         * support/regression/tests/longor.c: Added.
9530
9531 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9532
9533         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9534
9535         * as/mcs51/aslink.h: define PATH_MAX
9536
9537         * as/mcs51/asm.h: define PATH_MAX
9538
9539         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9540
9541         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9542
9543         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9544
9545         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9546
9547         * src/SDCCglobl.h: define PATH_MAX
9548
9549         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9550
9551         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9552
9553 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9554
9555         * src/z80/gen.c (gencjneshort): Fixed
9556
9557         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9558
9559 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9560
9561         * support/regression/tests/bug-469671.c: Added.
9562
9563         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9564
9565 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9566
9567         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9568
9569         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9570
9571 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9572
9573         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9574
9575         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9576
9577         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9578
9579         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9580
9581         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9582
9583         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9584
9585         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9586
9587 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9588
9589         * 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.
9590
9591         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9592
9593         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9594
9595 2001-10-07    <johan AT FRIJA>
9596
9597         * device/lib/gets.c (gets): fixed the return value.
9598
9599 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9600         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9601
9602         * 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.
9603
9604         * 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.
9605
9606         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9607
9608         * src/pic/gen.c: Removed Safe_strdup.
9609
9610         * configure.in: Added option to enable libgc support.
9611
9612         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9613         (bitVectUnion): Optimised.
9614         (bitVectIntersect): Optimised.
9615         (bitVectBitsInCommon): Optimised.
9616         (bitVectCplAnd): Optimised.
9617
9618         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9619
9620 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9621
9622         * src/SDCCmain.c: distinguish between assembler debug and plain options
9623
9624         * src/avr/main.c:   remove standard assembler options
9625
9626         * src/ds390/main.c: remove standard assembler options
9627
9628         * src/mcs51/main.c: remove standard assembler options
9629
9630         * src/port.h: removed "PENDING" comment
9631
9632 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9633
9634         * src/device/lib/_mulint.c  : new, with assember functions
9635
9636         * src/device/lib/_mullong.c : new, with assember functions
9637
9638         * src/device/lib/_divuint.c : with assember functions
9639
9640         * src/device/lib/_divsint.c : with assember functions
9641
9642         * src/device/lib/_divulong.c: with assember functions
9643
9644         * src/device/lib/_divslong.c: with assember functions
9645
9646         * src/device/lib/_moduint.c : with assember functions
9647
9648         * src/device/lib/_modsint.c : with assember functions
9649
9650         * src/device/lib/_modulong.c: with assember functions
9651
9652         * src/device/lib/_modslong.c: with assember functions
9653
9654         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9655
9656         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9657
9658         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9659                                       replaced _mululong.c and _mulslong.c by _mullong.c
9660
9661 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9662
9663         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9664
9665 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9666
9667         * src/SDCCglue.c: test, if win32api is available for MINGW
9668
9669 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9670
9671         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9672         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9673         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9674         * support/regression/ports/host/spec.mk: removed GENERIC
9675         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9676         * support/regression/ports/z80/spec.mk: removed GENERIC
9677
9678 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9679
9680         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9681
9682         * support/regression/tests/bug-467035.c: Created.
9683
9684 2001-10-01    <johan AT FRIJA>
9685
9686         * src/SDCC.y: fixed bug #466586 part 1
9687
9688 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9689
9690         * SDCCicode.c: z80 has no generic pointers
9691         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9692
9693 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9694
9695         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9696
9697 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9698
9699         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9700
9701         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9702
9703 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9704
9705         * configure.in: Fixed up so that ucsim is only configured once.
9706
9707         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9708
9709         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9710         (getPathDifference): As above.
9711
9712         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9713
9714         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9715
9716 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9717         * .version: Updated to 2.3.1
9718
9719         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9720         Added copyright header.
9721
9722         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9723         (assemble): Added support for macro based assembler commands.
9724         (linkEdit): Added support for macro based linker commands.
9725         (preProcess): Changed the pre-processor to use macros.
9726         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9727         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9728
9729         * device/lib/z80/crt0.s: Added module name for debugging.
9730
9731 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9732
9733         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9734
9735         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9736
9737         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9738
9739         * src/Makefile.in: Added SDCCmacro and SDCCutil
9740
9741 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9742
9743         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9744
9745 2001-09-16    <johan AT FRIJA>
9746
9747         * 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.
9748
9749 2001-09-15    <johan AT FRIJA>
9750
9751         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9752         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9753
9754 2001-09-11    <johan AT FRIJA>
9755
9756         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9757
9758 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9759
9760         * support/regression/tests/bug-460444.c: Added test case.
9761
9762         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9763         (genCast): Added justification for all of the asserts.
9764
9765 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9766
9767         * support/regression/support.c: _xdata replaced by xdata
9768
9769         * support/regression/spec.mk: removed _generic
9770
9771 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9772
9773         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9774
9775         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9776         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9777
9778         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9779
9780         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9781
9782         * support/regression/tests/bug-460010.c: Added test case.
9783
9784         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9785
9786 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9787
9788         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9789
9790         * support/regression/testfwk.c: removed workaround for bug #436344
9791
9792         * support/regression/tests/bp.c: use less memory with mcs51
9793
9794         * support/regression/tests/bug-441448.c: use less memory
9795
9796         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9797
9798         * support/regression/collate-results.py: typo
9799
9800 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9801
9802         * support/regression/tests/fetchoverlap.c: Added new test case.
9803
9804         * support/regression/tests/bp.c: Added new test case.
9805
9806         * support/regression/tests/bug-448984.c: Added new test case.
9807
9808         * support/regression/tests/pow2shifts.c: Added new test case.
9809
9810         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9811         (genlshTwo): Fixed right shift for count > 8.
9812
9813         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9814
9815 2001-09-08    <johan AT FRIJA>
9816
9817         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9818
9819 2001-09-07    <johan AT FRIJA>
9820
9821         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9822
9823         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9824
9825 2001-09-06    <johan AT FRIJA>
9826
9827         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9828         * bernhard noted me at this: "() equals to (void)" (1.38)
9829
9830 2001-09-05    <johan AT FRIJA>
9831
9832         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9833
9834 2001-09-04    <johan AT FRIJA>
9835
9836         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9837
9838
9839 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9840
9841         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9842
9843 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9844
9845         * link/z80/aslink.h: Fixed path for PATH_MAX
9846
9847 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9848
9849         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9850
9851         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9852
9853         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9854
9855         * 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.
9856
9857 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9858
9859         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9860         (genCmp): Fixed up genCmp for the GB with longs.
9861
9862         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9863
9864         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9865
9866         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9867
9868         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9869
9870 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9871
9872         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9873
9874 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9875
9876         * 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.
9877
9878         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9879
9880 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9881
9882         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9883
9884         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9885
9886 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9887
9888   * sim/ucsim/configure:    little improvement of Cygwin-detection
9889   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9890   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9891   * support/regression/tests/bug-221100.c: small changes for mcs51
9892   * support/regression/tests/bug-221168.c: small changes for mcs51
9893   * support/regression/tests/bug-227710.c: small changes for mcs51
9894   * support/regression/tests/staticinit.c: small changes for mcs51
9895   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9896   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9897   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9898
9899 $Revision$