e25203ee5baf909a9e8126df378db374142bd006
[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
6
7 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
8
9         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
10         all chars are promoted to int; promotion should be handled in SDCCast.c
11
12 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
13
14         * device/lib/_strcmp.c: Fixed bug 1326457
15
16 2005-10-11 Raphael Neider <rneider AT web.de>
17
18         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
19         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
20
21 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
22
23         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
24         * support/regression/tests/sfr16.c: added test for the sfr32 bug
25
26 2005-10-04 Raphael Neider <rneider AT web.de>
27
28         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
29           device/lib/pic16/pics.all: added pic18f1320
30         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
31
32 2005-09-30 Raphael Neider <rneider AT web.de>
33
34         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
35         * src/pic16/devices.inc: NEW, provides device descriptions
36         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
37
38 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
39
40         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
41           GETHBIT
42
43 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
44
45         * doc/sdccman.lyx: updated Highest Order Bit documentation,
46           documented Any Order Bit, Higher Order Byte and Higher Order Word
47         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
48         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
49           (optimizeGetAbit): new, to get any bit, not only the high bit,
50           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
51           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
52           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
53           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
54             RIGHT_OP: also try GETBYTE, GETWORD optimization,
55             GETABIT, GETBYTE, GETWORD: decorate them,
56           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
57           (ast_print): added GETABIT, GETBYTE, GETWORD
58         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
59         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
60           (geniCodeBinary): new generic binary icode,
61           (ast2iCode): added GETABIT, GETBYTE, GETWORD
62         * src/port.h: updated comment for PORT.hasExtBitOp
63         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
64           (genGetByte): new, to get a single byte,
65           (genGetWord): new, to get a word from a long,
66           (gen51Code): added GETABIT, GETBYTE, GETWORD
67         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
68
69 2005-09-23 Raphael Neider <rneider AT web.de>
70
71         * configure.in, configure: have device/lib/pic configured
72         * device/lib/Makefile.in: added model-pic14
73         * device/lib/clean.mk: added pic/ to clean rule
74         * device/lib/pic: added rudimentary pic14 library providing support
75           functions for multiplication/division/generic pointer access
76         * src/SDCCopt.c (convilong): mark support functions as extern
77           for pic14 port as well
78         * src/pic/gen.c (genMult): added assertions,
79           (genpic14Code): emit warning on unhandled iCodes
80         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
81         * src/pic/pcode.c (pCodeOpCopy),
82         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
83           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
84           SFR_REGISTER}), made safe for future extensions
85         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
86           instructions even if preceeded by SKIP instructions (also remove
87           them); removed unused code
88         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
89           prevents leaving parts of the structure uninitialized after copying
90
91 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
92
93         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
94           ago by me
95         * support/regression/tests/addsub.c: added test for the bug
96
97 2005-09-21 Raphael Neider <rneider AT web.de>
98
99         * device/include/pic16/pic18f1220.h,
100           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
101         * device/lib/pic16/Makefile.rules: added missing opening paren
102         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
103           are provided in genutils.c,
104           (genUminusFloat,genUminus,genCmpEq): added asserts on different
105           operand/result sizes,
106           (genCmp): assert on NULL pointers first, then check deref'ed values
107         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
108           result size
109
110 2005-09-18 Raphael Neider <rneider AT web.de>
111
112         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
113           as these are now unused,
114           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
115         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
116           local, avoids uninitialized pointer dereference on r->name
117         * src/pic16/ralloc.c (newReg): fixed indentation
118
119 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
120
121         * src/SDCCval.c (constVal): fixed bug 730366
122         * support/Util/SDCCerr.c,
123         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
124
125 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
126
127         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
128
129 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
130
131         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
132
133 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
134
135         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
136           (hex2dec): made hex_digit unsigned char, removed ascii dependance
137         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
138           (hex2dec): made hex_digit unsigned char, removed ascii dependance
139         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
140         * packihx/packihx.c (hexDigit): made c unsigned char
141         * as/mcs51/lklibr.c (fndsym),
142         * link/z80/lkgb.c (gb),
143         * link/z80/lklibr.c (fndsym),
144         * link/z80/lkrloc.c (relr),
145         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
146         * src/SDCC.lex (checkCurrFile, process_pragma),
147         * src/SDCCglue.c (spacesToUnderscores),
148         * src/SDCCmain.c (setParseWithComma, processFile),
149         * src/asm.c (tvsprintf, printCLine),
150         * src/avr/gen.c (emitcode, aopPut),
151         * src/ds390/gen.c (emitcode),
152         * src/hc08/gen.c (emitcode, emitinline),
153         * src/mcs51/gen.c (emitcode, genInline),
154         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
155           tokenizeLineNode),
156         * src/pic/ralloc.c (debugLog),
157         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
158           tokenizeLineNode),
159         * src/pic16/ralloc.c (debugLog),
160         * src/z80/main.c (_process_pragma):
161            made all ctype.h function calls safe
162         * src/SDCCopt.c: include math.h for fabs
163         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
164           and used them throughout the code to make ctype.h function calls safe
165         * src/ds390/main.c (asmLineNodeFromLineNode),
166         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
167         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
168            unsigned char*
169         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
170           (newpCodeAsmDir): made ctype.h function calls safe
171         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
172           pic16_emitcode):  made lbp unsigned char*
173         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
174           (pic16_newpCodeAsmDir): made ctype.h function calls safe
175         * src/xa51/gen.c (emitcode),
176         * src/z80/gen.c (_emit2): made lbp unsigned char*
177         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
178            char*
179
180 2005-09-05 Raphael Neider <rneider AT web.de>
181
182         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
183           access bank splitpoint
184
185 2005-09-05 Raphael Neider <rneider AT web.de>
186
187         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
188
189 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
190
191         * .version: changed to version 2.5.3
192         * doc/sdccman.lyx: changed version to 2.5.3,
193           documented --codeseg and --constseg and pragma codeseg and constseg,
194           documented bit parameters (reentrant) and bit returning
195         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
196            currFunc->recvSize, but is this ok for all ports?
197           (ast2iCode): result of ~ on unsigned char must be cast to int for
198            bool to work
199         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
200           function pointers in bit space
201         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
202           (processFuncArgs): call port.reg_parm() with reentrancy info
203         * src/port.h,
204         * src/avr/main.c,
205         * src/ds390/main.c,
206         * src/hc08/main.c,
207         * src/pic/main.c,
208         * src/pic16/main.c,
209         * src/xa51/main.c,
210         * src/z80/main.c: port.reg_parm prototype extended with
211           "bool reentrant" parameter
212         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
213           options.stackAuto for allocating bit register parameters
214         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
215           (genSend): set BitBankUsed if it is,
216           (selectRegBank): factored out of genCall for use in genPcall,
217           (genCall): removed redundant dtype assignmen, use selectRegBank,
218           (genPcall): handle returning in Carry properly, save in F0 if needed,
219           (genReceive): handle bit register parameters
220         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
221           (mcs51_assignRegisters): enable bit registers for all reentrant
222            functions and don't set BitBankUsed unconditionally
223         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
224         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
225         * support/regression/tests/funptrs.c: added tests for BOOL and for return
226
227 2005-08-27 Borut Razem <borut.razem AT siol.net>
228
229         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
230         ppc-osx (Darwin) does not support -u option. It seems that it is
231         supported only on Linux - GNU cp
232
233 2005-08-25 Borut Razem <borut.razem AT siol.net>
234
235         * sim/ucsim/gui.src/serio.src/Makefile.in,
236           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
237           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
238           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
239           install and strip, since the strip at /usr/ccs/bin should be used
240           on solaris
241
242 2005-08-24 Borut Razem <borut.razem AT siol.net>
243
244         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
245
246 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
247
248         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
249         ffffffffu
250
251 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
252
253         * as/mcs51/aslink.h: completed lkrloc.c prototypes
254         * as/mcs51/lkmain.c (link_main): fixed warning
255         * device/include/stdbool.h: ds390 has no advanced bit support yet
256         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
257         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
258         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
259           and updated their macros
260         * src/SDCCval.c (constVal): updated comment for renamed b_long
261
262 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
263
264         * as/mcs51/asdata.c: changed ctype['['] to BINOP
265         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
266           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
267           (oprio): set priority for '['
268         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
269            and adb_24_bit
270         * as/mcs51/asm.h: added defines R_BIT and S_BIT
271         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
272         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
273         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
274           added overlayable BIT_BANK area
275         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
276           (summary2): explain 'T' in legenda
277         * as/mcs51/lkrloc.c: replaced old K&R style,
278           (relr): added R_BIT processing,
279           (errmsg): added "Bit-addressable relocation error",
280           (adb_bit): added for converting from byte- to bit-addressable space,
281           (adb_24_bit): added for converting from byte- to bit-addressable space
282         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
283            used in reentrant functions now even as return value
284         * device/lib/_gptrput.c (_gptrput): removed obsolete code
285         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
286           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
287         * src/SDCCglobl.h: added indicator BitBankUsed
288         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
289            the bit registers b0-b7
290         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
291           (geniCodeCast): fixed bug 1263853,
292           (geniCodeLogicAndOr): put result in bool or char,
293           (geniCodeReceive): added parameter func for accessing the return type,
294           (geniCodeFunctionBody): pass func to geniCodeReceive
295         * src/SDCCmain.c: added indicator BitBankUsed
296         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
297         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
298           (checkSClass): don't put automatic bool/bit on stack,
299           (checkFunction): removed check on function cannot return bit
300         * src/SDCCsymt.h: added newBoolLink prototype
301         * src/mcs51/gen.c (rb1regs): added bit registers,
302           (movc): created for assigning to carry,
303           (pushReg, popReg): created for pushing registers,
304           (sameRegs): check both AOP_REG and AOP_CRY types,
305           (aopOp): handle bit registers,
306           (aopPut): optimization no self-assign,
307           (saveRegisters): push reg->base (bits) only once for bit registers,
308            and use pushReg,
309           (unsaveRegisters): pop reg->base only once and use popReg,
310           (assignResultValue): added parameter func and return in carry for bits,
311           (genIpush): optimization no reload in A if not changed,
312           (genSend): bit parameters in reentrant functions are passed in bit
313            registers by first assigning to bits in B, then save registers and
314            copy B to bits,
315           (genCall): handle returning in Carry properly, save it in F0 if needed,
316           (genPcall): updated assignResultValue call, this is not safe yet for bit
317            returning function !!!
318           (genFunction): don't generate equ's for bit registers and use pushReg,
319           (genEndFunction): take care of bit returning functions and use popReg,
320           (genRet): return bit in Carry,
321           (genIfx): optimize bit registers and other directly addressable bits,
322           (genReceive): updated assignResultValue call
323         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
324           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
325            registers when using stack-auto
326         * src/mcs51/ralloc.c (_G): added allBitregs,
327           (regs8051): added the bit registers,
328           (createStackSpil): use macro IS_BIT,
329           (getRegBit): added to allocate a bit register, else spill,
330           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
331           (updateRegUsage): factored out to ease stepping while debugging,
332           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
333            also allocate bit registers,
334           (fillGaps): handle bit registers,
335           (findAllBitregs): added to create bit vector with all bit registers,
336           (mcs51_allBitregs): returns this bit vector,
337           (mcs51_assignRegisters): when using stack-auto use bit registers for
338            passing parameters and creating local variables
339         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
340
341 2005-08-22 Borut Razem <borut.razem AT siol.net>
342
343         * device/lib/Makefile.in: replaced find option -or with -o
344           to make it run on solaris
345
346 2005-08-22 Raphael Neider <rneider AT web.de>
347
348         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
349           fixes #1265442 (crash on Solaris)
350
351 2005-08-20 Borut Razem <borut.razem AT siol.net>
352
353         * configure, configure.in: added tests for libsocket and libnsl libraries,
354           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
355           from support/regression/Makefile.in
356         * support/regression/Makefile.in: added
357         * device/lib/pic16/Makefile.common.in: force make to use bash shell
358         * sim/ucsim/libtool: regenerated on sparc-solaris
359         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
360           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
361           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
362           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
363           sparc-solaris, which doesn't use GNU ld linker
364         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
365         * as/Makefile: find on sparc-solaris does not support -maxdepth option
366
367 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
368
369         * src/mcs51/peeph.def: updated comments
370
371 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
372
373         * device/lib/_gptrget.c,
374         * device/lib/_gptrput.c: slightly shorter
375         * doc/sdccman.lyx: incremented version
376         * src/mcs51/peeph.def: moved peephole comments to the line of first
377           change to better keep line correlation, reanimated 186.e
378         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
379
380 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
381
382         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
383           David Saxton with quotes around file name.
384
385 2005-08-15 Borut Razem <borut.razem AT siol.net>
386
387         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
388           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
389           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
390           make tests run on x86_64 platform
391
392 2005-08-13 Raphael Neider <rneider AT web.de>
393
394         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
395           as it might be executed DURING a build (parallel make is wonderful)
396
397 2005-08-13 Raphael Neider <rneider AT web.de>
398
399         * device/lib/Makefile.in (port-specific-objects-pic16):
400           revert to cp $(PORT)/bin/*.* $(PORTDIR)
401         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
402           dependency
403         * device/lib/pic16/Makefile.rules: build subdirs before creating
404           the library, removed builddir rule, create $(builddir) early in
405           recurse rule, use empty recurse rule for leaf directories
406         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
407           mkdir errors (race condition), removed duplicate suffix "hex"
408           from clean rules
409         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
410         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
411           prevents mkdir -p from aborting on Alpha
412
413 2005-08-12 Raphael Neider <rneider AT web.de>
414
415         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
416           db-statements in order to allow for arrays of pointers in code
417           sections to be placed without interspersed 0-padding, fixes
418           bug #1256215
419         * (emitStatistics): fixed division by zero for pic18f1220
420         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
421           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
422         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
423         * (pic16_pCodeConstString): keep track of already emitted string
424           literals to prevent "duplicate definitions of symbol _str_NR"
425         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
426           debug message
427         * device/lib/Makefile.in: ignore failing PIC16 library builds
428         * device/lib/pic16/Makefile: do not build if gputils are missing
429         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
430
431 2005-08-10 Raphael Neider <rneider AT web.de>
432
433         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
434           my last commit)
435
436 2005-08-10 Raphael Neider <rneider AT web.de>
437
438         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
439           Rokas' patch to add the new fixed point type "__fixed16x16"
440         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
441           functions for __fixed16x16 arithmetics
442         * device/lib/pic16: reimplemented the build system to support
443           a separate build directory, better handling of libio (create
444           the library in a separate subdir for each architecture) and
445           easier configuration (centralized in Makefile.common)
446
447 2005-08-07 Raphael Neider <rneider AT web.de>
448
449         * src/pic16/gen.c (genrshTwo): fixed sign extension
450         * src/pic16/device.c: added pic18f2320, 4220 and 4320
451         * device/include/pic16/pic18f2220.h: changed some bit definitions,
452           added T0CONbits
453         * device/include/pic16/pic18f4220.h: NEW, header for
454           pic18f4220 and pic18f4320
455         * device/include/pic16/pic18fregs.h: added new devices,
456           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
457         * device/include/pic16/signal.h: resolved name clashes
458           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
459           to also allow testing for interrupt enable bits, added
460           comments on how to use the macros
461         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
462         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
463           register definitions for the devices
464         * device/lib/pic16/pics.all: added new devices
465         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
466           allocated memory
467         * device/lib/pic16/libc/stdlib/memfree: do not count
468           the block header as free memory
469         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
470           simplified and added missing end-of-blocklist-marker
471           (reported by Peter Onion, fixes #1252814)
472         * (_mergeHeapBlock): fixed loop condition
473         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
474           len==0, restructured code
475         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
476           up a bit, reduced bitfield accesses, prevent endless loops
477           in case of heap corruption
478         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
479           "unreferenced arguments/must return a value" warnings
480         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
481           replaced BAUDREG with SPBRG
482         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
483           device/lib/pic16/debug/gstack/gstack.c: replaced
484           _naked, _asm, _endasm with __naked, __asm, __endasm
485
486 2005-08-05 Raphael Neider <rneider AT web.de>
487
488         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
489           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
490
491 2005-08-05 Borut Razem <borut.razem AT siol.net>
492
493         * device/lib/Makefile.in: added missing ';'
494         * configure: removed ^M characters
495
496 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
497
498         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
499           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
500           License
501
502 2005-08-04 Borut Razem <borut.razem AT siol.net>
503
504         * configure.in: pic16 libraries build 2nd try - enable running
505           configure in device/lib/pic16
506         * configure: regenerated from configure.in
507         * device/lib/Makefile.in: create $(PORT)/bin directory
508
509 2005-08-03 Raphael Neider <rneider AT web.de>
510
511         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
512           to get/set values via pointers
513         * (genUnpackBits,genPackBits): changed detection of
514           ptr->bitfield vs. sym.bitfield, fixed access via generic
515           pointers, removed dead (wrong) code for multibyte bitfields
516         * (genNearPointerGet, genGenPointerGet): removed useless code,
517           fixed bitfield detection, fixes #1250594
518         * (genNearPointerSet): removed useless code
519         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
520           and introduced macro pic16_emitpcode that conditionally emits
521           the origin of the following pCode (useful for debugging SDCC)
522         * src/pic16/pcode.c: changed (and disabled) some debug outputs
523         * (createDefmap): fixed handling of LFSR for --optimize-df
524
525 2005-08-02 Borut Razem <borut.razem AT siol.net>
526
527         * device/lib/Makefile.in: pic16 libraries build enabled since
528           gputils-0.13.2 are now localy installed at sourceforge's compile farm
529
530 2005-08-02 Raphael Neider <rneider AT web.de>
531
532         * src/pic16/gen.c (genPackBits): removed deprecated warning
533         * (genGenPointerSet): fixed bitfield detection
534
535 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
536
537         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
538
539 2005-07-31 Raphael Neider <rneider AT web.de>
540
541         * device/lib/pic16/libdev/pic18f458.c,
542           device/include/pic16/pic18f458.h: added missing T0CONbits
543
544 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
545
546         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
547
548 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
549
550         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
551
552 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
553
554         * device/include/mcs51/at89c51ed2.h: added.
555
556 2005-07-23 Raphael Neider <rneider AT web.de>
557
558         * src/pic/gen.h: added emitpcode macro for debugging
559         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
560           and replace by macro adding debug information on demand
561         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
562         * (gencjne): tried to fix; replaced with correct (slower) code
563         * (gen{Unp,P}ackBits): fixed single bit access
564         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
565         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
566           previous instruction
567         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
568           register has to be handled with care (forbidding movement
569           of assignments/uses, removing assignments completely, ...)
570         * (pCodeOptime2pCodes): make use of regIsSpecial
571         * added lots of debugging output (commented out)
572         * src/pic/rallloc.c (deassignLRs): prevent operand registers
573           from being reused as result UNLESS it is known to work
574
575 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
576
577         * support/Util/dbuf.h: include <stddef.h> for size_t
578         * .version: changed to version 2.5.2
579
580 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
581
582         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
583
584 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
585
586         * src/hc08/gen.c (genMinus): fixed bug #1241835,
587           (genModOneByte): removed needless psha/pula
588
589 2005-07-22 Raphael Neider <rneider AT web.de>
590
591         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
592           have PIC14 handled like PIC16, fixes broken pic14 linker calls
593         * src/pic/gen.c (resolveIfx): do not "invent" labels
594         * (genSkipc): changed to positive logic
595         * (genSkipCond): removed as no longer needed
596         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
597           backport from PIC16
598         * (genLeftShift): check operands are in different registers
599         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
600           INCF does not update CARRY...
601         * src/pic/main.c: fixed _linkCmd
602         * src/pic/pcode.c (unlinkpCode): added inactive code
603         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
604           alive (do not assign result and operand overlapping registers)
605
606 2005-07-22 Raphael Neider <rneider AT web.de>
607
608         * src/pic/device.c (dump_sfr): replaced register declaration with
609           call to emitSymbolToFile() to avoid duplicate symbols
610         * (assignRelocatableRegisters): do not declare external symbols
611         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
612           right (take size of type, not etype)
613         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
614         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
615         * (packRegsForAccUse): disabled assignment of WREG as
616           the result reg to prevent occurence of just fixed #1235003,
617           fixes #1242954
618         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
619           symbols (avoids duplicate symbols in .asm file)
620         * (pic14emitRegularMap): use emitSymbolToFile()
621         * src/pic/gen.c (aopOp): fixed spillLocation handling
622         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
623         * (genDataPointerSet): removed unneccessary variables/output
624
625 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
626
627         * as/mcs51/lkarea.c: enlarged codemap for banked memory
628         * device/lib/mcs51/crtbank.asm: added # to 0x0F
629
630 2005-07-21 Raphael Neider <rneider AT web.de>
631
632         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
633           architecture cannot handle them efficiently, fixes bug #1235003
634         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
635           check for empty sets before using them (fixes bug #1232190)
636
637 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
638
639         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
640           (lnksect2): generate warnings for memory overlap
641         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
642           constseg to set the name of these segments so you can instruct the linker
643           to place them in banks
644         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
645         * src/SDCCglobl.h: added MODEL_HUGE to enum,
646           added code_seg and const_seg to options
647         * src/SDCCglue.c (emitMaps): use options.const_seg,
648           (createInterruptVect): put interrupt vectors in segment HOME,
649           (glue): put HOME before static segment and put the main glue in HOME,
650           (glue): use options.code_seg
651         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
652         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
653           these segments so you can instruct the linker to place them in banks
654           (linkEdit): use code_loc for HOME segment which should be the first
655           segment in code memory now
656         * src/SDCCmem.c: fixed more stuff like bug 1238386
657         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
658           (changePointer): don't change function pointers to code pointers for
659           banked functions,
660           (compareType): added exceptional check for banked function pointers
661         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
662         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
663           after static in code memory
664         * src/mcs51/gen.c: added aopLiteralLong prototype,
665           (aopForSym): use getSize for functions,
666           (genCall): generate banked calls over one trampoline __sdcc_banked_call
667           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
668           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
669           the segment,
670           (genPcall): use call for literal function pointers and generate banked
671           calls over the one trampoline so there's only one place for the user to
672           modify according to his/hers hardware,
673           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
674           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
675         * src/mcs51/main.c: added keyword banked,
676           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
677         * support/Util/SDCCerr.c,
678         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
679           needed for passing the bank and address to the trampoline
680         * device/lib/mcs51/crtbank.asm: added for bankswitching
681         * device/lib/mcs51/Makefile: added crtbank
682
683 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
684
685         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
686           for fields at offset 0 of a struct or union as reported
687           on 2005-07-07 in the developer mailing list.
688
689 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
690
691         * src/SDCCmem.c: fixed bug 1238386
692
693 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
694
695         * src/mcs51/peeph.def: added labelrefcounting for peepholes
696           (patch #1144962), added peephole 300, enabled 259.x
697         * doc/sdccman.lyx: removed screenshot and provided link instead
698
699 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
700
701         * doc/sdccman.lyx: added section about debugging with ddd
702         * doc/figures/ddd_example.eps: screenshot of debugging session
703
704 2005-07-04 Raphael Neider <rneider AT web.de>
705
706         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
707           like CODE pointers, fixes #1115683
708         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
709           call, fixes bugs #1232211, #1228110,
710           fixed wrong casts to pCodeFlow from pCodeInstructions
711
712 2005-07-04 Raphael Neider <rneider AT web.de>
713
714         * src/pic/gen.c (popGet): changed assert to allow for
715           bit operands
716         * (popGetAddr): changed signature to provide
717           an additional index, patched all call sites
718         * (genCmpEq): handle literal-like operands correctly
719         * (genAddrOf): added sanity checks on __code/__data pointers
720         * (genAssign): added handling of symbols from __code section
721         * (gencjne): do not generate code for comparisons whose result
722           is neither stored nor used, fixes bug #1171114
723         * (AccLsh, AccRsh): operate on operand instead of WREG
724         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
725           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
726           by known count
727         * rewrote complete shift-by-literal logic, commented unused
728           functions out
729         * (genConstPointerGet): get multiple bytes (if result size > 1),
730           fixed handling of non-immediate addresses
731         * (genPointerGet): handle CODE pointers like CONST pointers
732         * (genpic14Code): insert C-SRC lines as Cource-pCodes
733         * ({aop,op}_isLitLike): NEW, single place to decide whether an
734           operand is to be treated as a literal or not
735         * (mov2w,genPcall,genCmpEq),
736           src/pic/genarith.c: use aop_isLitLike() to decide between
737           literal/register contents
738         * (addSign): added missing offset
739         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
740           only emit comment in debug-mode,
741           use {aop,op}_isLitLike throughout the file
742         * src/pic/glue.c: fix initializers for pointers (work in progress)
743         * src/pic/pcode.c (get_op): honor index on _const symbols
744         * ({reset,dump}pCodeStatistics): NEW, estimate code size
745         * (dumppBlock): added pCode size estimation
746         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
747           check for IS_SYMOP before OP_SYMBOL'ing
748         * fixed indentation, compacted switch-statements
749         * (allocReg): find free register and allocate it instead of
750           allocating new registers all the time
751         * (deassignLRs): prevent POINTER_GET's from being assigned the same
752           registers as its operands (necessary only for multibyte GETs)
753
754 2005-07-01 Raphael Neider <rneider AT web.de>
755
756         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
757           debugging .asm-output macros FENTRY + FEXIT
758         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
759           way... I wonder...
760         * (emitpComment): NEW, printf to pCode
761         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
762           offset handling
763         * (popGetAddr): NEW, variant of popGet to access an immediates
764           high(er) bytes instead of the n'th byte of memory they reference,
765           replaced popGet with popGetAddr where neccessary
766         * (genDataPointerGet): reactivated and fixed implementation
767         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
768           accesses
769         * (genDataPointerSet): fixed multibyte assignments
770         * (genpic14Code): fixed --i-code-in-asm handling
771         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
772         * (genPlus): fixed index-out-of-bounds error
773         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
774         * src/pic/ralloc.c: added debugging output macro FENTRY2
775         * (spillThis): fixed indentation, enbraced for-body for clarity
776         * (rematStr): commented out as now unused
777         * (regTypeNum): commented out special spill case (overwrites
778           arbitrary values)
779         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
780
781 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
782
783         * doc/sdccman.lyx: documented sfr16/sfr32,
784           added example for using storage class with function pointers
785         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
786
787 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
788
789         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
790         * device/lib/_itoa.c,
791         * device/lib/_ltoa.c: optimized codesize
792         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
793           but don't know how to suppress the double warning.
794         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
795         * support/Util/SDCCerr.c,
796         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
797
798 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
799
800         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
801           fixed old K&R prototypes
802         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
803         * device/lib/_gptrget.c,
804         * device/lib/_gptrgetc.c,
805         * device/lib/_gptrput.c: changed versions for new memory indicator values,
806           also new versions for small generic pointers and banked generic pointers
807         * src/port.h: added const_name
808         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
809         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
810         * src/SDCCcse.c (findPrevIc): check all associative operators
811         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
812         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
813         * src/SDCCmem.c: updated comments,
814           set far-space to 0 for pdata, results in optimized code
815         * src/SDCCmem.h: added macro CONST_NAME
816         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
817           moving the info into the highest bits, see also gptrget/gptrput
818         * src/src.dsp: added sdcc.ico to project files
819         * src/avr/gen.c (genCast): fixed bug 0x%d
820         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
821         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
822           relation between ptr_type and DCL_TYPE,
823           (genCast): fixed bug 0x%d
824         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
825           (CODE)" for const_name
826         * src/hc08/gen.c (genCast): fixed bug 0x%d
827         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
828           (hc08_port): added "CONST (CODE)" for const_name
829         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
830           (aopForRemat, adjustArithmeticResult): disconnected direct relation
831           between ptr_type and DCL_TYPE,
832           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
833           operand* and took AOP() inside function so sfr-ness can be checked,
834           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
835           new prototype,
836           (genFunction, genEndFunction): optimized stack setup,
837           (genMinus): optimized for literals with ending zeroes (in bytes),
838           (genCast): fixed bug 0x%d
839         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
840           (mcs51_port): added "CONST (CODE)" for const_name
841         * src/mcs51/peeph.def: made rule 226 more generic
842         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
843         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
844         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
845         * src/z80/main.c (z80_port): added NULL for const_name,
846           (gbz80_port): added NULL for const_name
847         * support/regression/tests/bug663539.c,
848         * support/regression/tests/sfr16.c: new tests
849
850 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
851
852         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
853
854 2005-06-24 Raphael Neider <rneider AT web.de>
855
856         * device/lib/pic16/libdev/pic18f[68][567]20.c:
857           corrected typos...
858         * device/include/pic16/signal.h: added USBIF
859           and SIG_USB
860
861 2005-06-24 Raphael Neider <rneider AT web.de>
862
863         * device/lib/pic16/libdev/pic18f2455.c,
864           device/include/pic16/pic18f2455.h: NEW
865         * device/include/pic16/pic18fregs.h,
866           device/lib/pic16/pics.all,
867           src/pic16/device.c: added 18f2455
868         * device/lib/pic16/libdev/pic18f[68][567]20.c,
869           device/include/pic16/{pic18f[68][567].h,usart.h}:
870           replaced MULTIPLE_USARTS define with more relaible
871           compatibility sfrs (for USART access)
872
873 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
874
875         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
876           and the output asm file line is printed on two lines.
877
878 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
879
880         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
881           BGT, BLE, BHI, and BLS instructions
882         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
883           genCmpEq): removed
884         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
885           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
886           fixes bug #1216342
887         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
888
889 2005-06-15 Raphael Neider <rneider AT web.de>
890
891         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
892         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
893         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
894           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
895           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
896
897 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
898
899         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
900           Marcel Telka in bug #1215704
901
902 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
903
904         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
905           located in shared memory bank.
906
907 2005-05-31 Raphael Neider <rneider AT web.de>
908
909         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
910           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
911           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
912
913 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
914
915         * device/lib/_strncpy.c: fixed the fix
916
917 2005-05-26 Raphael Neider <rneider AT web.de>
918
919         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
920           initializers with \0, bug #1208187
921         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
922           intializers with \0, bug #1208187
923
924 2005-05-26 Raphael Neider <rneider AT web.de>
925
926         * src/pic16/glue.c (pic16_printIvalChar): fixed string
927           initializers with \0, bug #1208187
928         * src/pic16/main.c (_process_pragma): added sanity checks
929           for stack position and size, emit warnings when appropriate
930
931 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
932
933         * device/lib/_strncpy.c: fixed not filling with \0
934
935 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
936
937         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
938           createFunction),
939         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
940           compound_statement),
941         * src/SDCCsymt.h,
942         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
943
944 2005-05-24 Raphael Neider <rneider AT web.de>
945
946         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
947
948 2005-05-24 Raphael Neider <rneider AT web.de>
949
950         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
951           TRISE definitions, closes bug #1162453
952
953 2005-05-22 Raphael Neider <rneider AT web.de>
954
955         * src/pic16/main.c (_process_pragma): check for missing
956           arguments to pragmas code and udata
957         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
958           consistency fixes to match other headers (thanks to Jim Paris)
959         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
960
961 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
962
963         * src/SDCCicode.c (isOperandEqual): fixed missing ;
964
965 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
966
967         * support/regression/tests/bug1198642.c: new test
968         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
969         * src/SDCCcse.c (findPrevIc): added comment, please have a look
970         * support/scripts/resource.h,
971         * support/scripts/resource.rc,
972         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
973         * support/scripts/sdcc.ico: added 32x32 icon
974
975 2005-05-18 Raphael Neider <rneider AT web.de>
976
977         * device/lib/pic16/libdev/pic18f*.c,
978         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
979           keywords to "__sfr" and "__at (X)"
980         * device/include/pic16/pic18fregs.h: added pic18f4520
981         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
982           #1203088 (MPLAB compatibility)
983
984 2005-05-17 Raphael Neider <rneider AT web.de>
985
986         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
987         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
988         * device/lib/pic16/pics.all: added new devices
989         * src/pic16/device.c: added support for pic18f4520
990
991 2005-05-16 Raphael Neider <rneider AT web.de>
992         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
993         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
994         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
995           convenience function for bit access
996
997 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * device/lib/printf_large.c: fixed bug 1193299
1000         * support/regression/tests/bug1057979.c: added test %3.3s
1001
1002 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1003
1004         * device/include/mcs51/8051.h,
1005         * device/include/mcs51/8052.h: made parseable with lint
1006         * device/include/mcs51/lint.h: added include file for (sp)lint
1007         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1008         * doc/cdbfileformat.lyx,
1009         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1010
1011 2005-05-14 Raphael Neider <rneider AT web.de>
1012
1013         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1014         * device/lib/pic16/libc/stdlib/itoa.c (new)
1015         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1016         * device/lib/pic16/libio/Makefile: exclude subdir according to
1017           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1018         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1019         * src/pic16/gen.c (genFunction): prevent annoying warning
1020         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1021           nameclashes on BeOS
1022         * support/cpp2/cppmain.c (cpp_output_string): new
1023         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1024           fixes bug 1116802
1025
1026 2005-05-13 Borut Razem <borut.razem AT siol.net>
1027
1028         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1029
1030 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1031
1032         * .version: changed to version 2.5.1; back to bleeding edge development
1033
1034 2005-05-11 Borut Razem <borut.razem AT siol.net>
1035
1036         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1037           generate PDF version 1.3 documents
1038
1039 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1040
1041         * .version: changed to version 2.5.0
1042
1043 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1044
1045         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1046
1047 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1048
1049         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1050         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1051         well as many smaller updates.
1052         * .version: changed to version 2.5.0-pre1
1053
1054 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1055
1056         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1057
1058 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * support/regression/tests/bug1185672.c: added
1061         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1062           bug 1185672
1063         * src/mcs51/gen.c (genCall): added comments, made it look safer
1064         * src/mcs51/gen.c (genEndFunction): simplified
1065
1066 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1067
1068         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1069
1070 2005-04-14 Borut Razem <borut.razem AT siol.net>
1071
1072         * fixed bug 1045046 - SIGSEGV with really simple code?:
1073           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1074           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1075
1076 2005-04-14 Borut Razem <borut.razem AT siol.net>
1077
1078         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1079           src/pic16/device.h: temporarily disabled experimental #inline pragma
1080           for 2.5.0 release
1081
1082 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1083
1084         * device/include/z80/stdio.h,
1085         * device/include/z80/string.h: removed these highly incomplete files so
1086           SDCC can use the default ones in device/include/
1087
1088 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1089
1090         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1091         gcc warning.
1092         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1093         fix sdcpp warnings.
1094
1095 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1096
1097         * device/include/malloc.h: removed redundant __reentrant prototypes
1098         * device/lib/_mullong.c: added working xstack variant in asm (C version
1099           doesn't pass regression tests)
1100         * device/lib/bpx.c: used __data and made bpx char for mcs51
1101         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1102           (createFunction): fixed bug with xstackPtr
1103         * src/SDCCcse.c: corrected comments
1104         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1105           (killDeadCode, eBBlockFromiCode): removed unused code
1106         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1107           corrected comments
1108         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1109           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1110           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1111           (genModOneByte): fixed warning in MSVC
1112         * src/mcs51/main.c (): added comments
1113         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1114
1115 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1116
1117         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1118
1119 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1120
1121         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1122
1123 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1124
1125         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1126         characters arrays of larger size than the declared one.
1127
1128 2005-04-10 Borut Razem <borut.razem AT siol.net>
1129
1130         * src/pic/gen.c (genInline),
1131           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1132           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1133           (findNextInstruction), (findPrevInstruction),
1134           (findInstructionUsingLabel),
1135           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1136         * src/pic/pcode.c (findLabel): added missing '\n'
1137         * src/src.dsp: added SDCCdwarf2.c to the project
1138
1139 2005-04-09 Borut Razem <borut.razem AT siol.net>
1140
1141         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1142
1143 2005-04-08 Raphael Neider <rneider AT web.de>
1144
1145         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1146           into the chain after a given one) and mergeDefmapSymbols (combine
1147           defmap entries for each symbol per pcode)
1148         * (createDefmap): have defmap entries merged in the end
1149         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1150           a symbol before replacing one access type's symbol, merge symbols in
1151           the end (replacement symbol might already have an entry)
1152         * (assignValnums): keep reference to written WREG intact
1153
1154 2005-04-08 Raphael Neider <rneider AT web.de>
1155
1156         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1157           Alpha)
1158
1159 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1160
1161         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1162         bytes
1163
1164 2005-04-07 Raphael Neider <rneider AT web.de>
1165
1166         * device/include/pic16/usart.h: added compatibility defines for
1167           devices with more than one USART
1168         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1169
1170 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1171
1172         * device/lib/Makefile.in: updated for port specific include
1173
1174 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1177
1178 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1179
1180         * device/include/8051.h,
1181         * device/include/8052.h,
1182         * device/include/at89S8252.h,
1183         * device/include/at89c55.h,
1184         * device/include/at89x051.h,
1185         * device/include/at89x51.h,
1186         * device/include/at89x52.h,
1187         * device/include/mcs51reg.h,
1188         * device/include/reg51.h,
1189         * device/include/reg764.h,
1190         * device/include/regc515c.h,
1191         * device/include/sab80515.h: (re)moved these 12 files
1192         * device/include/mcs51/8051.h,
1193         * device/include/mcs51/8052.h,
1194         * device/include/mcs51/at89S8252.h,
1195         * device/include/mcs51/at89c55.h,
1196         * device/include/mcs51/at89x051.h,
1197         * device/include/mcs51/at89x51.h,
1198         * device/include/mcs51/at89x52.h,
1199         * device/include/mcs51/mcs51reg.h,
1200         * device/include/mcs51/reg51.h,
1201         * device/include/mcs51/reg764.h,
1202         * device/include/mcs51/regc515c.h,
1203         * device/include/mcs51/sab80515.h: and added them here
1204
1205 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1206
1207         * device/include/stdarg.h: changed SDCC specific keywords to double
1208           underlined form.
1209         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1210           mcs51 and ds390.
1211         * device/include/hc08/mc68hc908gp32.h,
1212         * device/include/hc08/mc68hc908jb8.h,
1213         * device/include/hc08/mc68hc908jkjl.h,
1214         * device/include/hc08/mc68hc908qy.h: fixed comments
1215         * device/include/mcs51/README: updated
1216         * device/include/mcs51/c8051f120.h: added PINRSF
1217         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1218         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1219           amidst code. Also inline is not supported.
1220
1221 2005-04-06 Raphael Neider <rneider AT web.de>
1222
1223         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1224         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1225           callers stack/frame pointers
1226
1227 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1228
1229         * device/include/pic16/usart.h: added, missing in previous commit,
1230         * device/include/pic16/adc.h: fixed typo,
1231         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1232         commit,
1233         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1234         <p18fxxx.inc>
1235         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1236         uninitialized because a bug appears with gplink
1237         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1238         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1239         complains for unrecognised option
1240
1241 2005-04-05 Raphael Neider <rneider AT web.de>
1242
1243         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1244           structs as well (using memcpy)
1245         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1246           on ISRs (GOTO has no label)
1247         * src/pic16/device.h: added OF_OPTIMIZE_DF
1248         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1249           new data flow analysis/optimization
1250         * src/pic16/pcode.c: added (prototypes for and implementation of)
1251           dataflow analysis functions, fixed pCodeInstructions' inCond and
1252           outCond values, made RCALL a branch instruction
1253         * (pic16_unlinkpCode): keep C line if possible
1254         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1255           C line moved if possible
1256         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1257         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1258           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1259         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1260           new flow)
1261         * (pic16_getJumptabpCode): NEW, needed in...
1262         * (LinkFlow): fixed handling of jumptables, calls and conditional
1263           branches
1264         * (pic16_InsertCommentAfter): NEW
1265         * (pic16_pCodeReplace): made verbose and flow preserving
1266         * (AnalyzeFlow): added call to data flow analysis
1267         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1268         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1269         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1270
1271 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1272
1273         * src/SDCCast.c (decorateType): fixed bug #1105626
1274
1275 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1276
1277         * device/include/asm/pic16/features.h,
1278         * pic18f*.h headers,
1279         * device/include/pic16/adc.h,
1280         * device/include/pic16/delay.h,
1281         * device/include/pic16/i2c.h,
1282         * device/include/pic16/malloc.h,
1283         * device/include/pic16/stdio.h,
1284         * device/include/pic16/stdlib.h,
1285         * device/include/pic16/string.h,
1286         * device/lib/pic16/libc/stdio/printf_tiny.c,
1287         * device/lib/pic16/libc/stdio/printf_small.c,
1288         * device/lib/pic16/libc/stdio/strmgpsim.c,
1289         * device/lib/pic16/libc/stdio/strmmssp.c,
1290         * device/lib/pic16/libc/stdio/strmusart.c,
1291         * device/lib/pic16/libc/stdio/vfprintf.c,
1292         * device/lib/pic16/libc/stdlib/ltoa.c,
1293         * device/lib/pic16/libc/stdlib/putchar.c,
1294         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1295         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1296         * device/lib/pic16/libc/stdlib/memchrram.c,
1297         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1298         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1299         * device/lib/pic16/libio/adc/adcbusy.c,
1300         * device/lib/pic16/libio/adc/adcread.c,
1301         * device/lib/pic16/libio/adc/adcsetch.c,
1302         * device/lib/pic16/libio/usart/ubaud.c,
1303         * device/lib/pic16/libio/usart/ubusy.c,
1304         * device/lib/pic16/libio/usart/udrdy.c,
1305         * device/lib/pic16/libio/usart/uopen.c,
1306         * device/lib/pic16/libio/usart/uputc.c,
1307         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1308         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1309         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1310         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1311         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1312         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1313         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1314         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1315         specific keywords to double underlined form,
1316         * device/lib/pic16/libc/Makefile.rules,
1317         * device/lib/pic16/libsdcc/Makefile.rules,
1318         * device/lib/pic16/libm/Makefile,
1319         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1320         to compile with C standard set in Makefile.common
1321         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1322         rand.c and crc.c in compilation process,
1323         * device/lib/pic16/libsdcc/int/divuint.c,
1324         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1325         `c' from signed to unsigned,
1326         * device/lib/pic16/startup/crt0.c,
1327         * device/lib/pic16/startup/crt0i.c,
1328         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1329         keywords to double underlined form, bug fixes in _do_cinit function
1330         which prevented the correct initialization of the .idata segment,
1331         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1332         core to enter a infinite loop
1333         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1334
1335 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1336
1337         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1338
1339 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1340
1341         * device/include/Makefile.in: add support for hc08 subdirectory
1342         * device/include/hc08/: new subdirectory
1343         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1344         Lucas Loizaga, thanks!
1345         * device/include/hc08/mc68hc908qy.h,
1346         * device/include/hc08/mc68hc908gp32.h,
1347         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1348         their own directory. Changed internal macro names to use the compiler
1349         reserved namespace. Changed SDCC specific keywords to double
1350         underlined form.
1351         * device/include/math.h,
1352         * device/include/malloc.h,
1353         * device/include/stdarg.h,
1354         * device/include/stdbool.h
1355         * device/include/string.h,
1356         * device/include/tinibios.h,
1357         * device/include/ds400rom.h,
1358         * device/include/8051.h,
1359         * device/include/8052.h,
1360         * device/include/80c51xa.h,
1361         * device/include/at89c55.h,
1362         * device/include/at89S8252.h,
1363         * device/include/at89x51.h,
1364         * device/include/at89x52.h,
1365         * device/include/ds80c390.h,
1366         * device/include/reg764.h,
1367         * device/include/regc515c.h,
1368         * device/include/sab80515.h,
1369         * device/include/mcs51/c8051f000.h,
1370         * device/include/mcs51/c8051f018.h,
1371         * device/include/mcs51/c8051f020.h,
1372         * device/include/mcs51/c8051f040.h,
1373         * device/include/mcs51/c8051f060.h,
1374         * device/include/mcs51/c8051f120.h,
1375         * device/include/mcs51/c8051f300.h,
1376         * device/include/mcs51/c8051f310.h,
1377         * device/include/mcs51/c8051f320.h,
1378         * device/include/mcs51/c8051f330.h,
1379         * device/include/mcs51/c8051f350.h,
1380         * device/include/z180.h: Changed SDCC specific keywords to double
1381         underlined form.
1382
1383 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1384
1385         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1386         18F4455,
1387         * (pic16_assignConfigWordValue): disable testing of configuration
1388         register value with config mask,
1389         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1390         function with port->fun_prefix,
1391         * (genFunction): when generating a naked interrupt function never
1392         create an absolute segment placed in interrupt vector address, place
1393         the actual interrupt function at IVA instead, when an interrupt
1394         function is generated with unspecified interrupt then do not create
1395         the absolute section,
1396         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1397         code for generating a call to generic pointer get/put function with
1398         a call to function pic16_callGenericPointer(),
1399         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1400         the call to the generic pointer get/put functions with prefixing the
1401         function name with port->fun_prefix,
1402         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1403         * src/pic16/main.c (_process_pragma): prefix function with
1404         port->fun_prefix,
1405         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1406         calling assembler, old 18Fxxxx macro is deprecated,
1407         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1408         PC_ASMDIR in while condition,
1409         * (findInstruction): add PC_ASMDIR in while condition,
1410         * (buildCallTree): prefix main with port->fun_prefix,
1411         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1412         identifier for variable with banked access in instructions BTFSS,
1413         BTFSC, BCF, BSF, BTG
1414         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1415         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1416         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1417         perform optimization when enviroment variable NO_REG_OPT is set,
1418         * (insideLRBlock): NEW, return 1 if register is inside an
1419         INF_LOCALREGS block,
1420         * (RemoveRegFromLRBlock): remove a register that is completely
1421         eliminated by register optimization, but it is still left in local
1422         register store/restore in/from stack block,
1423         * (Remove2pcodes): after removing register, check to see if it
1424         should be removed from local register store/restore in/from stack
1425         block,
1426         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1427         DUMMY_READ_VOLATILE,
1428
1429         * device/include/pic16/adc.h: minor prototype modifications and
1430         update,
1431         * device/include/pic16/malloc.h: added GPL notice various
1432         modifications,
1433         * device/include/pic16/stdint.h: NEW, standard header for ints
1434         * device/include/pic16/delay.h: NEW, header for delay functions,
1435         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1436         delay1mtcy,
1437         * device/include/pic16/signal.h: NEW, header providing helper macros
1438         for implementing signal handlers,
1439         * device/include/pic16/stdio.h: added prototypes for functions,
1440         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1441         prototypes for stdin and stdout, added macro PUTCHAR to
1442         automatically implement putchar function prototype,
1443         * device/include/pic16/usart.h: modified and updated USART library,
1444         * device/lib/pic16/libio/adc/,
1445         * device/lib/pic16/libio/i2c: some modifications to improve library
1446         performance,
1447         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1448         family of functions,
1449         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1450         family of functions and other sources,
1451         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1452         of the PIC18Fxx[28] devices,
1453         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1454         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1455         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1456         _do_cinit function, because the previous failed when local variables
1457         where not placed in the same memory bank,
1458         * device/lib/pic16/libsdcc/char/: various modifications to improve
1459         library performance,
1460         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1461         information on the new functions of the c library and more...
1462
1463 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1464
1465         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1466
1467 2005-03-26 Raphael Neider <rneider AT web.de>
1468
1469         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1470           if condition == CARRY)
1471         * (genCmp): adapted to new genSkipc semantics
1472         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1473           on rIfx (genCmp was broken)
1474
1475 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1476
1477         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1478         * src/z80/main.c (_keywords[]),
1479         * src/SDCCglobal.h (struct options),
1480         * src/SDCC.y,
1481         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1482         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1483         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1484         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1485         always available in leading double underscore form. The C99 support is
1486         mostly missing, but it's a start.
1487         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1488         reserved identifier "__data".
1489
1490 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1491
1492         * src/mcs51/peeph.def: fixed bug 1170013
1493
1494 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1495
1496         * device/include/mcs51reg.h: fixed bug 842007
1497
1498 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1499
1500         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1501         last time.
1502
1503 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1504
1505         * src/port.h (struct PORT),
1506         * src/avr/ralloc.c (avr_assignRegisters),
1507         * src/avr/main.c,
1508         * src/ds390/ralloc.c (ds390_assignRegisters),
1509         * src/ds390/main.c,
1510         * src/hc08/ralloc.c (hc08_assignRegisters),
1511         * src/hc08/main.c,
1512         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1513         * src/mcs51/main.c,
1514         * src/pic/ralloc.c (pic14_assignRegisters),
1515         * src/pic/main.c,
1516         * src/pic16/ralloc.c (pic16_assignRegisters),
1517         * src/pic16/main.c,
1518         * src/xa51/ralloc.c (xa51_assignRegisters),
1519         * src/xa51/main.c,
1520         * src/z80/ralloc.c (z80_assignRegisters),
1521         * src/z80/ralloc.h,
1522         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1523         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1524         * src/SDCCcse.h,
1525         * src/SDCCdflow.c (computeDataFlow),
1526         * src/SDCCdflow.h,
1527         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1528         * src/SDCCloop.h,
1529         * src/SDCCcflow.c (*),
1530         * src/SDCCcflow.h,
1531         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1532         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1533         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1534         immedDom() returning wrong block; probably fixes bug #1160833)
1535
1536 2005-03-20 Borut Razem <borut.razem AT siol.net>
1537
1538         * support/scripts/inc2h.pl: WIN32 port
1539
1540 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1541
1542         * device/lib/makefile.in: added abs.c and labs.c
1543
1544 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1545
1546         * device/include/stdint.h: added
1547         * device/lib/abs.c: added
1548         * device/lib/labs.c: added
1549         * device/include/stdlib.h: added abs() and labs() prototypes
1550         * device/lib/libsdcc.lib: added abs and labs
1551         * device/include/float.h,
1552         * device/lib/_fsmul.c,
1553         * device/lib/printf_fast.c,
1554         * device/lib/printf_tiny.c: updated comments
1555
1556 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1557
1558         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1559         bug #1164313
1560
1561 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1562
1563         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1564         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1565
1566 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1567
1568         * device/lib/printf_large.c: removed inline assembly for portability and
1569           readability. Use printf_fast if speed or size are more important.
1570         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1571         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1572
1573 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1574
1575         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1576         prevent compiler warning
1577
1578 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1579
1580         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1581         moved to level 0 and declared as static. Also they are explicit
1582         placed in access bank. This was necessery because some times they
1583         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1584         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1585         optimizations. Currently only compare to unsigned char is implemented,
1586         * src/pic16/gen.c: added fReturnIdx array,
1587         * (struct resolvedIfx) is moved to gen.h and made public,
1588         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1589         * (aopForSym): added an optimization to directly store in stack of
1590         the operand of a SEND iCode,
1591         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1592         but as registers instead (AOP_REG) using the fReturnIdx array,
1593         * (pic16_freeAsmop): remove the freed register from the
1594         _G.sregsAlloc field,
1595         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1596         a compare of 'WREG',
1597         * (pic16_popGetTempRegCond): changed function prototype, now
1598         function takes also a bitVector argument v which holds the current
1599         set of registers that are allocated for stack access by aopForSym,
1600         registers allocated in aopForSym for accessing stack symbols are not
1601         any more part of the functions usedRegs field,
1602         * (genCall): some times aopOp is called for a stack variable to be
1603         send, aopForSym might perform the push, if this is true make sure
1604         that genCall doesn't push the variable twice by testing _G.resDirect,
1605         * (genFunction): changed testing for unspecified interrupt number
1606         from 256 to INTNO_UNSPEC,
1607         * modified selection scheme of frame pointer generation. Previously
1608         if function did use local registers a frame pointer was generated,
1609         now a frame pointer is generated only if function has arguments
1610         (that need PLUSW2 register access), or has stack arguments, or the
1611         compiler is not instructed to omit the frame pointer,
1612         * (genEndFunction): before restoring local registers that were saved
1613         in the function preamble, also restore the registers that *might*
1614         have been allocated for stack access,
1615         * (genRet): removed some old comments,
1616         * (genCmp, the active (RN's) version): added a call to the
1617         pic16_genCmp_special function to perform the compare with a more
1618         robust and optimized way,
1619         * (genInline): a feature has been added in inline code generation,
1620         which allows a wildcard variable substitution when writing inline
1621         assembly. Code is incomplete and experimental therefore undocumented,
1622         * (genCast): changed order of aopOp for result and right to allow
1623         aopForSym to directly load the result if possible,
1624         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1625         perform an optimized compare on some selected special occasions,
1626         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1627         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1628         generate an IVT any more,
1629         * src/pic16/main.c (pic16_optionsTable): added command line option
1630         --optimize-cmp,
1631         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1632         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1633         macros,
1634         * src/pic16/NOTES: Raphael Neider added in list of active developers
1635         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1636         jumptable_end to prevent bug #,
1637         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1638         inCond and outCond fields,
1639         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1640         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1641         turn off register spilling,
1642         * (packRegsForOneUse): synced with other ports' versions although it
1643         is not used currently,
1644         * (pic16_packRegisters): added an optimization while reading
1645         structure bitfields, some registers may be saved (malloc code is
1646         decreased by 80 bytes)
1647
1648 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1649
1650         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1651         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1652         this can be optimized more?
1653
1654 2005-03-10 Raphael Neider <rneider AT web.de>
1655
1656         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1657           genNearPointerGet): (hopefully) fixed access to bitfields via
1658           pointers (p->bitN = x; and x = p->bitN; failed)
1659
1660 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1661
1662         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1663
1664 2005-03-09 Raphael Neider <rneider AT web.de>
1665
1666         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1667
1668 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1669
1670         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1671         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1672           (regTypeNum): set REG_BIT type if necessary
1673         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1674         * support/regression/tests/critical.c: check bug 1144613
1675
1676 2005-03-02 Raphael Neider <rneider AT web.de>
1677
1678         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1679
1680 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1681
1682         * src/avr/ralloc.c (serialRegAssign),
1683         * src/ds390/ralloc.c (serialRegAssign),
1684         * src/hc08/ralloc.c (serialRegAssign),
1685         * src/mcs51/ralloc.c (serialRegAssign),
1686         * src/pic/ralloc.c (serialRegAssign),
1687         * src/pic16/ralloc.c (serialRegAssign),
1688         * src/xa51/ralloc.c (serialRegAssign),
1689         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1690
1691 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1692
1693         * src/SDCCast.c (decorateType): fixed bug 1124787
1694
1695 2005-02-20 Hubert Sack <sack AT digiplan.de>
1696         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1697
1698         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1699         patch #1121755
1700
1701 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1702
1703         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1704         to keep the correct label reference count when adding/removing references
1705         to labels. A peephole file using this is appended to patch #1144962.
1706
1707 2005-02-14 Raphael Neider <rneider AT web.de>
1708
1709         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1710         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1711         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1712           retrievals of result operand's value on assignment
1713
1714 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1715
1716         * device/include/pic16/string.h: modified prototype for memccpy()
1717         to memccpy(void *, void *, char, size_t)
1718         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1719         check whether to omit frame pointer or not,
1720         * (genInline): convert all occurences of "\n" to LF in inline
1721         assembler blocks, this helps formatting the inline text,
1722         * (pic16_loadFSR0): modified prototype,
1723         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1724         removed some 8051 legacy code,
1725         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1726         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1727         before allocating temporary registers in functions,
1728
1729 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1730
1731         * support/regression/tests/bitvars.c: corrected the "fix"
1732
1733 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1734
1735         * support/regression/tests/bitvars.c,
1736         * support/regression/tests/bitwise.c,
1737         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1738
1739 2005-02-10 Raphael Neider <rneider AT web.de>
1740
1741         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1742           different size for Alpha
1743         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1744
1745 2005-02-09 Raphael Neider <rneider AT web.de>
1746
1747         * src/SDCC.lex(doPragma) : save and restore warning options as well
1748           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1749         * have #pragma less_pedantic set the errorlevel to WARNING
1750           (fixes #1117001)
1751         * (cloneOptimize) : fixed wrong malloc's size
1752         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1753           facilitate correct handling of #pragma (save|restore)
1754
1755 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1756
1757         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1758
1759 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1760
1761         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1762
1763 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1764
1765         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1766
1767 2005-02-02 Raphael Neider <rneider AT web.de>
1768
1769         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1770         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1771         * (pic16_storeForReturn): fixed to allow returning function pointers
1772         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1773         * device/include/pic16/{stddef.h,stdbool.h}: added
1774
1775 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1776
1777         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1778
1779 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1780
1781         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1782         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1783          appeared to be required
1784
1785 2005-01-31 Borut Razem <borut.razem AT siol.net>
1786
1787         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1788           include/mcs51 and include/z80 directories to the package
1789
1790 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1791
1792         * src/hc08/gen.c (genFunction): fixed bug #1112752
1793
1794 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1795
1796         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1797
1798 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1799
1800         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1801
1802 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1803
1804         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1805
1806 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1807
1808         * device/include/c8051fxxx.h: removed these 6 files
1809         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1810
1811 2005-01-26 Raphael Neider <rneider AT web.de>
1812
1813         * src/pic16/gen.c (genAssign): fixed assignment from longs
1814           in codespace (were cut to three bytes)
1815         * (genDummyRead): implemented (except for CODESPACE...),
1816           fixed bug #1108575
1817         * src/pic16/glue.c (emitStatistics): beautified
1818         * device/lib/pic16/libm/Makefile: added include path
1819
1820 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1821
1822         * src/z80/gen.c (aopPut): fixed bug #1103902
1823
1824 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1825
1826         * device/lib/expf.c: fixed bug #1095792
1827
1828 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1829
1830         * device/lib/pic16/libm: added Math library sources
1831
1832 2005-01-24 Raphael Neider <rneider AT web.de>
1833
1834         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1835           to enable upcast to pCodeOpReg2 (there is no type tag to
1836           differenciate the two and pic16_popGet2p cast into PCOR2)
1837         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1838           (sizeof(sectNames) changed to sizeof(sectName))
1839           Both patches fix segfaults under MinGW.
1840
1841 2005-01-23 Raphael Neider <rneider AT web.de>
1842
1843         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1844           Safe_[mc]?alloc()'ed variables
1845         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1846           of (byte sized) temporaries (assign them to WREG for now)
1847         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1848           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1849           this might fix SIGSEGVs on MinGW...
1850         * src/SDCCopt.c (killDeadCode): restored original behaviour
1851           (volatile operands might get thrown away though)
1852
1853 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1854
1855         * src/pic16/gen.c: fixed bug #1106975,
1856         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1857         pointer update, INTCON is saved, global interrupts are disabled and
1858         restored after updateing TOS.
1859         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1860         * added function attribute 'shadowregs' to take advantage of shadow
1861         registers,
1862         * added function attribute 'wparam' as an alternative to the wparam
1863         pragma,
1864         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1865         user declares a non-ISR function as 'shadowregs',
1866         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1867
1868 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1869
1870         * .version: bumped version number to 2.4.8
1871         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1872         pic16 port,
1873         * device/lib/pic16/libio/i2c/: I2C module support library,
1874         * device/include/pic16/i2c.h: I2C support library header,
1875         * device/lib/pic16/libc/stdio/: standard IO support sources,
1876         * (printf_small.c): printf_small() source, supports float print,
1877         * (printf_tiny.c): printf_tiny() source, does not support floats,
1878         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1879         enable global optimizations for entire library source, other
1880         Makefiles in the source tree are also modified to reflect this,
1881         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1882         function,
1883         * doc/sdccman.lyx: updated to reflect new changes,
1884         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1885         sym->onStack if-case,
1886         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1887         sbit, idata, _idata, xdata, _xdata,
1888         * added pragma library, to link an external library, (see doc),
1889         * removed command line options, --pomit-config-words, --pomit-ivt,
1890         --pleave-reset-vector,
1891         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1892         when calling assembler to reflect memory model used, also define
1893         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1894         reflect stack model used,
1895         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1896         on stack return NULL,
1897
1898 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1899
1900         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1901           of the operands is volatile. Fixes #1020220
1902
1903 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1904
1905         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1906         * (OptimizeRegUsage): make sure that there is really no other flow where
1907           the first pCode is used
1908
1909 2005-01-22 Raphael Neider <rneider AT web.de>
1910
1911         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1912           to fix #1106967 (pCode->seq are not set up correctly)
1913
1914 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1915
1916         * src/SDCCglue.c (glue): make sure code area is declared before the
1917         static initialization area.
1918
1919 2005-01-21 Raphael Neider <rneider AT web.de>
1920
1921         * device/lib/Makefile.in: fixed test for pic16 install dir
1922         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1923           optimizations
1924         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1925           added --optimize-goto compiler switch and pragma wparam documentation
1926         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1927         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1928           and PRODH closing bug #1071770 (peephole optimizer)
1929
1930 2005-01-19 Raphael Neider <rneider AT web.de>
1931
1932         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1933           cmdLine buffers (used when calling sdcpp...) are large enough
1934           (MAX_PATH=256 truncates arguments leading to system halts when
1935           used in MinGW...)
1936         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1937         * (genUminus): rewritten to for efficiency
1938         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1939           used uninitialized in some cases)
1940         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1941           copy the third byte from the int -- now assumes 0x80 (data memory)
1942         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1943           operands (genAddLit expects the iCode's operands to swapped as
1944           well), fixed leftover bytes (crashed for short left operands)
1945         * (pic16_genMinusDec): performance improvements, removed false
1946           PIC14 emitSKPNCs
1947         * (pic16_genMinus): fixed to cope with differently sized operands
1948         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1949           for --obanksel > 1
1950         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1951         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1952           new banksel optimization
1953         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1954           analysis for temporary registers (segfaults...)
1955         * src/pic16/peeph.def: added rule
1956
1957 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1958
1959         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1960         which converts a float number to its ASCII representation
1961         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1962         functions to convert the fractional and integer part of a float to ASCII,
1963         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1964         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1965         ram
1966         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1967         _STATMEM macros,
1968         * device/include/pic16/adc.h: added GPL info,
1969         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1970         a pCodeOp as tested operand,
1971         * (genNearPointerGet): optimized bit testing, does not use
1972         intermediate register for bit value, test directly instead with
1973         BTFSS, BTFSC, works only for single bits,
1974         * (genpic16Code): dump the name of the iCode in the asm,
1975         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1976         renamed to pic16_decodeOp,
1977         * (serialRegAssign): do not allocate a temporary register for iCode
1978         sequences that test a single bit for 1/0
1979
1980 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1981
1982         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1983         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1984         access stack and frame pointers. They are initially assigned to
1985         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1986         accessing SFRs. Updated all occurences of modification of stack or
1987         frame pointer in gen.c and pcode.c,
1988         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1989         assigning of a literal value to pointers,
1990         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1991         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1992         selected
1993
1994 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1995
1996         * doc/sdccman.lyx: update documentation about stack pragma, added
1997         some info for stack memory models
1998
1999 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2000
2001         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2002
2003 2005-01-08 Raphael Neider <rneider AT web.de>
2004
2005         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2006           udata sections to fix bug #1097823
2007
2008 2005-01-05 Raphael Neider <rneider AT web.de>
2009
2010         * src/pic16/gen.c (genGenericShift): added handling of differently
2011           sized left operand and result
2012
2013 2005-01-04 Raphael Neider <rneider AT web.de>
2014
2015         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2016         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2017           to hold the condition bit)
2018         * added new version of genCmp (old code available via #define)
2019         * added new version of genShiftLeft/genShiftRight in a generic
2020           way, now supports shifting by negative values
2021         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2022           shiftCount (expected by genGenericShift)
2023         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2024         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2025           dump
2026         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2027           is an invalid literal too...)
2028
2029 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2030
2031         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2032         from Raphael Neider,
2033         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2034         for 8-bit literals. This fixes some literal operands which are sign
2035         extended to 16-bits ints when instruction needs only 8-bits.
2036
2037 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2038
2039         * device/lib/logf.c: added mcs51 assembly version
2040         * device/lib/expf.c: added mcs51 assembly version
2041         * device/lib/_logexpf.c: new shared asm code for expf and logf
2042         * device/include/math.h: add defines for assembly math library
2043         * device/lib/Makefile.in: build new _logexpf.c
2044         * device/lib/libfloat.lib: use new _logexpf.c
2045
2046 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2047
2048         * src/pic/device.c
2049         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2050           device types which have less than 0x7f registers.
2051
2052 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2053
2054         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2055
2056 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2057
2058         * device/lib/printf_fast.c: only build on supported arch.
2059         * device/lib/printf_tiny.c: only build on supported arch.
2060         * device/lib/printf_fast_f.c: only build if asm float lib
2061         * device/lib/_fsget1arg.c: only build if asm float lib
2062         * device/lib/_fsget2args.c: only build if asm float lib
2063         * device/lib/_fsnormalize.c: only build if asm float lib
2064         * device/lib/_fsreturnval.c: only build if asm float lib
2065         * device/lib/_fsrshift.c: only build if asm float lib
2066         * device/lib/_fsswapargs.c: only build if asm float lib
2067         * device/include/stdio.h: don't provide print_fast,
2068           print_fast_f, print_tiny prototypes if --xstack used
2069
2070 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2071
2072         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2073         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2074           to the SOURCES
2075
2076 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2077
2078         * device/lib/printf_fast_f.c: same as printf_fast, but
2079           with floating point enabled
2080         * device/lib/printf_fast.c: minor tweaks
2081         * device/include/stdio.h: add printf_fast_f
2082
2083 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2084
2085         * src/SDCCmain.c: make --float-reent default for mcs51
2086         * device/lib/_fsadd.c: added mcs51 assembly version
2087         * device/lib/_fssub.c: added mcs51 assembly version
2088         * device/lib/_fsmul.c: added mcs51 assembly version
2089         * device/lib/_fsdiv.c: added mcs51 assembly version
2090         * device/lib/_fseq.c: added mcs51 assembly version
2091         * device/lib/_fsneq.c: added mcs51 assembly version
2092         * device/lib/_fsgt.c: added mcs51 assembly version
2093         * device/lib/_fslt.c: added mcs51 assembly version
2094         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2095         * device/lib/Makefile.in: add _fscmp to build
2096         * device/lib/libfloat.lib: add _fscmp to build
2097
2098 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2099
2100         * device/lib/_fs2slong.c: added mcs51 assembly version
2101         * device/lib/_fs2sint.c: added mcs51 assembly version
2102         * device/lib/_fs2schar.c: added mcs51 assembly version
2103         * device/lib/_fs2ulong.c: added mcs51 assembly version
2104         * device/lib/_fs2uint.c: added mcs51 assembly version
2105         * device/lib/_fs2uchar.c: added mcs51 assembly version
2106         * device/lib/_slong2fs.c: added mcs51 assembly version
2107         * device/lib/_sint2fs.c: added mcs51 assembly version
2108         * device/lib/_schar2fs.c: added mcs51 assembly version
2109         * device/lib/_ulong2fs.c: added mcs51 assembly version
2110         * device/lib/_uint2fs.c: added mcs51 assembly version
2111         * device/lib/_uchar2fs.c: added mcs51 assembly version
2112         * device/include/float.h: added #define to select asm vs c
2113
2114 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2115
2116         * device/lib/printf_fast.c: improvements to float output
2117         * device/include/float.h: add defines for assembly float library
2118         * device/lib/_fsget1arg.c: receive 1 float arg
2119         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2120         * device/lib/_fsnormalize.c: normalize a float
2121         * device/lib/_fsreturnval.c: return float, various helper routines
2122         * device/lib/_fsrshift.c: right shift a float's mantissa
2123         * device/lib/_fsswapargs.c: swap 2 floats
2124         * device/lib/Makefile.in: build these 6 new files for mcs51
2125         * device/lib/libfloat.lib: add these 6 files to the library
2126
2127 2004-12-26 Borut Razem <borut.razem AT siol.net>
2128
2129         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2130           built by gcc 3.4.2
2131
2132 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2133
2134         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2135           and fully reentrant and register bank neutral.
2136         * device/lib/printf_fast.c: added float (not enabled by default),
2137           added compact/slower integer (also not enabled by default),
2138           improved size/speed of fast integer code, other minor changes
2139         * device/include/stdio.h, device/lib/Makefile.in,
2140           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2141
2142 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2143
2144         * src/pic16/pcode.c: declaring variables other than at the start of a
2145           block is not supported in C by VC6.
2146
2147 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2148
2149         * applied a previous patch from Raphael Neider that wasn't included
2150         in the previous commits, which fixes infinite loops within jumptable
2151         improvements,
2152         * made some fixes that previous patches introduced
2153
2154 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2155
2156         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2157         that fixes an issue with AOP_PCODE asmop's offset,
2158         * (pic16_popCopyReg): update instance field too,
2159         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2160         function of pic port,
2161         * (genCmp, genAnd, genAssign),
2162         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2163
2164 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2165
2166         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2167         variables initial values to idata section,
2168         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2169         variables in some functions. This utilizes parmBytes field of iCode
2170         structure to hold the offset of the variable in stack. (might be
2171         able to use the stack field too?)
2172         * applied patch from Raphael Neider # ### , # ###
2173         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2174         variable initial values in idata section,
2175         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2176         for static variables with initial value
2177         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2178         applied fix in while loop from Raphael Neider.
2179
2180 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2181
2182         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2183         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2184         * src/ds390/ralloc.c (serialRegAssign): spill bits
2185         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2186         * support/Util/SDCCerr.c,
2187         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2188         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2189         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2190
2191 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2192
2193         * device/include/sdcc-lib.h: inserted LGPL, added includes
2194           asm/ds390/features.h and asm/mcs51/features.h
2195         * device/include/asm/default/features.h,
2196         * device/include/asm/gbz80/features.h,
2197         * device/include/asm/z80/features.h: added empty _AUTOMEM
2198           and _STATMEM
2199         * device/include/asm/ds390/features.h,
2200         * device/include/asm/mcs51/features.h: added files with defines for
2201           _AUTOMEM and _STATMEM indicating automatic and static storage class
2202         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2203         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2204         * src/SDCCicode.c (geniCodeCast),
2205         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2206         * src/SDCCloop.c (loopInduction): removed unused variable lr
2207         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2208           to convertToFcall to include char modulo (RFE 1065037), added check
2209           if left operand is unsigned and use abs of literal value
2210         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2211           as it doesn't work after conversion from peephole.def to peephole.rul
2212         * src/mcs51/gen.c (toBoolean): added check for size,
2213           (genModOneByte): optimized code for signed char modulo a literal
2214           power of 2 (thanks to Hubert Sack),
2215           (genRRC): removed unnecessary "clr c",
2216           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2217         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2218           jump optimization,
2219           swapped rules 256.c and 256.d,
2220           extended 256.d by using new multiple checks (thanks Erik),
2221           added rules 256.e and 256.f,
2222           updated rule 261.a and 261.b to new generated code
2223         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2224
2225 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2226
2227         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2228           induction related bugs, including first part of bug #1074377
2229
2230 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2231
2232         * applied patch from bug-report #1076292,
2233         * applied patches for genAnd and Goto-optimizations for Raphael
2234         Neider,
2235         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2236         dump a less iCode information,
2237         * src/pic16/device.h (pic16_options_t): added field debgen,
2238         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2239         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2240         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2241         puclic,
2242         * (various functions): added macros FENTRY and FENTRY2 to functions,
2243         to emit function prologue,
2244         * (various functions): fixed indentation,
2245         * (genNearPointerGet): fixed loading of FSR0,
2246         * (genPackBits): applied patch from Raphael Neider to fix updating
2247         of FSR0 and touching only the modified bits,
2248         * src/pic16/genarith.c (various functions): added macros FENTRY to
2249         emit function prologue in comments,
2250         * src/pic16/pcode.h: added functions debugf2, debugf3,
2251         * src/pic16/ralloc.c: partial fix for packForPush caused
2252         segmentation fault,
2253
2254 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2255
2256         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2257           <stsp AT users.sourceforge.net> with reversed byte order
2258         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2259
2260 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2261
2262         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2263           bug #1074377
2264         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2265         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2266
2267 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2268
2269         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2270
2271 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2272
2273         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2274           conditions,
2275           (setFromConditionArgs): friendly operand parser for peephole rules,
2276           (operandBaseName, operandsNotRelated): new peephole condition
2277           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2278           architecture specific register naming into account, handles n-way
2279           comparisons, and supports quoted literals
2280         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2281
2282 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2283
2284         * src/mcs51/peeph.def: fixed bug #1076940
2285
2286 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2287
2288         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2289
2290 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2291
2292         Adding support for replacing ljmps with sjmps in jumptables
2293         generated for switch statements. For now you need to set the
2294         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2295         Now 4 algorithms for mcs51 jumptable generation are used:
2296         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2297         addresses loaded pc-relative for up to 112 cases and stack-pushing
2298         target addresses loaded with offset from dptr for up to 256 cases.
2299
2300         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2301         * src/mcs51/main.c: adapted constants for switch table generation
2302         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2303
2304 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2305
2306         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2307         * support/regression/tests/bug1057979.c: added test for bug 1073386
2308
2309 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2310
2311         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2312         compilers
2313
2314 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2315
2316         * src/pic16/device.h,
2317         * src/pic16/genarith.c,
2318         * src/pic16/glue.c,
2319         * src/pic16/main.c,
2320         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2321
2322 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2323
2324         Large cummulative patch for pic16 port.
2325         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2326         to call when a stack overflow occurs,
2327         * (malloc.h): added CVS Id tag,
2328         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2329         variable,
2330         * added libc directory. The current version of LibC contains string
2331         functions, ctype functions and macros and some functions of the
2332         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2333         be extensively tested in the future. Standard disclaimer here.
2334         Library is not automatically build yet. But one can build it by
2335         invoking 'make' inside the libc directory.
2336         * added ADC library under libio. Preliminary version yet.
2337
2338         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2339         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2340         aopForRemat() now and not by pic16_aopOp(),
2341         * (pic16_popGetTempReg): removed warning messgae when allocating
2342         temporary registers, its a buggy feature and will be removed,
2343         * (pic16_popGet): set register instance field in AOP_CRY,
2344         * (pic16_outBitC): fixed for results in size greater than 1,
2345         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2346         * (pic16_storeForReturn): optimized return of 0,
2347         * (genCmp): experimental code for new genCmp which uses PIC18's
2348         special compare&skip instructions. Initial tests fail some times
2349         with variables grater than 1 byte in size, so new code is disabled,
2350         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2351         a single bit,
2352         * (genCast): began a fix to optimize the casting of a bit to another
2353         bit, now assigning a bitfield to another bitfield will fail, sorry,
2354         * src/pic16/main.c: disabled the use of lr-support feature,
2355         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2356         * added some function prototypes, added function _debugf prototype,
2357         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2358         bits with offset (case PO_GPR_BIT),
2359         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2360         command line,
2361         * (isBankInstruction): modified to return 0 for no banking instruction,
2362         and 1 for banking instruction,
2363         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2364         caused stop processing pCodes after a inline assembly block,
2365         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2366         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2367         registers when it shouldn't,
2368         * src/pic16/ralloc.c (allocReg): add preliminary support for
2369         supporting a limited set of temporary registers,
2370
2371 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2372
2373         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2374           genDataPointerSet): ensure assignments always copy in MSB to LSB
2375           order,
2376           (loadRegFromAop): recognize CLRH optimization,
2377           (genFunction): optimize RECEIVE iCodes in reentrant functions
2378
2379 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2380
2381         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2382           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2383           selected.
2384         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2385         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2386           contiguous with data
2387
2388 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2389
2390         * device/lib/_gptrget.c (_gptrget),
2391         * device/lib/_gptrgetc.c (_gptrgetc),
2392         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2393           instead of sjmp to ret
2394         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2395           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2396
2397 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2398
2399         * .version: bumped version to 2.4.7
2400         * device/lib/_gptrget.c (_gptrget): is now _naked
2401         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2402         * device/lib/_gptrput.c (_gptrput): is now _naked
2403         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2404           (createFunction): fixed xstack
2405         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2406         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2407           or bit either,
2408           (geniCodeCritical): store original interrupt state in an iTemp bit
2409           var unless stack-auto
2410         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2411         * src/SDCCmain.c (setIncludePath): added include/target to search path
2412         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2413         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2414           prototype,
2415           (processFuncArgs): put bit vars in bit area
2416         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2417           unsaveRBank): fixed xstack,
2418           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2419           (genFunction, genEndFunction): fixed xstack,
2420           (genAssign): optimization don't walk backwards through mem
2421         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2422         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2423         * support/regression/Makefile: also make library (for stack-auto) when
2424           making "all" and added "test-mcs51-xstack-auto"
2425         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2426         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2427         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2428         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2429         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2430           make-library by MAKE_LIBRARY
2431         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2432           regression tests for xstack
2433         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2434         * support/regression/tests/critical.c: test for critical on mcs51
2435
2436 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2437
2438         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2439           built version of sdcc instead of installed version
2440
2441 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2442
2443         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2444         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2445           vprintf.c now
2446         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2447         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2448           WARNING: remove device/lib/build/z80/printf.o by hand when
2449           updating from previous build!
2450         * device/lib/z80/printf.c: updated comment
2451         * support/regression/tests/bug1057979.c: test all ports now
2452         * support/regression/tests/bug1065458.c: file added
2453
2454 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2455
2456         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2457           *_start and *_end symbols for static functions
2458
2459 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2460
2461         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2462           and search crt0.o in all library paths,
2463           (setIncludePath): proper handling of --nostdinc,
2464           (setLibPath): proper handling of --nostdlib
2465         * support/regression/Makefile,
2466         * support/regression/ports/ds390/spec.mk,
2467         * support/regression/ports/gbz80/spec.mk,
2468         * support/regression/ports/hc08/spec.mk,
2469         * support/regression/ports/mcs51/spec.mk,
2470         * support/regression/ports/mcs51-large/spec.mk,
2471         * support/regression/ports/mcs51-stack-auto/spec.mk,
2472         * support/regression/ports/z80/spec.mk: use include and lib files from
2473           built version of sdcc instead of installed version
2474         * doc/sdccman.lyx: fixed typo in --nostdinc
2475
2476 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2477
2478         * src/pic/pcode.c,
2479         * src/pic/device.c,
2480         * src/pic/ralloc.c,
2481         * src/pic/gen.c : added support to generate code for struct bit fields.
2482
2483 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2484
2485         * as/xa51/xa_version.h,
2486         * device/include/errno.h,
2487         * device/include/regc515c.h,
2488         * device/lib/_itoa.c,
2489         * device/lib/_ltoa.c,
2490         * device/lib/ser_ir_cts_rts.c,
2491         * sim/ucsim/xa.src/glob.cc,
2492         * sim/ucsim/xa.src/inst_gen.cc,
2493         * sim/ucsim/xa.src/xa_bit.cc,
2494         * sim/ucsim/xa.src/xa_sfr.cc,
2495         * sim/ucsim/z80.src/inst_dd.cc,
2496         * sim/ucsim/z80.src/inst_fdcb.cc,
2497         * support/scripts/keil2sdcc.pl,
2498         * src/pic16/pic16.dsp,
2499         * src/pic16/pic16a.dsp: corrected cvs line endings
2500         * device/lib/printf_large.c: fixed bug 1057979
2501         * src/pic16/gen.c: fixed non-C standard code
2502         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2503         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2504         * support/regression/ports/mcs51/support.c: reload T1 asap
2505         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2506           pdata use and clear idata startup behaviour
2507         * support/regression/tests/bug1057979.c: added
2508
2509 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2510
2511         * device/examples/ds390/ow390/ad26.h,
2512         * device/examples/ds390/ow390/cnt1d.h,
2513         * device/examples/ds390/ow390/crcutil.c,
2514         * device/examples/ds390/ow390/ownet.h,
2515         * device/examples/ds390/ow390/owsesu.c,
2516         * device/examples/ds390/ow390/swt12.h,
2517         * device/examples/ds390/ow390/swtoper.c,
2518         * device/examples/ds390/ow390/temp10.h,
2519         * device/examples/ds390/ow390/thermodl.c,
2520         * device/examples/ds390/tinitalk/tinitalk.dsp,
2521         * device/examples/ds390/tinitalk/tinitalk.dsw,
2522         * device/examples/mcs51/clock/hw.h,
2523         * device/examples/mcs51/simple2/go.bat,
2524         * device/examples/serialcomm/windows/serial.h,
2525         * device/examples/xa51/dummy.c,
2526         * device/examples/xa51/hello.c,
2527         * device/include/80c51xa.h,
2528         * device/include/at89x051.h: corrected cvs line endings
2529
2530 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2531
2532         * src/pic16/main.c (options): added command line --gstack, to trace
2533         stack over/under flows,
2534         * added pragma 'wparam' to allow passing first byte of function
2535         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2536         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2537         call to __gstack_test function and sets up the symbol as extern,
2538         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2539         * popaop): added call to pic16_testStackOverflow,
2540         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2541         wparamList list,
2542         * (genCall, genPcall): now all parameters are passed via stack
2543         except in functions that are pass to wparam pragma in which WREG is
2544         used too,
2545         * (genPcall): REENTRANT flag is checked to see if variable prototype
2546         contains reentrant keyword, don't call a non-reentrant function, via
2547         a reentrant function pointer or vice versa, functions are never
2548         passed via WREG,
2549         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2550         D.Winkler,
2551         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2552         SIGSEGV when accessing a NULL register stucture,
2553         * (pic16_printGPointerType): modified to handle UPPER modifier for
2554         function initializers, changed prototype of function to simpler one,
2555         * (pic16_printIvalFuncPtr): check to see if function is already
2556         added in externs list,
2557         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2558         optimized a move from W to SFR with a move to the same register
2559         later after a CALL,
2560         * device/lib/pic16/debug: NEW directory, contains debug features
2561         which are enabled when linking with libdebug.lib, currently command
2562         line option --gstack enables stack pointer tracing for over/under
2563         flow, corresponding sources are in debug/gstack
2564
2565 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2566
2567         * doc/sdccman.lyx: updated SDCC version,
2568         * (PIC16 port): update list of command line options,
2569         * src/pic16/device.h (structure pic16_options_t): added field gstack
2570         to enable stack overflow tracing on push/pops,
2571         * src/pic16/device.c (statistics structure): added statistics
2572         structure,
2573         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2574         pic16_dump_int_registers): increase statistics counters for each
2575         * variable which is encountered
2576         * (pic16_dump_usection): emit each .udata variable to its own udata
2577         section,
2578         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2579         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2580         parameters via stack, otherwise use old scheme,
2581         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2582         assembler output file,
2583         * src/pic16/main.c: added command line options --gstack to enable
2584         push/pop tracing for stack overflow,
2585         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2586         instructions): added size of each instruction,
2587         * (pic16_countInstruction): estimate size of instructions in
2588         the_pFile list, inline assembly blocks are not counted,
2589         * (pic16_FixRegisterBanking): trace previous register usage, when
2590         banksel optimizations is greater than 0, don't emit a redudant
2591         banksel directive,
2592
2593 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2594
2595         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2596         * src/pic16/ralloc.c : applied same fix for pic16.
2597         * src/pic/gen.c : tidied it up a little.
2598
2599 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2600
2601         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2602         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2603
2604 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2605
2606         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2607
2608 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2609
2610         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2611         non-reentrant function __modsint in the interrupt function (thus
2612         corrupting math operations during serial I/O)
2613         * device/lib/ser_ir.c: as above, changed buffersize
2614         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2615         256.c,d for zeroing
2616         * doc/Makefile: added option -t for rsync
2617
2618 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2619
2620         * src/SDCCast.h (struct ast),
2621         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2622
2623 2004-10-20 Borut Razem <borut.razem AT siol.net>
2624
2625         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2626         package
2627
2628 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2629
2630         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2631         makefile targets,
2632         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2633         support functions to replace long sequences of MOVFF's from access
2634         bank registers to stack and vice versa,
2635         * src/pic16/device.h: added new field opt_flags, where optimization
2636         flags can be set to enable certain features,
2637         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2638         * pBlock, (genFunction, genEndFunction): surroung loop for
2639         saving/loading used registers in stack with PC_INFO pCodes,
2640         INF_LREGS. Code in between can then be optimized by pCode optimizer
2641         to support function calls,
2642         * (genDataPointerSet): fixed bug which loaded float fields in
2643         structures with corrupt data,
2644         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2645         in a standard way debug info on stderr. Feature used for developing
2646         and debugging only,
2647         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2648         obsolete chunks of code,
2649         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2650         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2651         * pic16/src/pcode.c (pic16_newpCodeInfo,
2652         * (pic16_newpCodeOpLocalRegs),
2653         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2654         feature,
2655         * (pic16_pCodeConstString): printing of the initial value of a
2656         symbol as a comment is inhibited since parsing was already done by
2657         copyStr and output is corrupt,
2658         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2659
2660 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2661
2662         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2663
2664 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2665
2666         * as/mcs51/lkarea.c: removed old K&R style,
2667           (lnksect): changed check on boundary error,
2668           (lnksect2): changed check on boundary error,
2669           (lnksect2): extend XSTK to end of page if size = 1
2670         * as/mcs51/lkmain.c: removed old K&R style,
2671           (Areas51): create l_IRAM symbol
2672         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2673         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2674           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2675         * device/lib/_mullong.c: added version to be compiled with xstack
2676         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2677         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2678         * device/lib/mcs51/crtxstack.asm: fixed comment
2679         * src/SDCCglue.c: maxInterrupts defaults to 0,
2680           (emitMaps): added pdata,
2681           (createInterruptVect): (re)moved default,
2682           (glue): added pdata,
2683           (glue): moved __start__xstack to XSTK with default size 1
2684         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2685           and options.float_rent when options.stackAuto is set,
2686           (linkEdit): only write XDATA_NAME if provided on command line
2687         * src/SDCCmem.h,
2688         * src/SDCCmem.c: added pdata
2689         * src/port.h: added pdata_name to PORT
2690         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2691           (saveRegisters, unsaveRegisters): removed usage of B,
2692           (genMinus): fixed accumulator clash,
2693           (genJumpTab): added comment, this needs another look
2694         * src/mcs51/gen.c: added check for "B in use" paranoia,
2695           added pushB() and popB()
2696         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2697           chance
2698         * src/avr/main.c,
2699         * src/ds390/main.c,
2700         * src/hc08/main.c,
2701         * src/mcs51/main.c,
2702         * src/pic/main.c,
2703         * src/pic16/main.c,
2704         * src/xa51/main.c,
2705         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2706           added PSEG (PAG,XDATA) or NULL to port specifier
2707         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2708         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2709           (_mcs51_genInitStartup): removed __start__xstack equ,
2710           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2711         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2712         * src/z80/gen.c (_rleAppend): fixed warnings
2713         * support/regression/tests/zeropad.c: added pdata test
2714         * .version: bumped to 2.4.6
2715
2716 2004-10-17 Borut Razem <borut.razem AT siol.net>
2717
2718         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2719         as a part of nightly build
2720
2721 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2722
2723         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2724         WREG holds the first byte function parameters,
2725         * (aopForSym): take special case for symbols which are in FARSPACE
2726         but in CODESPACE too,
2727         * (assignResultValue): modified to take into account _G.useWreg,
2728         * (genCall): don't use wreg for parameter passing when function is
2729         declared as reentrant, too, added optimization INCF to stack
2730         pointer when stack parameter count is 1,
2731         * (genFunction, genEndFunction): refurnished and fixed to not using
2732         wreg for passing parameters when function has varargs or is
2733         reentrant, fixed bug with symbol name compare for generating
2734         functions in absolute address,
2735         * (pic16_storeForReturn): refurnished,
2736         * (genCmp): began writing a new version of the function, not ready
2737         yet, therefore it is disabled,
2738         * (genAssign): do not read code memory when assigning a function to
2739         a pointer function,
2740         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2741         array of characters, not pointer,
2742         * (pic16initialComments): in debug mode emit an .ident directive for
2743         the assembler,
2744         * (_process_pragma): emit a new warning type (internal to pic16)
2745         when setting stack to default length, emit a similar warning when
2746         placing a function at absolute address and address is not word aligned
2747         * (_pic16_parseOptions): added 'return TRUE' statement,
2748         * (_pic16_linkEdit): if compiling a source, then add the source's
2749         file object, first in the list of objects to link,
2750
2751 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2752
2753         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2754         * src/pic/main.c : removed VC warning.
2755         * src/pic/gen.c : changed comment.
2756
2757 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2758
2759         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2760         reference to a deprecated symbol _GPTRREG was causing failure to
2761         link. Thanks G. M. Gallant for the info.
2762
2763 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2764
2765         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2766         comments for Bugs item #954788.
2767
2768 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2769
2770         * src/pic16/device.c (pic16_dump_gsection,
2771         * pic16_groupRegistersInSection): handle symbols declared to be in
2772         access bank differently,
2773         * src/pic16/gen.c (struct _G): added field resDirect,
2774         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2775         send values read from stack directly to result and don't allocate
2776         temporary values,
2777         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2778         same registers,
2779         * (pic16_sameRegsOfs): NEW,
2780         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2781         free because they were not allocated from temporary pool,
2782         * pic16_popRegFromString): workaround to fix a problem with
2783         allocating variables twice or never,
2784         * (genGenPointerGet): using PRODL instead of FSR0H,
2785         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2786         instead of FSR0H,
2787         * (genAssign): take advantage of the _G.resDirect flag,
2788         * (genCast): around line 11844, use mov2f instead of directly
2789         MOVFF'ing between operands to account for literal values,
2790         * src/pic16/genutils.c: some new debug functions for gpsim have been
2791         added,
2792         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2793         float with integer part only,
2794         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2795         place variables in access bank
2796         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2797         updated sources to reflect recent changes in gen.c
2798
2799 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2800
2801         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2802         sources that searched for headers in installation path, now the
2803         device/include/pic16 is used,
2804         * src/pic16/glue.c (pic16glue),
2805         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2806         .line directives if not in debug mode, this suppresses assembler's
2807         warnings for ignored directives
2808
2809 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2810
2811         * src/port.h: made reset_regparms prototype void parameter explicit.
2812         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2813         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2814         * doc/sdccman.lyx: documented warning disabling and how to use
2815           printf_large to make it print floats.
2816         * device/include/stdbool.h: NEW
2817         * device/lib/_atof.c,
2818         * device/lib/_divuint.c,
2819         * device/lib/_divulong.c,
2820         * device/lib/expf.c,
2821         * device/lib/printf_large.c,
2822         * device/lib/sincosf.c,
2823         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2824         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2825           a completely reentrant lib.
2826
2827 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2828
2829         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2830         * device/include/pic16/stdio.h: fixed bug with colon
2831
2832 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2833
2834         * device/include/pic16/stdio.h,
2835         * device/include/pic16/stdlib.h,
2836         * device/include/pic16/math.h: NEW
2837         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2838         declared as _naked to reduce overhead
2839         * device/lib/Makefile.in (target port-specific-objects-pic16):
2840         changed * to *.* so to ignore the CVS directory,
2841         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2842         stacked variables back in stack,
2843         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2844         corruption
2845
2846 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2847
2848         * .version: bumped version number to 2.4.5
2849         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2850         * support/Util/SDCCerr.c (messages structure): added entry for
2851         W_POSSBUG2
2852
2853         Large cumulative patch for pic16 port and libraries.
2854         * device/include/pic16/sdcc-lib.h,
2855         * device/include/pic16/stdarg.h,
2856         * device/include/asm/pic16/features.h,
2857         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2858         * device/include/pic16/float.h: changes reentrant keyword with
2859         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2860         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2861         updated target build-libraries to include objects from gptr,
2862         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2863         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2864         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2865         all function headings,
2866         * src/SDCCmain.c: added global parameter userIncDirsSet,
2867         * (parseCmdLine): when option -I is encountered add directory to
2868         userIncDirsSet too,
2869         * src/version.awk: added space between control and long,
2870         * src/pic16/NOTES: added some notes for the port,
2871         * src/pic16/gen.c: added prototype for mov2fp function,
2872         * (fReturnpic16[]): properly named return value registers,
2873         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2874         * (aopForSym): added code to handle symbols with onStack flag set,
2875         symbols onStack are allocated PTRSIZE bytes,
2876         * (aopFreeAsmop): handles special case where asmops are stack objects,
2877         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2878         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2879         added argument lock to trace flaws in allocating temporary registers
2880         when developing port,
2881         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2882         * (pic16_popRegFromString): reenabled allocating a direct register
2883         from string,
2884         * (assignResultValue): various beautifications,
2885         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2886         referenced function argument,
2887         * (genIpush): reenabled to allow stacked arguments, handles only
2888         ic->parmPush iCodes,
2889         * (genCall, genPcall): major changes to allow for variable argument
2890         functions, fixed a bug with falsely restoring stack pointer after
2891         returning from call,
2892         * (genFunction): pending code for critical function,
2893         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2894         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2895         * (genNearPointerGet): fixed bug with indirect reading, was always
2896         reading from INDF0
2897         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2898         pointers,
2899         * (genAddrOf): rewrote code to take address of a stacked function parameter
2900         * (genCast): fixed casting to generic pointer type,
2901         * src/pic16/gen.h: added AOP_STA,
2902         * (struct asmop): added field stk,
2903         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2904         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2905         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2906         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2907         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2908         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2909         generic pointers,
2910         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2911         and library paths,
2912         * (pic16_port structure): generic pointer size is set to 3,
2913         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2914         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2915         compiler warning,
2916         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2917         operand is an iTemp,
2918
2919 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2920
2921         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2922         * debugger/mcs51/simi.c: addapt new syntax of s51
2923
2924 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2925
2926         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2927         * src/pic16/pcode.c: commented out some calls to free() in order to
2928         fix bug #989576,
2929
2930 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2931
2932         * src/SDCCicode.h,
2933         * src/SDCCicode.c (isiCodeInFunctionCall),
2934         * src/avr/ralloc.c (selectSpil),
2935         * src/pic/ralloc.c (selectSpil),
2936         * src/pic16/ralloc.c (selectSpil),
2937         * src/ds390/ralloc.c (selectSpil),
2938         * src/hc08/ralloc.c (selectSpil),
2939         * src/xa51/ralloc.c (selectSpil),
2940         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2941         stack in the middle of a function call sequence (fixes bug #1020268)
2942         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2943         costs associated with the minimum switch case.
2944
2945 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2946
2947         * src/SDCC.lex: fixed bug #1030549
2948
2949 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2950
2951         * src/SDCCcse.h (struct cseDef),
2952         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2953         over a function call if the CSE is derived from a symbol whose
2954         address has been taken (fixes bug #1029883)
2955         * support/regression/tests/bug-1029883: a new regression test for
2956         this bug
2957
2958 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2959
2960         * src/hc08/gen.c (emitinline): fixed bug #1029778
2961         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2962         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2963         and starts toward RFE #905167)
2964
2965 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2966
2967         * src/pic16/gen.c (mov2f): New function to move an operand to
2968         another without considering if it is a literal or a register,
2969         * (pic16_sameRegs): don't check if they are both AOP_REG,
2970         * (AccRsh): removed andmask=0 lines,
2971         * (genLeftShift): duplicated to be improved in future versions,
2972         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2973         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2974         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2975         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2976         * (insertBankSwitch): fixed inserting banksel directives algorithm
2977         for instructions that follow a skip instruction, this fixes a report
2978         for broken subtraction code generation,
2979         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2980         iCode is a left op, just in case result and right share the same
2981         registers
2982
2983 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2984
2985         * src/hc08/main.c,
2986         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2987         preservation of HX
2988         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2989         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2990         on 2004-09-12; it was buggy
2991
2992 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2993
2994         * src/SDCCsymt.h: removed RESULT_CHECK
2995         * src/SDCCast.c,
2996         * src/SDCCglue.c,
2997         * src/SDCCval.c,
2998         * src/pic/glue.c,
2999         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3000
3001 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3002
3003         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3004         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3005         configuration values no more rejected by compiler, they are assigned
3006         to configuration registers with a warning message instead,
3007         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3008         the for-loop so last conf register is emitted too,
3009         * (_pic16_initPaths): link library libsdcc.lib by default,
3010         * (_hasNativeMulFor): modified test for multiplication according to
3011         Raphael Neider's remarks. Integer multiplication is also done with
3012         support functions,
3013         * device/include/pic16/pic18fregs.h: corrected type error in while
3014         testing and including 18f6720 header file
3015
3016 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3017
3018         * src/pic16/device.h (pic16_options): removed field use_crt,
3019         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3020         until an optimization to handle single bits is added,
3021         * (pic16_loadFSR0): moved before genUnpackBits,
3022         * (genAnd): some white lines removed,
3023         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3024         leave_reset flags in pic16_options when using crt modules,
3025
3026 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3027
3028         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3029           for bugs 898889 & 979599. Also used some safer print instructions.
3030
3031 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3032
3033         * src/pic16/device.h (pic16_options_t): added field use_crt,
3034         crt_name, no_crt,
3035         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3036         catch a probable future bug,
3037         * src/pic16/gen.c: aopIdx function commented out,
3038         * (genAssign): commented out old code which used aopIdx,
3039         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3040         code, added if conditionals to take into account the --use-crt
3041         command line options,
3042         * src/pic16/main.c (pic16_optionsTable): added new command line
3043         options, --use-crt= and --no-crt,
3044         * (_pic16_linkEdit): now the proper crt object is added in the
3045         linker command line except than when --no-crt is specified,
3046         * src/pic16/pcode.c,
3047         * src/pic16/pcode.h: added some structures and functions for a new
3048         optimization scheme to compansate for instruction overhead between
3049         same iCodes, this scheme is currently under development and is not
3050         working in any way,
3051         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3052         to && operator,
3053         * device/lib/pic16/startup/crt0i.c,
3054         * device/lib/pic16/startup/crt0iz.c: added global char variable
3055         __uflags to force the generation of an idata section
3056
3057 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3058
3059         * doc/Makefile,
3060         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3061         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3062
3063 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3064
3065         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3066         Frieder) and clarified the default code optimization mode
3067
3068 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3069
3070         * src/SDCC.lex (doPragma, process_pragma),
3071         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3072         "opt_code_size", and "opt_code_balanced"
3073         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3074         regrouped options by category, added support for category headers
3075         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3076         and "--opt-code-size"
3077         * doc/sdccman.lyx: documented these new options and pragmas
3078         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3079         preference into account
3080
3081 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3082
3083         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3084           geniCodePreDec): Fixed bug 904237 by generating a warning
3085         * src/SDCCerr.h,
3086         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3087
3088 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3089
3090         * src/pic/device.c : When no max ram set validate full memory range.
3091         * src/pic/pcode.c,
3092         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3093
3094 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3095
3096         * device/lib/_gptrget.c,
3097         * device/lib/_gptrput.c: updated comment
3098         * device/lib/calloc.c,
3099         * device/lib/free.c,
3100         * device/lib/malloc.c,
3101         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3102         * src/SDCCcse.c (cseBBlock),
3103         * src/SDCCicode.c (printOperand, geniCodeArray),
3104         * src/SDCCicode.h (struct operand): fixed bug 868103
3105         * support/regression/tests/bug-868103.c: added
3106         * src/SDCCast.c (searchLitOp),
3107         * src/SDCCcse.h (struct cseDef),
3108         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3109         * src/SDCCicode.h (struct operand),
3110         * src/SDCCsymt.h (struct sym_link),
3111         * src/avr/gen.c (hasInc),
3112         * src/ds390/gen.c (hasInc),
3113         * src/hc08/gen.c (genPlusIncr, hasInc),
3114         * src/mcs51/gen.c (hasInc),
3115         * src/pic16/glue.c (pic16_printIvalChar),
3116         * src/pic16/ralloc.c (regWithIdx),
3117         * src/xa51/gen.c (hasInc) : removed warnings
3118         * src/SDCCast.c (createBlock): added comment ???
3119         * src/hc08/ralloc.c: updated comments
3120
3121 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3122
3123         * doc/sdccman.lyx: updated section on switch statements, added
3124         section about semaphore locking
3125         * doc/Makefile: added option -info for latex2html
3126         * device/lib/_gptrget.c,
3127         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3128
3129 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3130
3131         * src/pic/device.h,
3132         * src/pic/device.c,
3133         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3134          maxram is less than 0x100.
3135
3136 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3137
3138         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3139
3140 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3141
3142         * src/port.h,
3143         * src/mcs51/main.c,
3144         * src/ds390/main.c,
3145         * src/z80/main.c,
3146         * src/hc08/main.c,
3147         * src/pic/main.c,
3148         * src/pic16/main.c,
3149         * src/avr/main.c,
3150         * src/xa51/main.c
3151         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3152         a jump table is the best form for a switch statement, including
3153         automatic insertion of missing cases to make the case range
3154         continuous. Developed in collaboration with Frieder Ferlemann.
3155
3156 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3157
3158         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3159         accumulator result if it needs sign extension
3160
3161 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3162
3163         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3164
3165 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3166
3167         * device/lib/gbz80/printf.c,
3168         * device/lib/z80/printf.c: removed define for NULL
3169
3170 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3171
3172         * as/xa51/xa_link.c,
3173         * device/examples/ds390/ow390/ad26.c,
3174         * device/examples/ds390/ow390/cnt1d.c,
3175         * device/examples/ds390/ow390/counter.c,
3176         * device/examples/ds390/ow390/ds2480.h,
3177         * device/examples/ds390/ow390/ds2480ut.c,
3178         * device/examples/ds390/ow390/findtype.c,
3179         * device/examples/ds390/ow390/gethumd.c,
3180         * device/examples/ds390/ow390/owllu.c,
3181         * device/examples/ds390/ow390/ownetu.c,
3182         * device/examples/ds390/ow390/swt12.c,
3183         * device/examples/ds390/ow390/swtloop.c,
3184         * device/examples/ds390/ow390/temp.c,
3185         * device/examples/ds390/ow390/temp10.c,
3186         * device/examples/ds390/ow390/thermo21.c,
3187         * device/examples/ds390/ow390/tinilnk.c,
3188         * device/examples/ds390/ow390/tstfind.c,
3189         * device/examples/serialcomm/windows/serial.cpp,
3190         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3191         * device/include/reg51.h: fixed line endings for cvs
3192
3193 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3194
3195         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3196         packRegsForAccUse, packRegisters): new accumulator register
3197         packing algorithm
3198         * support/regression/ports/hc08/support.c (_putchar): suppress
3199         warning of unused variable
3200         * src/SDCCicode.c: added SWAP entry to codeTable
3201
3202 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3203
3204         * device/lib/sprintf.c: forgot to add this file before previous commit
3205
3206 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3207
3208         * src/pic16/gen.c (genPackBits): added operand right in function
3209         parameters, load result directly if p_type is POINTER (that is
3210         called by genNearPointerSet)
3211         * (genUnPackBits): added operand left in function parameters,
3212         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3213         FSR0 if accessing bitfields,
3214
3215 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3216
3217         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3218           _print_format; updated printf, sprintf, vsprintf
3219         * device/include/asm/default/features.h: corrected comment/define
3220         * device/lib/Makefile.in: added sprintf.c
3221         * device/lib/libsdcc.lib: added sprintf module
3222         * device/lib/printf_large.c,
3223         * device/lib/vprintf.c,
3224         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3225           into these 3 files
3226         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3227         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3228         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3229           hc08 test
3230         * support/regression/tests/zeropad.c: define idata as data for hc08
3231
3232 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3233
3234         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3235         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3236         labels are referenced at least once (even if a reference is not found)
3237         * src/hc08/gen.c (emitcode): set isComment flag for comments
3238         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3239         loads), rules 6a..6b (optimize jumps to return)
3240
3241 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3242
3243         * device/lib/acosf.c (acosf),
3244         * device/lib/asinf.c (asinf),
3245         * device/lib/atanf.c (atanf),
3246         * device/lib/ceilf.c (ceilf),
3247         * device/lib/cosf.c (cosf),
3248         * device/lib/coshf.c (coshf),
3249         * device/lib/cotf.c (cotf),
3250         * device/lib/fabsf.c (fabsf),
3251         * device/lib/floorf.c (floorf),
3252         * device/lib/log10f.c (log10f),
3253         * device/lib/logf.c (logf),
3254         * device/lib/sinf.c (sinf),
3255         * device/lib/sinhf.c (sinhf),
3256         * device/lib/sqrtf.c (sqrtf),
3257         * device/lib/tanf.c (tanf),
3258         * device/lib/tanhf.c (tanhf),
3259         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3260         replaced all instances of "reentrant" in the library functions
3261         defined in math.h with this macro.
3262         * support/regression/tests/float_trans.c: reenabled test for hc08
3263
3264 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3265
3266         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3267         erroneously deleted
3268
3269 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3270
3271         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3272         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3273         multi-byte volatile operands are used
3274         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3275         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3276         initialization to area GSINIT0 so that it would always precede
3277         any static initializers in GSINIT
3278         * support/regression/tests/zeropad.c: fixed idata define for hc08
3279         * support/regression/tests/bug-927659.c,
3280         * support/regression/tests/float_trans.c: disabled tests for hc08
3281         pending missing library routines
3282         * .version: increased version number to 2.4.4 - hc08 port now passes
3283         regression tests
3284
3285
3286 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3287
3288         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3289         * Makefile.common.in,
3290         * as/Makefile,
3291         * as/hc08/Makefile.in,
3292         * as/mcs51/Makefile.in,
3293         * as/z80/Makefile.in,
3294         * debugger/mcs51/Makefile.in,
3295         * device/include/Makefile.in,
3296         * device/lib/Makefile.in,
3297         * doc/Makefile,
3298         * link/Makefile,
3299         * link/z80/Makefile.in,
3300         * packihx/Makefile.in,
3301         * sim/ucsim/main_in.mk,
3302         * sim/ucsim/avr.src/Makefile.in,
3303         * sim/ucsim/doc/Makefile.in,
3304         * sim/ucsim/gui.src/serio.src/Makefile.in,
3305         * sim/ucsim/hc08.src/Makefile.in,
3306         * sim/ucsim/s51.src/Makefile.in,
3307         * sim/ucsim/xa.src/Makefile.in,
3308         * sim/ucsim/z80.src/Makefile.in,
3309         * src/Makefile.in,
3310         * support/cpp2/Makefile.in,
3311         * support/librarian/Makefile,
3312         * support/makebin/Makefile: added DESTDIR to the install path proposed
3313         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3314         * doc/sdccman.lyx: added DESTDIR documentation
3315
3316 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3317
3318         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3319         instruction for interrupt handlers, use fast returns when returning
3320         from high priority interrupts
3321
3322 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3323
3324         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3325         code generation
3326         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3327         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3328         bugs, ported much of Bernhard's code from mcs51
3329         * src/mcs51/gen.c (genSend),
3330         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3331         than one when calling a reentrant function
3332         * device/lib/_mullong.c: defined an alternate struct layout for big
3333         endian ports (hc08)
3334
3335 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3336
3337         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3338         test
3339
3340 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3341
3342         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3343         are sane and complete before asking the port its prefered parameter
3344         passing method (fixes bug #1017633)
3345         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3346         and _ret3
3347
3348 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3349
3350         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3351         problem in bitfields >= 8 bits.
3352
3353 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3354
3355         * src/SDCCsymt.c: undid changes that were not meant to be committed
3356
3357 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3358
3359         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3360
3361 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3362
3363         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3364           copied and wrong bit got inverted
3365
3366 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3367
3368         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3369         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3370         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3371         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3372         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3373         assignments to bitfields at known addresses
3374         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3375         reads from bitfields at known addresses
3376         * src/hc08/ralloc.c (packRegisters),
3377         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3378         genhc08Code): optimize pointer get values used as conditionals
3379         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3380         and branch
3381
3382 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3383
3384         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3385         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3386         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3387         as conditionals
3388
3389 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3390
3391         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3392
3393 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3394
3395         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3396         related problems
3397
3398 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3399
3400         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3401
3402 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3403
3404         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3405         mcs51 port
3406
3407 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3408
3409         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3410
3411 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3412
3413         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3414         cases use more compact code.
3415
3416 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3417
3418         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3419
3420 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3421
3422         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3423
3424 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3425
3426         * src/SDCCsymt.h,
3427         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3428         parameter of changePointer() from symbol* to sym_link*
3429         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3430         * src/SDCCsymt.c (compareType): void* type is castable to other
3431         pointers, but not necesarily an exact match.
3432         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3433         is no longer blindly treated as an exact match.
3434         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3435
3436 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3437
3438         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3439
3440 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3441
3442         * src/pic/gen.c,
3443         * src/pic/pcode.c,
3444         * src/pic/ralloc.h,
3445         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3446
3447 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3448
3449         * src/pic/device.c,
3450         * src/pic/device.h,
3451         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3452
3453 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3454
3455         * src/mcs51/gen.c (emitcode): fixed bug #992819
3456
3457 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3458
3459         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3460           there's no need to make it worse
3461
3462 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3463
3464         * src/mcs51/ralloc.c (deassignLR),
3465         * src/ds390/ralloc.c (deassignLR),
3466         * src/hc08/ralloc.c (deassignLR),
3467         * src/z80/ralloc.c (deassignLR),
3468         * src/pic/ralloc.c (deassignLR),
3469         * src/pic16/ralloc.c (deassignLR),
3470         * src/avr/ralloc.c (deassignLR),
3471         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3472         rlivePoint): fixed another part of bug #971834
3473
3474 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3475
3476         * src/z80/main.c: enabled "critical" keyword
3477         * src/z80/mappings.i,
3478         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3479         functions (fixes bug #979646)
3480         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3481
3482 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3483
3484         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3485           such as c:\mydir.
3486
3487 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3488
3489         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3490           doesn't disable too much optimizations
3491
3492 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3493
3494         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3495
3496 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3497
3498         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3499
3500 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3501
3502         * src/pic/gen.c tidied up tabs
3503         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3504         * src/pic/main.c tidied up tabs
3505         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3506         * src/pic/pcoderegs.c tidied up tabs
3507         * src/pic/ralloc.c tidied up tabs
3508
3509 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3510
3511         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3512         to S_FIXED for pic16 port and when symbol is not in level 0,
3513         allocate for S_REGISTER storage class and pic16 port, too,
3514         * src/pic16/device.h: prototype for checkSym,
3515         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3516         * (pic16_assignConfigWordValue): test the value and the mask to
3517         validate that the value is suitable for the configuration word,
3518         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3519         collect extern declared symbols, don't emit symbol twice, check
3520         first if symbol is in publics set first,
3521         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3522         * added command line '--fstack' which enables an experimental
3523         feature for stack access, too buggy to be used yet...
3524         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3525         * (pic16_allocDirReg): when register has storage class S_REGISTER
3526         allocate in pic16_dynAccessRegs,
3527         * device/include/pic16/pic18f????.h: modified configuration word
3528         naming convention, words started as CONFIG0H but should be CONFIG1H
3529
3530 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3531
3532         * device/include/mcs51reg.h: fixed bug 970993
3533
3534 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3535
3536         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3537         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3538         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3539         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3540         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3541         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3542           error/warning numbers,
3543           added function setWarningDisabled()
3544         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3545         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3546           _memcmp.c _memmove.c calloc.c realloc.c free.c
3547         * support/regression/tests/malloc.c: added tests for new functionality
3548         * support/regression/tests/zeropad.c: added tests for truncated initializers
3549           and initialized char arrays starting with '\x0'
3550         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3551
3552 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3553
3554         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3555
3556 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3557
3558         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3559         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3560         peephole 177.e. Thanks to anonymous
3561
3562 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3563
3564         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3565         function isn't used in the source but referenced as a
3566         variable initializer then declare it as extern in .asm file
3567
3568 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3569
3570         * .version: increased version number to 2.4.3
3571
3572         Adding version extension according to ChangeLog CVS revision
3573         * src/Makefile.in (target all): added dependency 'version.h'
3574         * (rule version.h): added rule to create version.h from ChangeLog,
3575         * (rule dep): added dependency version.h,
3576         * src/version.awk: AWK script to create version.h
3577         * src/SDCCdwarf2.c (dwWriteModule),
3578         * src/SDCCglue.c (initialComments),
3579         * src/SDCCmain.c (printVersionInfo): modified to write after
3580         version string the version extension number,
3581         * src/SDCCutil.c: included "version.h"
3582         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3583         number,
3584         * src/SDCCutil.h: added prototype for getBuildNumber
3585
3586         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3587         includeDirsSet, too,
3588         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3589         const char [] is found in function prototype...
3590
3591         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3592         moving to WREG with source is already in WREG,
3593         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3594         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3595         * (aopForSym): stack'ed symbols are partially supported, added
3596         if-clause to support symbols in FARSPACE,
3597         * (sameRegs): added test for AOP_ACC to see if registers are same,
3598         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3599         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3600         * (pic16_popRegFromString): will not allocate a new register if it
3601         doesn't find one by name, bug may have introduced...
3602         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3603         * (genIpush): revived to use pic16 port's stack,
3604         * (genAddrOf): added incomplete case for stack'ed operand,
3605         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3606         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3607         can handle multibyte operands,
3608         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3609         * (pic16initialComments): added message for MPLAB compatibility
3610         mode enabled,
3611         * src/pic16/main.h: prototype for pic16_mplab_comp,
3612         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3613         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3614         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3615         because of increased complexity of procedure,
3616         * (_process_pragma): stack pragma changed to format 'stack pos len',
3617         emit symbol '_stack_end' to conform with gplink,
3618         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3619         to search for register,
3620         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3621         PO_GPR_REGISTER,
3622         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3623         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3624         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3625         case for PO_GPR_REGISTER,
3626         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3627         dies, the new era is ahead !...
3628         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3629         pic16_dynInternalRegs,
3630         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3631         * (pic16_allocDirReg): minor optimizations and bug fixes,
3632         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3633
3634         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3635         load stack and frame pointer with address of 'stack_end' symbol
3636
3637 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3638
3639         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3640         without source code but only variable initializers
3641
3642 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3643
3644         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3645         external are not declared as extern to reduce overhead while linking
3646
3647 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3648
3649         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3650
3651 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3652
3653         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3654           Yee Keat for the patch
3655         * src/SDCCast.c (decorateType): fixed bug #979599
3656         * src/ds390/gen.h: removed local fReturnSizeDS390
3657         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3658         * src/ds390/gen.c (genAnd, genOr, genXor),
3659         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3660
3661 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3662
3663         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3664         add relFilesSet to $3, manipulate $2 to handle linking of object
3665         files without source files in command line,
3666         * device/include/pic16 (all headers): added ID location macros,
3667         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3668         entries for ID location bytes,
3669         * (pic16_assignIdByteValue): NEW,
3670         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3671         added field dumpcalltree to pic16_options_t,
3672         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3673         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3674         emitting rFalseIfx label after check_carry label,
3675         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3676         pic16_emitDIRegs), NEW
3677         * (pic16glue): dump .calltree file when option --calltree found,
3678         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3679         * (_pic16_genAssemblerPreamble): emit ID locations after
3680         configuration registers,
3681         * (pic16_linkCmd): modifications of the link command,
3682         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3683         * (pic16_pCodeInitRegisters): don't init stack registers,
3684         * (pic16_findPrevInstruction): fixed bug,
3685         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3686         bug with immediate registers,
3687         * (buildCallTree): traces stack push and pop,
3688         * (pct2): dump also stack usage for each function,
3689         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3690         * (pic16_allocDirReg): various modifications,
3691         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3692         fixed to 1,
3693
3694 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3695
3696         * src/pic16/pcode.c: removed buggy double colon
3697
3698 2004-07-01 Borut Razem <borut.razem AT siol.net>
3699
3700         * support/scripts/sdcc.nsi: added include/pic16 to setup
3701
3702 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3703
3704         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3705         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3706         target 'clean',
3707         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3708         specific command line arguments. Also added sample lkr script
3709         for placing a variable at a specific memory bank.
3710         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3711         at a specific memory bank,
3712         * (pic16_dump_isection): fixed bug which caused string literals to
3713         be omitted when dumping idata section,
3714         * (pic16_groupRegistersInSection): added code to handle registers
3715         in specific memory banks,
3716         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3717         public, all references are renamed too,
3718         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3719         AOP_DPTR2,
3720         * (pic16_storeForReturn): added case to handle when dest is WREG,
3721         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3722         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3723         pic16_rel_udata, check to see if that register is marked as being
3724         a member of a specific memory bank,
3725         * (pic16_printIvalCharPtr): added code to add string literals either
3726         to code or the idata sections,
3727         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3728         also accept the 'udata' pragma,
3729         * src/pic16/main.h: new structure types sectName and sectSym
3730         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3731         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3732         * (pic16_findPrevInstruction): fixed, it returned nothing,
3733         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3734         instruction combinations,
3735         * (pic16_FixRegisterBanking): heavily reorganised,
3736         * (pic16_AnalyzeBanking): if generating banksel directives is
3737         disabled, then don't call FixRegisterBanking at all,
3738         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3739         completely removed,
3740         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3741
3742 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3743
3744         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3745         Phuah Yee Keat <yk.phuah AT nestac.com>
3746
3747 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3748
3749         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3750         correctly the IVT even if it is relocated to some other location
3751
3752 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3753
3754         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3755         * device/include/pic16/pic18f2220.h: NEW,
3756         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3757         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3758         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3759         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3760         nodefaultlibs, ivt_loc is the location of the interrupt vector
3761         table, and nodefaultlibs signs that default libraries should not be
3762         linked in link stage,
3763         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3764         according to --ivt-loc argument,
3765         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3766         when pragma stack is found,
3767
3768 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3769
3770         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3771         256 (range check), 257 (do while), 258.a-f (bit banging
3772         f.e. on 3-wire SPI bus)
3773
3774 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3775
3776         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3777         variables used exclusively within a loop
3778
3779 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3780
3781         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3782
3783 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/SDCClrange.c (computeClash): fixed bug #971834
3786
3787 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3788
3789         * src/mcs51/gen.c (genCmp): fixed bug #975903
3790         * src/hc08/gen.c (operandsEqu),
3791         * src/ds390/gen.c (operandsEqu),
3792         * src/z80/gen.c (operandsEqu),
3793         * src/pic/gen.c (operandsEqu),
3794         * src/pic16/gen.c (operandsEqu),
3795         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3796         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3797
3798 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3799
3800         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3801
3802 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3803
3804         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3805         default case in switch statement,
3806         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3807         to eliminate problem with initialisation of pointers, but problem
3808         still exists,
3809         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3810         * (emitStaticSegment): removed various lines emitting debug info,
3811         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3812         added processor registers for utilizing EEPROM,
3813         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3814         configurable and set 8
3815
3816 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3817
3818         * .version: increased version number to 2.4.2,
3819
3820         Cumulative patch for pic16 port
3821         * src/pic16/device.c: changed scheme to dump initial values for
3822         variables in idata segment, all print_idata* functions were removed,
3823         now the pic16_printIval* will be called,
3824         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3825         * _pic16_printPointerType, pic16_printPointerType,
3826         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3827         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3828         NEW, similar to the respective functions in SDCCglue.c,
3829         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3830         way, emitting hex bytes,
3831         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3832
3833 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3834
3835         * src/avr/ralloc.c (serialRegAssign),
3836         * src/xa51/ralloc.c (serialRegAssign),
3837         * src/pic/ralloc.c (serialRegAssign),
3838         * src/pic16/ralloc.c (serialRegAssign),
3839         * src/hc08/ralloc.c (serialRegAssign),
3840         * src/z80/ralloc.c (serialRegAssign),
3841         * src/ds390/ralloc.c (serialRegAssign),
3842         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3843
3844 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3845
3846         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3847         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3848
3849 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3850
3851         Cumulative patch for pic16 port:
3852         * src/pic16/device.h (typedef PIC16_device) modified fields for
3853         defining microcontrollers,
3854         * src/pic16/device.c: added new info for all devices in Pics16 array,
3855         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3856         to be optimised out by the pCode optimiser,
3857         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3858         specially, bug reported by G.M. Gallant,
3859         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3860         as force'd so that cannot be optimised out by pCode optimiser,
3861         * src/pic16/pcode.c,
3862         * src/pic16/pcodepeeph.c,
3863         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3864         they are disabled by default, but can be enabled explicit with
3865         command argument --denable-peeps, for testing,
3866         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3867         --pomit-ivt in COMPILE_FLAGS
3868
3869 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3870
3871         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3872           compilation on MSVC
3873
3874 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3875
3876         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3877
3878 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3879
3880         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3881         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3882
3883 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3884
3885         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3886         would only assign 0x300001 register.
3887
3888 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3891         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3892
3893 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3894
3895         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3896         for ds80c400
3897         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3898         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3899         added peephole 254 (left shift), 255 (jump table)
3900
3901 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3902
3903         * device/lib/Makefile.in: removed comment line with model-pic16,
3904         * (target port-specific-objects-pic16): the libraries and objects
3905         are copied to the build directory form the device/lib/pic16/bin
3906         directory
3907
3908         Cumulative patch concerning pic16 port:
3909         * library directory has been re-organized,
3910         * added support for PIC18F1220,
3911         * added headers and library sources for chips 18f1220,18f6520,
3912         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3913
3914         * configuration registers setting has changed, now each supported
3915         device has a complete description of the registers it uses,
3916         * all initialisations are moved to idata sections, these section
3917         can be absolute or relocatable,
3918         * fixed initialisation of codespace variables,
3919         * fixed warning about PCLATU and gpsim,
3920         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3921         * (genAssign): use table reads when assigning from variables in codespace,
3922         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3923         char/int variables placed in codespace,
3924         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3925         registers set in .asm file, no need for --pomit-config-words anymore,
3926         * (pic16glue): some 8051 legacy segments are commented out
3927         (to be removed completely),
3928         * added support for alternative assembler and linker with --asm=
3929         and --link= command line arguments,
3930         * peepholes are disabled automatically in the port, no need to
3931         specify on command line,
3932         * port supports natively char/int/long multiplication, but converts
3933         all divisions to support functions,
3934         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3935         to the file set in variable $2,
3936         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3937         strings in ASCII format and not in hex,
3938         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3939         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3940         allocate proper register if iCodes aren't temporary,
3941
3942 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3943
3944         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3945
3946 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3947
3948         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3949         is commented out
3950
3951 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3952
3953         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3954         computed address is reused
3955         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3956         multi-byte bitfields
3957
3958 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3959
3960         * src/z80/gen.c: (genArrayInit): must check for pointers too
3961
3962 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3963
3964         * support/regression/tests/zeropad.c: never meant to commit the
3965           nestedstruct test: removed, added check for GCC version
3966
3967 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3968
3969         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3970         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3971         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3972           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3973           bugs 928906 and 954082 half-empty initializers
3974         * src/SDCCsymt.h,
3975         * src/SDCCsymt.c (getAllocSize): added for above fix
3976         * src/z80/gen.c (genArrayInit): fixed bug 741044
3977         * support/regression/tests/zeropad.c: added tests
3978
3979 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3980
3981         * src/pic16/device.c (pic16_dump_section): corrected bug which
3982         caused some symbols of the libraries to be misplaced
3983
3984 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3985
3986         * src/pic16/glue.c,
3987         * src/pic16/ralloc.h,
3988         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3989         to fix conflict with pic port
3990
3991 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3992
3993         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3994         externs configuration variables,
3995         * src/pic16/ralloc.h,
3996         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3997         prototype in header, commented out some debug messages
3998
3999 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4000
4001         * src/pic16/glue.c,
4002         * src/pic16/main.c,
4003         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4004         for gpasm COFF object generation. Thanks to D. Hawkins for
4005         his patch info
4006
4007 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4008
4009         * src/ds390/main.c,
4010         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4011         Brock for spotting this)
4012         * src/ds390/gen.c (genEndFunction),
4013         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4014         interrupt handler and critical. Disable push/pop optimizations when
4015         peephole optimizations disabled.
4016
4017 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4018
4019         Updated pic16 library sources and headers.
4020         * device/lib/pic16/pic18f*/ ,
4021         * device/include/pic16/*.h: modified to handle structured SFR
4022         definitions
4023
4024 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4025
4026         * src/port.h (PORT structure): added hook initPaths, now each
4027         port can declare its own default search paths,
4028         which can been seen with the --print-search-dirs option,
4029         see pic16 port for example,
4030         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4031         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4032         * (doPrintSearchDirs): NEW, replaces in a central manner the
4033         printing of search dirs which was split in set*Paths functions,
4034         * (main): added call to port->initPaths and doPrintSearchDirs,
4035         * src/avr/main.c,
4036         * src/ds390/main.c,
4037         * src/hc08/main.c,
4038         * src/izt/i186.c,
4039         * src/izt/tlcs900h.c,
4040         * src/mcs51/main.c,
4041         * src/pic/main.c,
4042         * src/pic16/main.c: modified port structures to reflect addition of
4043         initPaths hook,
4044
4045         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4046         * (pic16_dump_section): for registers in same address reserve memory once,
4047         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4048         to no_banksel,
4049         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4050         result is greater in size than right or left,
4051         * (pic16_genUMult8X8_8): there are some cases where the result can
4052         be 16 bits size, so handle these,
4053         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4054         * (pic16_outBitC): modified to emit pcodes,
4055         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4056         or not,
4057         * (genDivOneByte): implemented algorithm to divide 8-bits,
4058         * (genCmp): uncommented goto, but issues still exist,
4059         * (genAnd): fixed a bug with variables >8bits,
4060         * (genPackBits): optimization added that uses BCF/BSF to change a
4061         single bit,
4062         * (genAssign): fixed bug when assigning floating point literals,
4063         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4064         __sdcc_gsinit_startup label,
4065         * src/pic16/main.c (_pic16_init): removed search directory
4066         initialisations,
4067         * (_pic16_initPaths): NEW, used to initialise search directories,
4068         * (_hasNativeMulFor): support functions for all except char/int
4069         multiplication, and char division,
4070         * (PIC16_port struct): modified entry for native mul support,
4071         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4072         no_banksel option,
4073         * (buildCallTree): call to register_usage is ifdef'ed out,
4074
4075 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4076
4077         * device/include/string.h: applied Stas Sergeev's patch to make this
4078         header file compatible with the preprocessor -Wundef option
4079         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4080         failure (fixes bug #941458)
4081
4082 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4083
4084         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4085         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4086         that the variable, not the function, should be static
4087         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4088         to be consistent with non-literal case
4089
4090 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4091
4092         * src/SDCCast.c (isConformingBody): fixed bug #949967
4093         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4094         convilong): fixed bug #952086
4095
4096 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4097
4098         * src/SDCCmem.c (allocVariables): fixed bug #955321
4099
4100 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4101
4102         * src/hc08/main.c (_hc08_genAssemblerEnd),
4103         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4104         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4105         completely eliminated the use of a temporary file
4106         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4107         when more than one file linked
4108         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4109
4110 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4111
4112         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4113         which fixes bug #543481
4114         * support/regression/tests/bug-751703.c: fixed comments left from a
4115         cut and paste error
4116         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4117         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4118         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4119         scopes
4120         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4121         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4122         are now changed to underscores in moduleName
4123
4124 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4125
4126         * as/mcs51/lkmem.c: better fix for bug #954173
4127
4128 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4129         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4130
4131         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4132         * device/include/c8051f000.h,
4133         * device/include/c8051f120.h,
4134         * device/include/c8051f300.h,
4135         * device/include/c8051f310.h,
4136         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4137         PWM16) and detab'ed
4138
4139 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4140
4141         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4142         and mailing lists, doc'ed --no-peep-comments, removed reference
4143         to knoppix (newest version has no LyX/LaTeX), other minor changes
4144         * src/SDCCglue.c (glue): save 2 bytes stack space with
4145         option --main-return. The ljmp could probably be avoided too
4146
4147 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4148
4149         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4150
4151 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4152
4153         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4154         * src/SDCCopt.c (isLocalWithoutDef),
4155         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4156         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4157         (credit to Maarten Brock for patch #949363, on which this is based)
4158         * support/regression/tests/bug-751703.c: some test cases of extern used
4159         within inner scopes.
4160
4161 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4162
4163         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4164         SPEC_STRUCT
4165         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4166         struct definitions
4167         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4168         dwWriteLabel): fix to create valid debugger symbols even when
4169         the module name has non-alphanumeric symbols in it
4170         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4171         when a variable's allocation has been optimized away
4172
4173
4174 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4175
4176         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4177         * src/hc08/main.c,
4178         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4179         * src/mcs51/main.c,
4180         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4181         * src/ds390/main.c,
4182         * src/z80/gen.c (z80_emitDebuggerSymbol),
4183         * src/z80/main.c,
4184         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4185         * src/pic/main.c,
4186         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4187         * src/pic16/main.c,
4188         * src/avr/gen.c (avr_emitDebuggerSymbol),
4189         * src/avr/main.c,
4190         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4191         * src/xa51/main.c,
4192         * src/SDCCdebug.c (emitDebuggerSymbol),
4193         * src/SDCCdebug.h,
4194         * src/port.h: added a debugger struct to the port struct. Added a
4195         callback for defining debugger symbols
4196
4197         * src/SDCCast.c (createLabel),
4198         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4199         with isitmp = 1
4200         * src/SDCCicode.h,
4201         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4202         iCode back to the ast for the function
4203
4204         * src/hc08/ralloc.c (hc08_assignRegisters),
4205         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4206         unneeded fields from the regs struct.
4207         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4208         pushReg() & pullReg() functions instead of emitcode()
4209
4210         * src/hc08/gen.c (genLabel, genhc08Code),
4211         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4212
4213         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4214         debugger hooks
4215
4216         * src/hc08/gen.c (genEndFunction, genhc08Code),
4217         * src/hc08/gen.h,
4218         * src/mcs51/gen.c (genEndFunction, gen51Code),
4219         * src/mcs51/gen.h,
4220         * src/ds390/gen.c (genEndFunction, gen390Code),
4221         * src/ds390/gen.h,
4222         * src/z80/gen.c (genEndFunction, genZ80Code),
4223         * src/z80/gen.h,
4224         * src/z80/z80.h,
4225         * src/pic/gen.c (genEndFunction, genpic14Code),
4226         * src/pic/gen.h,
4227         * src/pic16/gen.c (genEndFunction, genpic16Code),
4228         * src/pic16/gen.h,
4229         * src/avr/gen.c (genEndFunction, genAVRCode),
4230         * src/avr/gen.h,
4231         * src/xa51/gen.c (genEndFunction, genXA51Code),
4232         * src/xa51/gen.h,
4233         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4234         specific code to cdbFile.c and out of the backend code generators
4235
4236         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4237         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4238         starting address is now 0
4239
4240         * as/hc08/asm.h,
4241         * as/hc08/m08pst.c,
4242         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4243         assembler directive for DWARF support
4244         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4245
4246         * src/src.dsp,
4247         * src/Makefile.in,
4248         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4249
4250 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4251
4252         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4253         and inappropriate peephole optimization in jump tables
4254
4255 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4256
4257         * as/hc08/m08pst.c,
4258         * src/SDCCglue.c: sdccopt works for the hc08 port now
4259
4260 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4261
4262         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4263
4264 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4265
4266         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4267
4268 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4269
4270         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4271         rules
4272         * src/SDCCmain.c,
4273         * src/SDCCglobl.h,
4274         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4275         comments from the peephole optimizer replacement rules
4276         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4277         symbols
4278         * src/SDCCcse.c (updateSpillLocation),
4279         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4280         equivalents
4281         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4282         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4283         objects far pointers
4284
4285 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4286
4287         * src/SDCCsymt.h: a missing part of my last change
4288         * src/pic/ralloc.c (regTypeNum),
4289         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4290
4291 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4292
4293         * src/SDCCicode.h,
4294         * src/SDCCicode.c (aggrToPtrDclType),
4295         * src/SDCCptropt.h,
4296         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4297         ptrPseudoSymConvert),
4298         * src/pic/ralloc.c (regTypeNum),
4299         * src/pic16/ralloc.c (regTypeNum),
4300         * src/hc08/ralloc.c (regTypeNum),
4301         * src/ds390/ralloc.c (regTypeNum),
4302         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4303         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4304
4305 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4306
4307         * link/z80/lkmain.c (afile),
4308         * as/hc08/lkmain.c (afile),
4309         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4310         prevent a pointer problem when a filename has no directory and
4311         no extension specified.
4312
4313 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4314
4315         * link/z80/lkmain.c (afile): allow periods in directory names
4316         * link/z80/lkmain.c (afile),
4317         * as/mcs51/lkmain.c (afile),
4318         * as/hc08/lkmain.c (afile): allow linker script file to have an
4319         extension other than ".lnk"
4320         * link/z80/lklex.c (getfid),
4321         * link/z80/lkmain.c (parse),
4322         * as/mcs51/lklex.c (getfid),
4323         * as/mcs51/lkmain.c (parse),
4324         * as/hc08/lklex.c (getfid),
4325         * as/hc08/lkmain.c (parse): Support comments in the linker script
4326         file on lines by themselves and after filenames
4327
4328 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4329
4330         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4331
4332 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4333
4334         * src/z80/peeph-z80.def: removed some peephole rules that don't
4335         work with multibyte arithmetic (fixed bug #937126)
4336         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4337         to registers and not global variables
4338         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4339         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4340         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4341         checking for assignments not internally generated (fixed bug #931895)
4342         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4343         structure member (fixed bug #930072)
4344
4345 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4346
4347         * src/SDCCmain.c (linkEdit),
4348         * src/hc08/main.c (_hc08_parseOptions),
4349         * as/hc08/Makefile.in,
4350         * as/hc08/aslink.h,
4351         * as/hc08/asm.h,
4352         * as/hc08/m08pst.c,
4353         * as/hc08/lkrloc.c (relr, rele),
4354         * as/hc08/lkarea.c (lnkarea)
4355         * as/hc08/lkmain.c (afile, parse),
4356         * as/hc08/lkelf.c: support for ELF output
4357         * as/hc08/lks19.c (s19),
4358         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4359
4360 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4361
4362         * as/mcs51/lkihx.c: Fixed bug #899105.
4363
4364 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4365
4366         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4367         .dsp files from Unix to DOS.
4368
4369 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4370
4371         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4372         function pointers; we have been compliant for several months now.
4373         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4374         change that was accidently commented out
4375         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4376         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4377         bug #922319
4378
4379 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4380
4381         * src/hc08/gen.c: output of all of the internal debugging information
4382         is now controlled by the D() macro; it is disabled by default
4383
4384 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4385
4386         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4387         harder to keep the same registers during a CAST iCode
4388         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4389         long via int can be done in a single cast, if the signedness is
4390         correct.
4391         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4392         putchar() in tinibios.c in ds390's library
4393
4394 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4395
4396         * src/SDCCast.c (decorateType): fixed bug #898889,
4397         cast result of a literal complement too
4398         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4399         fixed check for bitfields
4400
4401 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4402
4403         * src/SDCCicode.c (geniCodeLogic): made it static,
4404         (geniCodeLogicAndOr): added in order to fix bug #905492,
4405         (ast2iCode): fixed bug #905492
4406         * support/regression/tests/bug-905492.c: added
4407         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4408         (processParms): fixed bug #927659: don't copy parms, this will clear
4409         decorated flag
4410         * support/regression/tests/bug-927659.c: added
4411
4412 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4413
4414         * src/SDCCast.c (addCast): don't cast float to char
4415         * device/lib/libsdcc.lib: added _memmove
4416
4417 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4418
4419         * device/lib/large/Makefile: fixed parallel execution by
4420         replacing `make` by `$(MAKE)`
4421
4422 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4425         offsets (fixes bug #923936)
4426
4427 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4428
4429         * device/lib/small/Makefile: fixed parallel execution by
4430         replacing `make` by `$(MAKE)`
4431
4432 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4433
4434         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4435
4436 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4437
4438         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4439         * src/regression/Makefile: Regression test was not running.
4440
4441 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4442
4443         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4444         complement if possible
4445         * src/SDCCval.c (valComplement),
4446         * src/SDCCicode.c (operandOperation): fixed complement of literal
4447         * support/regression/tests/onebyte.c (testComplement): added
4448
4449 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4450
4451         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4452         return an optimized tree; actually replace actParm with the new tree
4453         * src/SDCCast.h: added some parantheses to remove side effects
4454         * support/regression/tests/bug-920866.c
4455
4456 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4457         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4458         Bit operands were not being handled properly in the pic14 port.
4459         (now src/regression/add.c passes again).
4460
4461 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4462
4463         * src/SDCC.y (labeled_statement): case and default no longer require
4464         a following statement (RFE #893037)
4465
4466 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4467
4468         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4469         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4470         disabled (fixes bug #916294)
4471         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4472         "mov a,acc"; patch provided by Lenny Story
4473         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4474
4475 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4476
4477         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4478         functions
4479         * src/ds390/gen.c (genFunction, genEndFunction),
4480         * src/ds390/ralloc.c (ds390_assignRegisters),
4481         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4482         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4483         pushed if there are parameters passed on the stack. Also, a cleaner
4484         way to decide if r0/r1 should be pushed/popped. (Together they fix
4485         bug #918693)
4486
4487 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * doc/sdccman.lyx,
4490         * device/lib/mcs51/crtpagesfr.asm,
4491         * device/lib/mcs51/crtxinit.asm,
4492         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4493         to avoid confusion with Si Lab's SFRPAGE register.
4494
4495 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/SDCCglue.c (emitMaps): allow public sfr variables
4498         * src/SDCCglue.c (initialComments): include compiler build date
4499         with compiler version and put the timestamp of the generated
4500         assembly file on a serperate line to be less confusing.
4501         * src/port.h: added genInitStartup hook
4502         * src/avr/main.c,
4503         * src/ds390/main.c,
4504         * src/hc08/main.c,
4505         * src/pic/main.c,
4506         * src/pic16/main.c,
4507         * src/xa51/main.c,
4508         * src/z80/main.c: genInitStartup initialize as NULL (default to
4509         historical behaviour)
4510         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4511         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4512         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4513         library instead of hard coding it into the compiler.
4514         * support/regression/ports/mcs51-stack-auto/spec.mk,
4515         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4516         * device/lib/mcs51/Makefile,
4517         * device/lib/small/Makefile,
4518         * device/lib/large/Makefile,
4519         * device/lib/mcs51/crtpagesfr.asm,
4520         * device/lib/mcs51/crtstart.asm,
4521         * device/lib/mcs51/crtxclear.asm,
4522         * device/lib/mcs51/crtxinit.asm,
4523         * device/lib/mcs51/crtclear.asm,
4524         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4525         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4526         and into user configurable files.
4527         * device/lib/clean.mk: clean mcs51 directory too
4528         * support/regression/tests/longlit.c: added static to T1 declaration
4529         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4530         accesses in the initialization code
4531
4532 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4533
4534         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4535         OSCTRIMVAL as noted in bug #916008
4536
4537 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4538
4539         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4540         in loops with multiple exits (reported as incorrect registers
4541         used by Martin Helmling in Sdcc-user list)
4542
4543 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4544
4545         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4546         made ds390 register extensions look less like error messages
4547
4548 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4549
4550         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4551         reported by Adam Wozniak in Sdcc-user list
4552
4553 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4554
4555         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4556         arithmetic optimizations, added debug output
4557
4558 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4559
4560         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4561         * sdcc.spec: updated and split sdcc into 3 rpms
4562         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4563         needed for literals of LEFT_OP and '+'
4564         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4565         introduced RESULT_TYPE_NOPROM
4566         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4567         left shift
4568         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4569         limited promotion to int only for '*'
4570         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4571
4572 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4573
4574         * src/pic16/gen.c (genSkip),
4575         (genc16bit2lit), (gencjneshort): commented out
4576         (is_LitOp): new helper function, checks operand type
4577         (genCmpEq): rewritten
4578
4579 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4580
4581         * support/regression/tests/bug-908454.c: added
4582
4583 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4584
4585         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4586         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4587         (geniCodeCast): cosmetic, don't preserve bit storage class
4588         (geniCodeLeftShift): added promotion
4589         (geniCodeLogic): fixed regression
4590         * src/SDCCsymt.c (computeTypeOr): accept bits too
4591         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4592
4593 2004-03-07  Borut Razem <borut.razem AT siol.net>
4594
4595         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4596
4597 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4598
4599         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4600         version of pic16_genPackRegisters which does not check if ic is a
4601         CAST operator,
4602         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4603         function cause string1.c regression test fails
4604
4605 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4606
4607         * sim/ucsim/configure.in,
4608         * sim/ucsim/configure,
4609         * sim/ucsim/doc/Makefile.in: use docdir
4610         * src/SDCC.y: fixed sbit atrributes
4611         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4612         * src/SDCCast.c (decorateType): |^& need special promotion handling
4613         * src/SDCCast.h,
4614         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4615         * src/SDCCsymt.h (computeType),
4616         * src/SDCCicode.c: computeType() needs op
4617         * src/SDCCsymt.c (checkTypeSanity),
4618         * doc/sddman.lyx: "plain" bitfields are unsigned
4619         * src/SDCCsymt.c (computeTypeOr): added
4620         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4621         |^& ops
4622         * src/SDCCval.c (val*): computeType() needs op
4623         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4624         * support/regression/tests/onebyte.c: added tests for |^&
4625
4626 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4627
4628         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4629         for writing icode into asm output.
4630
4631 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4632
4633         * src/pic16/device.c: added some debug lines enabled
4634         with macro DEBUG_CHECK,
4635         * src/pic16/genarith.c: more debug in genPlus,
4636         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4637         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4638         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4639         * (aopForSym): onStack symbols are re-placed in data memspace,
4640         and onStack flag is cleared,
4641         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4642         copy temporary pcodeop,
4643         * (genPcall): added warning for not updating PCLATU,
4644         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4645         always true for pic16 port,
4646         * (genMultOneWord): NEW, supports integer multiplication,
4647         * (genMult): modified to call genMultOneWord,
4648         * (ifxForOp): added warning when return NULL,
4649         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4650         flag is set before call to operandFromSymbol for implicit
4651         added structures,
4652         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4653         options.intlong_rent are set by default,
4654         * (_hasNativeMulFor): modified to allow port generation of integer
4655         multiplication,
4656         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4657         set regtype to REG_SFR for all registers, restricting seting the
4658         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4659
4660 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4661
4662         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4663         more than 500 times in the regression tests
4664
4665 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4666
4667         * support/Util/SDCCerr.h,
4668         * support/Util/SDCCerr.c,
4669         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4670         enumerator_list),
4671         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4672         for symbol conflicts.
4673         * support/valdiags/tests/enum.c,
4674         * support/valdiags/tests/tentdecl.c,
4675         * support/valdiags/tests/struct.c: expect possible error messages
4676         referring to original symbol definitions.
4677         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4678         * src/SDCCsymt.h,
4679         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4680
4681 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4682
4683         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4684
4685 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4686
4687         * src/pic16/ralloc.c (newReg): fixed bug #908929
4688
4689 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4690
4691         * src/ds390/gen.c: added missing #include "main.h"
4692
4693 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4694
4695         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4696         checking if symbol is already in set,
4697         * src/pic16/device.h: prototype for checkAddSym,
4698         * src/pic16/gen.c: (_G): added entry interruptvector,
4699         * (assignResultValue): removed some commented out lines,
4700         * (genFunction): check for ISR via sym->type, absolute section for
4701         interrupt code is created via a new pBlock, the goto instruction is
4702         placed now correctly at the interrupt vector position, changed all
4703         references from ivec to _G.interruptvector,
4704         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4705         is the interrupt is a high priority one, same for return from ISR,
4706         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4707         externs to calls of checkAddSym,
4708         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4709         pic16_pcode_verbose flag is set,
4710         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4711         * src/pic16/pcoderegs.c: message about how many registers are saved
4712         will only be emitted if pic16_pcode_verbose flag is set,
4713
4714 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4715
4716         * src/ds390/ralloc.h,
4717         * src/ds390/ralloc.c (ds390_regWithIdx),
4718         * src/ds390/gen.c (emitcode),
4719         * src/ds390/main.h,
4720         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4721         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4722         ds390operandCompare, getRegsRead, getRegsWritten,
4723         initializeAsmLineNode): customized instruction size calculation for
4724         ds390, started basis for some register optimizations
4725         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4726         corresponding assembly output
4727         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4728         missing push/pop of r0/r1. Optimized push/pops
4729
4730 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4731
4732         * src/mcs51/main.c (instructionSize): fixed ACALL size
4733         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4734
4735 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4736
4737         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4738         the sorting of rlist with NULL elements
4739         * (print_idataType, print_idata): NEW to create idata sections
4740         * src/pic16/device.h: idataSymSet new variable
4741         * src/pic16/gen.c (genFunction): fixed some bugs in string
4742         comparing, improved the absolute section creation for ISRs,
4743         added FSR0L/FSR0H in registers that are saved in an ISR,
4744         * (genInline): fixed the processing of inline snippets,
4745         now they undergo no process by the peephole optimizer
4746         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4747         are placed in idataSymSet,
4748         * (pic16emitStaticSeg): extern symbols are added in externs,
4749         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4750         switching when aboslute variables are placed in access bank memory
4751         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4752         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4753         commented out with #if,
4754         * (pic16_packRegisters): reintroduce the check for CAST because some
4755         symbols are not correctly handled,
4756         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4757         pCodeInstruction instead of pCode,
4758         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4759         pCodeAsmDir definition,
4760         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4761         directive, then the argument directive is emitted without the leading
4762         tab, hack for inline labels which must be in the first column,
4763         * (compareLabel,pic16_findNextInstruction),
4764         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4765         * (insertBankSwitch): modified for the new pCodeAsmDir,
4766
4767 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4768         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4769
4770         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4771         instance,
4772         * (pushSide): commented out with #if,
4773         * (assignResultValue): fixed some typos in saving
4774         registers,
4775         * (genPcall): FIXED and sync'ed with genCall,
4776         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4777         * (genNearPointerGet): fixed to handle some more cases,
4778         implementation scheme via table reads,
4779         * (genConstPointerGet): modified to access code memory correct,
4780         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4781         and improved to handle some cases
4782         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4783         instead of "RETLW" for init data
4784         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4785         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4786         variables are placed in access bank memory (<0x80 and >=0xf80),
4787         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4788         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4789         TBLWT_POSTDEC,TBLWT_PREINC
4790         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4791         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4792         directives
4793         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4794         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4795         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4796         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4797
4798 2004-02-29  Borut Razem <borut.razem AT siol.net>
4799
4800         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4801         support/Util/findme.h, support/Util/system.h: enhance binary relative
4802         search for lib and include by using findProgramPath()
4803
4804 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4805
4806         * src/SDCCpeeph.h,
4807         * src/SDCCpeeph.c (pcDistance),
4808         * src/port.h,
4809         * src/mcs51/ralloc.h,
4810         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4811         * src/mcs51/main.h,
4812         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4813         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4814         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4815         size calculation port specific, started basis for some register
4816         optimizations
4817         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4818         missing push/pop of r0/r1. Optimized push/pops
4819         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4820         * device/lib/_modsint.c (_modsint),
4821         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4822         and stack version so regression tests pass
4823
4824 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4825
4826         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4827         * src/SDCCast.c (decorateType): catch another small optimization
4828         with '?' operator
4829         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4830         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4831         modified to finally use computeType() all over SDCC,
4832         see Feature Request #877103
4833         * src/SDCCval.h: cosmetic
4834         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4835         valCompare(); regression tested in muldiv.c
4836         * support/regression/tests/muldiv.c (testMod): mod sign follows
4837         dividend only
4838
4839 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4840
4841         * src/SDCCast.c (decorateType): fixed bug #902362
4842         * doc/INSTALL.txt: fixed install instructions for win32
4843
4844 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4845
4846         * device/include/Makefile.in (install): fixed by replacing spaces
4847         by tabs
4848         * doc/README.txt,
4849         * doc/INSTALL.txt: updated for release
4850         * doc/sdccman.lyx: added warning for --xstack being buggy
4851
4852 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4853
4854         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4855         to eliminate build warnings.
4856         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4857
4858 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4859            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4860
4861         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4862         removed -penable-stack, added comment for stack pragma, added
4863         warning for not initializing the stack/frame registers, removed
4864         comment at interrupts section
4865
4866         Stack is made permanent, there is no ability to disable stack usage.
4867         * src/pic16/device.h,
4868         * src/pic16/device.c: removed all references to USE_STACK macro,
4869         * src/pic16/device.c (pic16_dump_section): when no elements in
4870         rlist, free rlist before return,
4871         * (pic16_dump_int_registers): NEW, internal registers are a new set
4872         of general purpose registers reused by each function,
4873         * (checkAddReg): returns 1 if registers is added to set,
4874         * (pic16_groupRegistersInSection): when a registers is of type
4875         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4876         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4877         SRCASECMP macro is moved here from device.c
4878         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4879         PO_PCLATU, PO_PRODL, PO_PRODH,
4880         * (pic16_pCodeOpType, genMinus,
4881         changed compares to "a" register, with AOP_ACC,
4882         * (pic16_genPlus): fixed some bugs and indented properly,
4883         * (pic16_addSign): changed size to size+offset in the MOVWF
4884         instruction,
4885         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4886         multiply 8-bit operand by literal, result is 8-bit,
4887         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4888         multiply 2 8-bit operand, result is 8-bit,
4889         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4890         genUMult8X*_16,
4891         * src/pic16/gen.c: changed accUse to contain WREG only,
4892         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4893         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4894         true, do not use immediate addressing any more unless sym is a
4895         pointer in codespace,
4896         * (aopForRemat): do not use immediate addressing when symbol not in
4897         codespace and when symbol's address is requested,
4898         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4899         accUse size (= 1),
4900         * (aopGet): added case for AOP_ACC and don't return "accumulator
4901         bug" but WREG instead,
4902         * (popGetTempReg): pushes contents of temporary register in stack,
4903         * (popReleaseTempReg): pops contents of temporary register from
4904         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4905         * (pic16_popGet): separated case AOP_ACC to return register WREG
4906         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4907         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4908         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4909         the use of immediate pointers to certain cases only.
4910
4911         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4912         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4913         * (assignResultValue, genCall, genRet): modified to use the new
4914         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4915         genPcall is still broken,
4916         * (genFunction): added code to create 'A' type pBlocks when
4917         interrupt functions are generated, code not extensively tested yet,
4918         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4919         * (genEndFunction): modified so ISRs pop stored registers from stack,
4920         * (genMultOneByte): cleanup,
4921         * (AccRsh): added flag andmask, to and result with appropriate mask,
4922         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4923         * (genDataPointerGet): fixed and reenabled its use,
4924         * (genNearDataPointerGet): bugs fixed,
4925         * (genDataPointerSet): bugs fixed,
4926         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4927         pic16_DumpSymbol, pic16_DumpOp,
4928         * src/pic16/genutils.h: function prototypes for the above functions,
4929         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4930         pointers,
4931         * (pic16emitRegularMap): many many many improvements, but needs a
4932         major cleanup,
4933         * src/pic16/main.c: enable_stack in pic16_options is removed,
4934         * (_pic16_parseOptions): removed command line options -penable-stack,
4935         * (_process_pragma): emit stack symbol only when stack pragma is
4936         processed,
4937         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4938         redirected to FSR0L/FSR0H pair,
4939         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4940         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4941         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4942         for immediates,
4943         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4944         * (dumpPicOptype): NEW,
4945         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4946         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4947         with movff instruction,
4948         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4949         added pic16_int_regs, some packRegsFor* functions are commented out,
4950         because produce errors,
4951         * src/pic16/NOTES: minor modifications
4952
4953 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4954
4955         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4956         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4957         --pack-iram.
4958         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4959         * as/mcs51/lkaomf51.c: fixed bug #895763
4960
4961 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4962
4963         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4964
4965 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4966
4967         * doc/sdccman.lyx: added details about the HC08 storage classes and
4968         interrupts, fixed the register usage info for z80 & gbz80
4969
4970 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4971
4972         * doc/sdccman.lyx: added more pic16 port documentation
4973         * device/include/pic16/: added header pic18fregs.h
4974
4975 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4976
4977         * doc/sdccman.lyx: added Vangelis' contribution
4978
4979 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4980
4981         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4982         extend to the next CALL or PCALL, not just to the next CALL.
4983
4984 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4985
4986         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4987
4988 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4989
4990         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4991         bug #895752 and a better fix for bug #716790
4992
4993 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4994
4995         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4996
4997 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4998
4999         * doc/sdccman.lyx: minor changes, minor changed
5000
5001 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5002
5003         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5004         which can't handle SDCC_NEWONEBYTEOPS,
5005         (geniCodeMultiply): removed conversion from mult to shift for pic14
5006         and pic16
5007
5008 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5009
5010         * src/hc08/gen.h,
5011         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5012         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5013         thus fixing bug #895406
5014
5015 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5016
5017         * device/lib/_modsint.c,
5018         * device/lib/_modslong.c: sign follows divisor only
5019         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5020         signs or signedness can be ignored
5021         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5022         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5023         added optimization for IFX,
5024         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5025         arguments;
5026         reenabled optimization for IFX, which was removed on 2004-01-11
5027         * src/SDCCast.h: added return type IFX
5028         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5029         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5030         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5031         SDCC_OLDONEBYTEOPS selects the old behaviour
5032         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5033         changed again and commented promotion rule
5034         * src/SDCCval.c (valDiv): promotion no longer necessary
5035         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5036         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5037         rewritten
5038         * support/regression/tests/onebyte.c: added
5039
5040 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5041
5042         * gen.c (genInline): reverted to old code for assemnling inline
5043         code because of bug reported James Chadd
5044
5045 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5046
5047         * ralloc.h: missing declarations from previous patch,
5048         seems that patch for ralloc.h was never applied, fixed
5049
5050 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5051            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5052
5053         * pcode.c,
5054         * pcode.h,
5055         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5056         indirect addressing. Marked FSR0 as deprecated
5057         * gen.c (pointerCode): commented out, not needed now
5058         (pic16_popGet2p): new MOVFF helper function
5059         (genGenPointerGet),
5060         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5061         (shiftRLong): removed duplicate debugging info
5062
5063 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5064
5065         * src/ds390/gen.c (genNearPointerGet),
5066         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5067         optimization with bits, but not bitfields.
5068         * src/ds390/ralloc.c (packRegisters),
5069         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5070
5071 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5072
5073         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5074
5075 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5076
5077         * src/SDCCsymt.h,
5078         * src/SDCCicode.c (operandFromSymbol),
5079         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5080         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5081         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5082         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5083         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5084         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5085         bug #892038
5086         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5087         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5088         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5089         * src/SDCCsymt.c (newSymbol),
5090         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5091         enumerator_list),
5092         * src/SDCCval.h,
5093         * src/SDCCval.c (newiList): fixed bug #885705
5094
5095 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5096
5097         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5098         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5099
5100 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5101
5102         * device/include/c8051f120.h,
5103         * device/include/c8051f300.h,
5104         * device/include/c8051f310.h: added/updated header files for Silicon
5105         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5106         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5107         in new section Submitting patches
5108
5109 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5110
5111         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5112         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5113         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5114         genGenPointerSet),
5115         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5116         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5117         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5118         genGenPointerSet),
5119         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5120         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5121         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5122         genGenPointerSet),
5123         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5124         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5125         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5126         genGenPointerSet): fixed bug #892400
5127         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5128         to eliminate build warnings.
5129         * src/SDCCast.c (processParms),
5130         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5131         fixed bug 751859
5132         * support/valdiag/valdiag.py: added GCC to the list of defines active
5133         when compiling with gcc
5134
5135 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * support/Util/SDCCerr.h,
5138         * support/Util/SDCCerr.c,
5139         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5140         with an incomplete type (fixed bug #883734)
5141         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5142
5143 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5144
5145         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5146
5147 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5148
5149         * src/SDCCast.c (decorateType),
5150         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5151         function pointer implementation
5152         * support/regression/tests/funptrs.c: added tests to verify both forms
5153         of function pointers work correctly. Added tests to verify parameters
5154         are passed in the correct order.
5155
5156 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5157
5158         * device.c (regCompare): registers are sorted by ascending
5159         address and increasing size,
5160         * main.c (_pic16_finaliseOptions): removed the declaration
5161         of compiler macro MCU. Now a macro of the format pic18fxxxx
5162         will be defined from the command line
5163
5164 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5165             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5166
5167         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5168         PCOP_RLCF was overwritten!
5169         * gen.c (genSkip): commented out calls to pic16_emitcode,
5170         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5171         * (genlshTwo),
5172         * (genRRC): added debugging info,
5173         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5174         overwritten while shifting,
5175         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5176         overwritten while shifting,
5177         * (AccLsh),
5178         * (AccRsh),
5179         * (shiftLLeftOrResult),
5180         * (shiftRLeftOrResult),
5181         * (shiftRLong),
5182         * (shiftLLong): Implemented with pic16_emitpcode
5183         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5184         * (genLeftShift): Fixed bug, operand for shift by variable always
5185         was "and"ed with 0x0f,
5186         * (genLeftShiftLiteral),
5187         * (genrshTwo),
5188         * (genRightShiftLiteral): added debugging info,
5189         * (genrshFour): added comment,
5190         * (genRightShift): determined signedness from operand "left"
5191         instead of "result"
5192
5193 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5194
5195         * src/SDCCicode.c (geniCodeParms),
5196         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5197         function pointers, fixed function pointer bugs #861242 and #861896
5198
5199 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5200
5201         * device/include/c8051f000.h,
5202         * device/include/c8051f120.h,
5203         * device/include/c8051f300.h: added header files for Silicon
5204         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5205
5206 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5207
5208         * src/SDCCast.c (processParams): added new type flow and restructured
5209         (gatherAutoInit): added new type flow
5210         (addCast): cosmetic changes
5211         (getLeftResultType): added new type flow for array indices, patch
5212         provided by Stas, see FR #877103
5213         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5214         array index patch by Stas
5215         * src/SDCCast.h: added prototype getResultTypeFromType()
5216         * src/SDCCval.h,
5217         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5218         * src/pic/glue.c (pic14emitStaticSeg),
5219         * src/pic16/glue.c (pic16emitStaticSeg),
5220         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5221         for initialization of symbols
5222         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5223         * support/Util/SDCCerr.h:
5224         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5225         * .version: bumped version number to 2.3.8
5226         * device/include/Makefile.in (install),
5227         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5228         avoid warnings
5229
5230 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5231
5232         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5233         Slade Rich fixed an optimization bug
5234         * src/pic/pcodepeep.c,
5235         * src/pic/pcoderegs.c
5236         * doc/Makefile (install): added test for directory
5237
5238 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5239
5240         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5241         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5242         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5243         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5244         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5245         * as/mcs51/asexpr.c (term),
5246         * as/hc08/asexpr.c (term): fixed bug #887146
5247
5248 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5249
5250         * src/z80/gen.c (genMult): handle single byte result product
5251         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5252         DUMMY_READ_VOLATILE (fixed bug #886367)
5253
5254 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5255
5256         * support/regression/tests/libmullong.c: fixed logic, on little endian
5257         hosts we ended without a mullong_wrapper()
5258
5259 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5262         virus/worm forged address usage.
5263
5264 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5265
5266         Fixed promotion, it should be done on AST level:
5267         * src/SDCCast.c (addCast): added promotion to int
5268         (decorateType): updated call to upCast()
5269         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5270         usualUnaryConversions()
5271
5272 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5273
5274         * support/regression/tests/literalop.c (mulWrapper): Added a
5275         wrapper to remove integer overflow warnings.
5276
5277         * support/regression/tests/float_trans.c: Made work on host.
5278
5279         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5280         location of sz80.
5281
5282         * support/regression/generate-cases.py (main): Changed from inline
5283         to a main method.
5284
5285         * doc/Makefile (install): Changed to depth first to get rid of
5286         missing directory install warning.
5287
5288         * as/Makefile (install-doc): Made work on Mac.
5289
5290 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5291
5292         * src/SDCCast.c: added an additional type flow in decorateType() of
5293         opposite direction, see feature request #860006; it's enabled at runtime
5294         by setting the environment variable SDCC_NEWTYPEFLOW
5295         * src/SDCCast.h: changed prototype of decorateType()
5296         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5297         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5298         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5299         see feature request #877103
5300         * src/SDCCval.c: updated call of decorateType()
5301         (valBitwise): fixed bug #882876
5302         (valMinus): added promotion
5303         (valLogicAndOr): result is unsigned
5304         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5305         * src/SDCCsymt.c (computeType),
5306         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5307         must not cause an unsigned operation
5308         * src/pic/glue (pic14emitRegularMap),
5309         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5310
5311 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5312
5313         * src/pic/pcode.c (PCodeID): commented out left over debug code
5314
5315 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5316
5317         * support/valdiag/tests/overflow.c: added shift tests
5318         * src/pic/device.c,
5319         * src/pic/gen.c,
5320         * src/pic/gen.h,
5321         * src/pic/glue.c,
5322         * src/pic/main.c,
5323         * src/pic/pcode.c,
5324         * src/pic/pcode.h,
5325         * src/pic/pcodepeep.c,
5326         * src/pic/pcoderegs.c,
5327         * src/pic/ralloc.c,
5328         * src/pic/ralloc.h: applied patch from Slade Rich;
5329         added support for multiple code pages and multiple RAM banks on the
5330         PIC 14 port. The ASM files now no longer simply assume all the
5331         code / RAM are in the same page / bank. This means the linker can
5332         safely allocate code/RAM of separate ASM files to different pages/banks.
5333         * doc/sdccman.lyx: added Slade's tips
5334         * src/mcs51/peeph.def: fixed bug #880768
5335
5336 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5337
5338         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5339         * src/SDCCast.c (decorateType): fixed bug #880197
5340
5341 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5342
5343         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5344         getopt.h.
5345
5346         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5347         strtof is not part of C89 and isn't included with Mac OS X.
5348
5349 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5350
5351         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5352         shiftL2Left2Result): fixed bug #879326
5353         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5354         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5355         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5356         address fetch for clr instruction
5357         * device/lib/hc08/_mulint.c: created optimized assembly version
5358         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5359
5360 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5361
5362         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5363         proposed in FR #877103
5364
5365 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5366
5367         * src/SDCCval.c (cheapestVal): added missing checks
5368         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5369         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5370
5371 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5372
5373         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5374         equal operands
5375
5376 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5377
5378         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5379         loaded with the linker search paths (-L arguments) and the libraries
5380         to be linked with the current source (-l arguments). Changes
5381         currently will affect only the pic16 port.
5382         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5383         include path the port specific paths and port specific libraries,
5384         * gplink command now contains the $3 argument,
5385         * src/pic16/device.h,
5386         * src/pic16/device.c,: structure PIC_device is made public and
5387         renamed to PIC16_device, the same for variable Pics which is renamed
5388         to Pics16. Updated all references to them.
5389         * src/pic16/glue.c (pic16glue): corrected bug with code
5390         initialization which bypassed the variable initializations block.
5391
5392         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5393         COMPILE_FLAGS and added the --nostdinc option
5394
5395 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5396
5397         * device/include/mc68hc908jb8.h: Register defs for another member
5398         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5399
5400 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5401
5402         Documenting changes from previous commits.
5403         * configure.in (version 1.56),
5404         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5405         when generating output files to configure the pic16 library,
5406         but now I've commented it out, since gputils aren't installed in the
5407         SF compile farm, so library won't compile
5408
5409         * device/lib/Makefile.in (version 1.56): initially I've added in
5410         target 'all' the prerequestive 'model-pic16' so it compiled the
5411         pic16 library, but now I've commented it out for the same reasons
5412         above,
5413         * added targets 'model-pic16' and 'objects-pic16' to compile the
5414         library
5415         * added target 'port-specific-objects-pic16' to handle the
5416         generated libraries and copy them into the build/ directory
5417         * added target 'clean-intermediate-pic16' to clean intermediate
5418         files into pic16 directory
5419         * in target 'installdirs' added line to create directory pic16 in
5420         the installation path
5421
5422         * device/include/Makefile.in (version 1.11): in target 'install'
5423         added lines to copy all header files to installation path,
5424         * in target 'installdirs' added line create directory for pic16
5425         headers in the installation path
5426
5427 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5428
5429         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5430          a function call
5431
5432 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5433
5434         * configure,
5435         * device/lib/configure.in,
5436         * device/lib/configure: fixed for autoconf 2.57
5437
5438 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5439
5440         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5441         option so that it actually works. Made it specific to the z80, since
5442         the gbz80 doesn't have these kinds of I/O ports.
5443
5444 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         * device/include/z180.h,
5447         * device/lib/_memcpy.c,
5448         * device/lib/_memmove.c,
5449         * device/lib/_mulint.c,
5450         * device/lib/ser_ir.c,
5451         * device/lib/ser_ir_cts_rts.c,
5452         * device/lib/_strcmp.c,
5453         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5454         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5455         portmode; added deprecation warning for bank= and protmode= forms.
5456         Also, guard against buffer overflow.
5457         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5458
5459 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5460
5461         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5462         changed interrupt vector table generation to only emit declared vectors.
5463         * device/include/Makefile.in: added missing backslash
5464         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5465
5466 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5467
5468         Mainly changes to support compilation of the device libraries
5469         * src/pic16/device.c: stack is allocated via symbol and not
5470         via literal number. The symbol is placed in the corresponding
5471         position of the data ram
5472         * (pic16_dump_section): relocatable and absolute uninitialized
5473         data are now emitted in sorted order to reduce section naming,
5474         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5475         weren't marked as being in the access bank,
5476
5477 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5478
5479         Added portion of GNU PIC Library under the directory
5480         device/include/pic16 and device/lib/pic16. These files
5481         contain the declarations of SFRs for the PIC18Fxx2 devices.
5482         The directory is initialized via configure from toplevel.
5483
5484 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5485
5486         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5487         the spilllocations to be compared correctly
5488
5489 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5490
5491         * src/SDCCast.c (decorateType): fixed bug introduced today
5492
5493 2004-01-12  Borut Razem <borut.razem AT siol.net>
5494
5495         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5496         doc/sdccman.lyx: upper case pragmas are deprecated
5497
5498 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5499
5500         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5501         in simpler and even better code
5502
5503 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5504
5505         * src/SDCCicode.c (operandOperation): fixed bug #874819
5506         * src/SDCCast.c (decorateType): fixed
5507         char foo (unsigned long ul) { return ul > 0; }
5508
5509 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5510
5511         * doc/sdccman.lyx: Moved and added some sections, small changes
5512         all over. Telling LaTeX to be less strict with word spacing
5513         to better keep the right margin. Changed some notes about
5514         maintainance of the ports in section 3.2.1 - is it OK like this?
5515
5516 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5517
5518         SDCC source changes:
5519         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5520         convilong): modified to inform the pic16 port that builtin functions
5521         are external
5522
5523         PIC16 PORT specific changes:
5524         * src/pic16/device.c pic16_dump_equates() added,
5525         processor registers declared internally by the port are emitted in
5526         the translation as equates,
5527         * src/pic16/gen.c: inline code is passed unprocessed to the
5528         translation,
5529         * (pic16_popGetLit2): fnuction modified to take second operand as
5530         pCodeOp pointer and not as literal,
5531         * (popRegFromIdx): prefixed with pic16_,
5532         * (pic16_popCombine2): modified to receive already allocated pCode
5533         operands,
5534         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5535         * (genFunction): initializes local stack frame and pushes on stack
5536         all the registers used by this function,
5537         * (genEndFunction): restores all registers from stack and restores
5538         stack frame,
5539         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5540         improvements,
5541         * (pic16glue): changed the program startup sequence,
5542         * added new dbName code 'A' for functions placed in absolute section
5543         * src/pic16/main.c: added function attribute _naked,
5544         * added pragma 'code' to place a fnuction at an absolute address,
5545         * added command line arguments --debug-ralloc and --pcode-verbose,
5546         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5547         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5548         * (pic16_newpCodeOpLit2): modified to take the second operand as
5549         pCodeOp pointer,
5550         * (pic16_printpBlock): modified to emit each function in a separate
5551         section,
5552         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5553         UPPER for immediate operands,
5554         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5555         instruction,
5556         * src/pic16/peeph.def: all peepholes with movff are commented out,
5557         because there is a problem in the pcode peep optimizer,
5558         * src/pic16/ralloc.c: the register allocator can now reuse local
5559         function symbols for another function. This saves register usage.
5560         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5561
5562         Added file src/pic16/NOTES with information about program writing on
5563         the current port version.
5564
5565 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5566
5567         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5568         and peephole 252 (array access)
5569
5570 2004-01-09  Borut Razem <borut.razem AT siol.net>
5571
5572         * src/SDCCmain.c : fixed #872250: -l command line defined library
5573           files are scanned before standard library files
5574
5575 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5576
5577         * src/SDCCast.c (decorateType): fixed bug #874046
5578
5579 2004-01-09  Borut Razem <borut.razem AT siol.net>
5580
5581         * support/scripts/sdcc.nsi: remove previous installation
5582
5583 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5584
5585         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5586         bytes for last interrupt vector (mcs51)
5587         * sdcc.spec: fixed typo
5588
5589 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5590
5591         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5592         gen51Code): more efficient parameter receive for --model-large
5593         ("bug" #845294)
5594
5595 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5596
5597         * src/ds390/main.c,
5598         * src/z80/main.c: added missed needLinkerScript flags (more than
5599         one port structure defined in these file)
5600         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5601         bug #795325
5602
5603 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5604
5605         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5606         * src/port.h: added flag needLinkerScript in port->linker
5607         structure to inform whether to create a .lnk file or not,
5608         * src/avr/main.c,
5609         * src/ds390/main.c,
5610         * src/hc08/main.c,
5611         * src/mcs51/main.c,
5612         * src/pic/main.c,
5613         * src/pic16/main.c,
5614         * src/xa51/main.c,
5615         * src/z80/main.c: changed appropriately to configure
5616         needLinkerScript flag
5617         * src/pic/gen.c,
5618         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5619         * src/pic/glue.c: added variable udata_section_name to
5620         override default uninitialized data segment definition for
5621         devices only with SHAREBANK memory (reported from Erik Epetrich)
5622         * (pic14emitOverlay): modified to emit a commented overlay segment
5623         directive when no overlay data exist
5624         * (picglue): modified to emit uninitialized data segment
5625         according to udata_section_name
5626         * src/pic/main.c (_pic14_parseOptions): added command line
5627         options --udata-section-name=[name] to override default
5628         udata definition name
5629         * modified _linkCmd and _asmCmd to include compiler passed
5630         arguments via -W option
5631         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5632         object file from '.rel' to '.o' in port->linker structure,
5633         changed size of fptr from 2 to 3 in port structure
5634
5635 2004-01-07  Borut Razem <borut.razem AT siol.net>
5636
5637         * support/scripts/sdcc.nsi: update PATH
5638         * support/scripts/sdcc.ico: craeted
5639
5640 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5641
5642         * device/include/Makefile.in: fix install
5643         * doc/Makefile: fix install
5644
5645 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5646
5647         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5648         in bug #860505
5649         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5650         how the function variable allocation summary is displayed; also
5651         include information about variables allocated to the overlay
5652         segment
5653
5654 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5655
5656         * as/mcs51/lkmain.c: Help about -Y option
5657         * as/mcs51/lkarea.c: Fixed gcc warnings
5658
5659 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5660
5661         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5662         fixed warning
5663         * support/valdiag/tests/overflow.c: added
5664         * src/SDCCast.c (decorateType),
5665         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5666         LEFT_OP (left shift)
5667
5668 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5669
5670         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5671         (default behaviour).
5672
5673 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5674
5675         A python script to validate compiler diagnostic messages. It can be
5676         used to verify that sdcc complains about bad c source code and
5677         gives a good location of the error.
5678         * support/valdiag/Makefile,
5679         * support/valdiag/valdiag.py,
5680         * support/valdiag/tests/*
5681
5682 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5683
5684         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5685         * src/SDCCsymt.c (newEnumType),
5686         * src/SDCCsymt.h
5687         * support/Util/SDCCerr.c,
5688         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5689         enum related bugs.
5690         * support/regression/tests/enum.c: added test for enum values that
5691         require at least 2 bytes of storage.
5692
5693 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5694
5695         * src/common.h: added ifndef/define/endif macros
5696         around the header file.
5697         Bug reported from Jesus Calvino-Fraga
5698
5699 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5700
5701         * sdcc.spec: updated
5702         * device/include/Makefile.in: don't install CVS directories
5703         * device/lib/Makefile.in: added removal of CVS directories after install
5704         * doc/Makefile: fixed install, added local_icons
5705         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5706         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5707         * src/ds390/gen.c (genRightShift): fixed bug #870788
5708         * src/SDCCast.c (decorateType): fixed bug #870781
5709
5710 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5711
5712         PIC16 port related changes:
5713         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5714         added variable stackPos,
5715
5716         * gen.c: genCall, assignResultValue: added support for
5717         pushing/retrieving function parameters to/from stack,
5718         genFunction,genEndFunction: setup stack frame for the
5719         generated function,
5720         genAddrOf: will be changed according to bug 863624
5721
5722         * added files genutils.c and genutils.h which contain gen*
5723         debugged and optimised functions extracted from gen.c
5724
5725         * glue.c: added variable 'externs' which holds extern symbols,
5726         pic16emitRegularMap: is modified to properly handle relocatable
5727          symbols under the new scheme,
5728         pic16createInterruptVect: is modified
5729         pic16printPublics: is modified to emit 'global' assembler directives,
5730         added pic16_printExterns to print extern symbols,
5731         pic16glue: initializes stack/frame pointer in the beginning of
5732         the assembly output. Temporary hack, will be corrected later,
5733         because gplink yet does not support stack and SDCC does not
5734         yet support a type of crt0.o object to create the final binary.
5735
5736         * Removed many lines that contain 8051 legacy code.
5737         * The code is finally placed under a 'code' directive.
5738         * Added port specific options.
5739
5740         * _process_pragma: simplified since now we do not need *special*
5741         include file to define SFR registers. But a separate header
5742         will be needed. This will be developed later.
5743         * _pic16_parseOptions: added, parses port specific options:
5744         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5745         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5746         --preplace-udata-with=
5747
5748         * _pic16_setDefaultOptions: modified to initialize section names,
5749         but hack is temporarly out of order since it needs improvement.
5750         * _pic16_genAssemblerPreamble: configuration words are emitted by
5751         their address instead of their name. This part is incomplete and
5752         supports only the 18Fxx2 devices. Other devices will emit an error
5753         during assembly since they do not contain the same set of config
5754         registers
5755         * _pic16_genIVT: is modified,
5756
5757         * pcode.c: added definitions for some hardware registers that are needed
5758         for stack support
5759         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5760         All PCI entries are updated. Now LFSR is supported.
5761         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5762         * added pic16_newpCodeOpLit2 to support instructions with
5763         two literal arguments
5764         * pic16_pCode2str: corrected code that emits assembler instructions
5765         with two literal operands and those that have an access bit modifier
5766         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5767         this fixes a bug which caused some labels to be lost, when an
5768         assembler directive was added, i.e. banksel,
5769         * pic16_FixRegisterBanking: improved logic that causes the insertion
5770         of bank switching,
5771         * InlineFunction: functions that are called once, are not any more
5772         inlined. This can be a port option in the future,
5773
5774         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5775
5776         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5777         hold the corresponding uninitialized symbols,
5778         * pic16_allocProcessorRegister: registers have explicit marked the
5779         accessBank field,
5780         * pic16_allocInternalRegister: registers are explicit marked as
5781         not used,
5782         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5783         processing list, so bit registers were lost,
5784         *
5785
5786         * ralloc.h: added field 'accessBank' and original symbol operand
5787         in register definition,
5788         * removed the field isMapped from register definition,
5789
5790         ** Several functions have been removed from various sources:
5791         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5792         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5793         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5794         pic16_assignRelocatableRegisters
5795
5796         ** others have been introduced:
5797         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5798         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5799
5800 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5801
5802         * support/scripts/inc2h.pl: changed definition of BIT_AT
5803         to emit 'sbit at' instead of 'bit at'. This was a request.
5804
5805         PIC16 port related preliminary changes:
5806         * gen.c: prefixed function popRegFromString with
5807         pic16_ and all references to it corrected
5808         * pcode.c: all pic16_pc_* hardware registers prefixed
5809         with underscore (_),
5810         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5811         * ralloc.c: newReg(): when register is REG_SFR then
5812         set address to rIdx,
5813         pic16_allocProcessorRegister(): marks register wasUsed=0
5814         pic16_writeUsedRegs(): added a call to assign processor
5815         registers via pic16_assignFixedRegisters
5816
5817 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5818
5819         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5820         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5821         variables in unused register banks.  Also the SSEG is placed
5822         wherever there is enough space for it, and IDATA can be anywhere
5823         in internal RAM.  For now compile using -Wl-Y[stack_size].
5824         The mem file is different for this option as well, since it
5825         makes no sense of talking about DSEG lenght.
5826
5827 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5828
5829         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5830         in certain cases, e.g. when ROM assignment, patch provided
5831         from Albert den Haan.
5832
5833 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5834
5835         Many signedness and type propagation fixes:
5836         * src/SDCCicode.c: made geniCodeCast() static
5837         replaced SPEC_ by IS_ (cosmetic)
5838         (operandOperation): fixed div and mod operation
5839         (usualBinaryConversions): added support for promotion of char
5840         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5841         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5842         (geniCodeAdd): an array index will stay unsigned, even if promoted
5843         from char to int
5844         (geniCodeArray): ditto
5845         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5846         * src/SDCCsymt.c (computeType): added more support for char;
5847         promotion of char is selectable by promoteCharToInt, fixed signedness
5848         for all cases
5849         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5850         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5851         * src/SDCCval (val*): replaced signedness calculation by
5852         computeType()
5853         rearranged if-branches (cosmetic)
5854         (valShift): added warning W_SHIFT_CHANGED
5855         (valCompare): fixed problem with different types
5856         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5857         * support/regression/tests/literalop.c: added many cases
5858         * support/regression/tests/ast_constant_folding.c: changed finally to
5859         'unsigned int'
5860         * .version: new year, new version: 2.3.7
5861         * src/SDCCmain.c (main): applied patch #866468
5862         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5863         provided by Scott Bronson
5864         * doc/sdccman.lyx: updated documentation for sdcdb
5865         updated and added chapter tips
5866
5867 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * src/SDCCsymt.h: missing from yesterday's commits
5870
5871 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5872
5873         * src/SDCC.y (struct_or_union_specifier),
5874         * support/Util/SDCCerr.c,
5875         * support/Util/SDCCerr.h: verify that struct & union tags are used
5876         as declared.
5877
5878 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCCglobl.h: missing from yesterday's commits
5881
5882 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5885         sft_attributes, struct_declaration, parameter_declaration,
5886         type_name, start_block, declaration_list),
5887         * src/SDCC.lex (check_type): support redefinition of typedef names
5888
5889 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5890
5891         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5892         aligned xdata arrays. Erik helped me with the if clause.
5893
5894 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5897         warning
5898
5899 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5900
5901         * src/SDCCast.h,
5902         * src/SDCCast.c (newAst_),
5903         * src/SDCCicode.h,
5904         * src/SDCCicode.c (ast2iCode, newiCode),
5905         * src/SDCCglobl.h,
5906         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5907         expr, statement, expression_statement, selection_statement,
5908         iteration_statement, expr_opt, jump_statement): foundation for tracking
5909         sequence points
5910         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5911         point code too)
5912
5913 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5914
5915         * support/Util/SDCCerr.c,
5916         * src/SDCCast.h,
5917         * src/SDCCast.c (createCase, createDefault, decorateType),
5918         * src/SDCClabel.c (labelUnreach),
5919         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5920         to error messages.
5921         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5922         (with thanks to Stas Sergeev)
5923         * device/include/time.h,
5924         * device/lib/time.c (CheckTime): suppress unreachable code warning
5925
5926 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5927
5928         * src/SDCCast.c (createIvalCharPtr),
5929         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5930         bug #753752)
5931         * support/regression/tests/nullstring.c: tests for these two bugs
5932
5933 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5934
5935         * support/Util/SDCCerr.h,
5936         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5937         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5938         about storage class and 'at' used inside struct or union
5939         * src/SDCCBBlock.c (iCodeFromeBBlock),
5940         * src/SDCCcse.c (ifxOptimize),
5941         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5942         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5943         printIval, emitStaticSeg, emitOverlay),
5944         * src/SDCClabel.c (deleteIfx),
5945         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5946         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5947         gatherAutoInit, processParms),
5948         * support/Util/SDCCerr.h,
5949         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5950         reporting for post-parse errors.
5951
5952 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5953
5954         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5955         implicit casts via union; they don't work on big endian systems
5956         (possible fix for bug #861138)
5957
5958 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5959
5960         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5961         * src/mcs51/main.c: fixed the fix for bug #737001
5962
5963 2003-12-15  Borut Razem <borut.razem AT siol.net>
5964
5965         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5966
5967 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5968
5969         * support/makebin/makebin.c: put output in binary mode
5970
5971 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5972
5973         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5974         xdata and data memory on startup. Set the environment variable
5975         SDCC_NOGENRAMCLEAR to disable this.
5976         * src/mcs51/peephole.def,
5977         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5978         (allows non-interrupt and interrupt code to safely compete for a resource
5979         without the non-interrupt code having to disable interrupts)
5980
5981 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5982
5983         * src/SDCCicode.c (geniCodeAdd),
5984         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5985         with valFromType if type might be a pointer and host is big endian).
5986         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5987         types, not just integer types.
5988         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5989         multiply defined with mismatching "at" address.
5990
5991 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5992
5993         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5994         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5995         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5996         with embedded nulls (fixed bug #753752)
5997
5998 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5999
6000         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6001         Apparently this did not see much testing (endless loop)
6002
6003 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6004
6005         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6006
6007 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6008
6009         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6010         gracefully handle NULL memmap pointers
6011
6012 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6015         instead of deleting the iCode when an operand is volatile
6016         * src/z80/gen.c (genDummyRead),
6017         * src/mcs51/gen.c (genDummyRead),
6018         * src/ds390/gen.c (genDummyRead),
6019         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6020         not just IC_RIGHT
6021         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6022         * src/SDCC.y: fixed bug #850420
6023
6024 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         Applied z80 i/o port patch from Peter Townson and fixed some operators
6027         to better handle operands in A register.
6028         * device/include/z180.h
6029         * src/SDCC.y
6030         * src/SDCCglue.c
6031         * src/z80/gen.c
6032         * src/z80/gen.h
6033         * src/z80/main.c
6034         * src/z80/peeph-z80.def
6035         * src/z80/peeph.def
6036         * src/z80/z80.h
6037
6038 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6039
6040         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6041
6042 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6043
6044         * device/lib/hc08/_mullong.c: Removed extra #endif
6045
6046 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6047
6048         * sim/ucsim/hc08.src/inst.cc,
6049         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6050         carries from x to h
6051         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6052         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6053         * device/include/stdarg.h: fixed varargs for hc08
6054         * device/lib/Makefile.in,
6055         * device/lib/hc08/Makefile,
6056         * device/lib/hc08/_mulint.c,
6057         * device/lib/hc08/_mullong.c: fixed some endian problems
6058
6059 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6060
6061         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6062         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6063         * device/lib/_gptrget.c,
6064         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6065
6066 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6067
6068         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6069         * src/SDCCast.c (astErrors): fixed bug #846007
6070         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6071
6072 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * src/SDCCast.c (decorateType): disabled a transformation I added in
6075         revision 1.188 (access to fields of a structure at an absolute address);
6076         it breaks with bitfields, extern declarations, and gcse analysis.
6077         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6078         could be assigned through a pointer, so don't complain.
6079         * src/SDCCast.c (astErrors),
6080         * src/SDCCast.h,
6081         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6082
6083 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6084
6085         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6086         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6087         output of __config directives, since gpasm now supports them
6088         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6089         pre-processor macro, i.e. -DMCU=p18f452
6090         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6091         and modified to handle 'cast' icode similarly to '=' icode
6092         * src/pic16/device.h (typedef struct PIC_device): added field
6093         'extMIface' to indicate that chip has external memory interface
6094         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6095         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6096         18F8720
6097
6098 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * src/SDCC.y (pointer): fixed bug #846006
6101         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6102         * src/SDCCast.c (decorateType): fixed bug #846009
6103         * src/ds390/peeph.def,
6104         * src/ds390/gen.c (genAnd, genOr),
6105         * src/mcs51/peeph.def,
6106         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6107
6108 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6111         * src/SDCCdflow.c
6112         * src/SDCCcse.c
6113         * src/SDCCcse.h
6114         * src/SDCCBBlock.h
6115         * src/SDCCBBlock.c
6116
6117 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6118
6119         fixed bug #845089
6120         * src/SDCCbitv.h,
6121         * src/SDCCbitv.c: added function to free a bitvector
6122         * src/SDCClrange.h,
6123         * src/SDCClrange.c: added function to recompute the liveranges
6124         * src/avr/ralloc.c,
6125         * src/ds390/ralloc.c,
6126         * src/hc08/ralloc.c,
6127         * src/mcs51/ralloc.c,
6128         * src/pic/ralloc.c,
6129         * src/pic16/ralloc.c,
6130         * src/xa51/ralloc.c,
6131         * src/z80/ralloc.c: recompute the liveranges after register packing
6132
6133 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6134
6135         * src/SDCCloop.c (newInduction): fixed bug #845630
6136
6137 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6138
6139         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6140         inadvertantly left behind from my 2003-11-12 change
6141
6142 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6143
6144         Updated headers I neglected to commit yesterday.
6145         * src/SDCClrange.h,
6146         * src/SDCCicode.h
6147
6148 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6151         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6152         * src/SDCCopt.c (eBBlockFromiCode),
6153         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6154         the creation of the key hash table from the sequencing so it can be used
6155         earlier (for some GCSE bug fixes still pending)
6156
6157 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6158
6159         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6160         * support/regression/tests/addsub.c: testing genPlus shortcut
6161
6162 2003-11-15  Borut Razem <borut.razem AT siol.net>
6163
6164         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6165
6166 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6167
6168         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6169         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6170         ordering is immaterial.
6171         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6172
6173 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6176         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6177         (SIGSEV) of bug #840381
6178         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6179         unlink new file before rename if new and old filenames are the same)
6180
6181 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6182
6183         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6184         uninitialized variables) for the mcs51. Set environment variable
6185         SDCC_GENRAMCLEAR to test.
6186         xdata initialization slightly shorter
6187
6188 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/SDCCsymt.h,
6191         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6192         #838241 & 780691 (basicly the same bug)
6193         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6194         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6195
6196 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6197
6198         * src/SDCCmain.c (linkEdit): "fix" #834252
6199
6200 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6201
6202         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6203         * src/SDCCast.h,
6204         * src/SDCC.y: fixed bug #819403
6205
6206 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6207
6208         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6209         the reentrant attribute.
6210         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6211         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6212         simulation
6213         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6214         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6215         erroneously reduced to a literal.
6216         * src/hc08/ralloc.c (packRegisters, rematStr),
6217         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6218         some cases
6219
6220 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6221
6222         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6223         * doc/sdccman.lyx: changed from 'article' to 'book'
6224         * doc/Makefile: readded test_suite_spec and cdbfileformat
6225
6226 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6227
6228         * device/include/stdlib.h: include malloc.h to comply with ANSI
6229         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6230
6231 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6232
6233         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6234         * doc/clean.mk: also remove *.out files
6235         * doc/sdccman.lyx: some additions, larger top/bottom margins
6236
6237 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/SDCC.y: fixed bug #837365
6240         * support/regression/tests/bitopcse.c
6241         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6242         a symbol (might be valop instead)
6243         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6244         * device/lib/clean.mk: added hc08 to the cleaning list
6245
6246 2003-11-04  Borut Razem <borut.razem AT siol.net>
6247
6248         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6249           made 2003-11-04
6250         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6251           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6252           malloc is declared in standard stdlib.h
6253
6254 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         * device/lib/hc08/Makefile: need to clean .rel not .o files
6257         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6258
6259 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6260
6261         * src/port.h,
6262         * src/hc08/main.c,
6263         * src/mcs51/main.c,
6264         * src/ds390/main.c,
6265         * src/z80/main.c,
6266         * src/avr/main.c,
6267         * src/pic/main.c,
6268         * src/pic16/main.c,
6269         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6270         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6271         tests (which uses the port's oclsExpense function)
6272         * src/SDCC.y,
6273         * src/SDCCast.c,
6274         * src/SDCCicode.c,
6275         * src/hc08/gen.c,
6276         * src/ds390/gen.c,
6277         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6278
6279 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/SDCCcse.c (ifxOptimize),
6282         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6283         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6284         deleting the IFX iCode.
6285         * src/hc08/ralloc.c: reduced unneeded slocs
6286         * src/hc08/gen.c: fixed bug in asmopToBoolean
6287
6288 2003-11-04  Borut Razem <borut.razem AT siol.net>
6289
6290         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6291           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6292           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6293           transferred to configure
6294
6295 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6296
6297         Use headers defined in the C[++] standards:
6298         * sim/ucsim/gui.src/serio.src/fileio.cc
6299         * sim/ucsim/gui.src/serio.src/frontend.cc
6300         * sim/ucsim/gui.src/serio.src/main.cc
6301         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6302         * support/Util/NewAlloc.c
6303         * as/hc08/lklibr.c
6304         * as/mcs51/lklibr.c
6305         * as/z80/aslist.c
6306         * as/z80/assym.c
6307
6308 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6309
6310         * Added MSVC projects for hc08 assembler and linker:
6311         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6312         /as/hc08/link_hc08.dsp
6313
6314 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6315
6316         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6317
6318 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6319
6320         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6321
6322 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6323
6324         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6325
6326 2003-10-31  Borut Razem <borut.razem AT siol.net>
6327
6328         * support/cpp2/cpplib.h,
6329           support/cpp2/cpplib.c,
6330           support/cpp2/cpplex.c,
6331           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6332           to switch _asm block preprocessing on / off. Default is
6333           #pragma preproc_asm +
6334
6335 2003-10-31  Borut Razem <borut.razem AT siol.net>
6336
6337         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6338           when outputting comment blocks (when executed with -C option) and
6339           _asm (SDCPP specific) blocks
6340
6341 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6342
6343         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6344
6345 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6346
6347         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6348
6349 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6350
6351         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6352         * src/SDCCast.c (decorateType): fixed bug #832664
6353
6354 2003-10-31  Borut Razem <borut.razem AT siol.net>
6355
6356         * support\cpp2\cpplex.c: fixed for SDCPP:
6357           comments(when executed with -C option) and _asm blocks
6358           were included even if they where in skipped #if block.
6359           Applied solution from GCC cpp 3.3.2
6360
6361 2003-10-31  Borut Razem <borut.razem AT siol.net>
6362
6363         * src/SDCC.lex: sdcc now understands both formats:
6364           '# <line_number> <file_name>' and
6365           '#line <line_number> <file_name>'
6366         * support/cpp2/cppmain.c: sdcpp now generates the standard
6367           '# <line_number> <file_name>' instead of former
6368           '#line <line_number> <file_name>'
6369
6370 2003-10-30  Borut Razem <borut.razem AT siol.net>
6371
6372         * support/cpp2/cpphash.h,
6373         * support/cpp2/cpplib.h
6374         * support/cpp2/cpplex.c,
6375         * support/cpp2/cppmain.c,
6376         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6377
6378 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         Fixed a number of problems revealed by bug #827883.
6381         * src/SDCCloop.c (loopInvariants): Spill location of the
6382         result operand should be recomputed if extracted from
6383         a loop. Also, don't extract assignments of an iTemp
6384         from a literal.
6385         * src/SDCCast.c (isConformingBody): loop reversal should
6386         not occur if the control variable is involved with a
6387         relational operator.
6388
6389 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6390
6391         * .version: bumped to 2.3.6 to reflect the big improvements
6392         made by Erik and Klaus. Thanks!
6393
6394 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6395
6396         Replaced the livrange code.
6397         * src/SDCClrange.c: added new LR code
6398         * src/SDCCloop.c,
6399         * src/SDCCBBlock.h: removed remainig parts from old LR code
6400         * src/ds390/ralloc.c,
6401         * src/ds390/gen.c: minor fixes to make it work with new code
6402
6403 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6404
6405         * as/hc08/asm.h,
6406         * as/hc08/lkrloc.c,
6407         * src/hc08/gen.c,
6408         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6409         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6410         (tweaked fix for bug #818696)
6411
6412 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6413
6414         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6415
6416 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6417
6418         * src/SDCCmain.c,
6419         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6420         * src/mcs51/gen.c (gencjneshort),
6421         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6422         more efficient (per Scott Bronson's suggestion)
6423
6424 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6425
6426         Extended the semantics of the critical keyword to include
6427         individual statements. See RFE #827755 and #799831
6428         * src/SDCC.y
6429         * src/SDCCicode.c
6430         * src/SDCCopt.c
6431         * src/SDCCast.c
6432         * support/Util/SDCCerr.c
6433         * support/Util/SDCCerr.h
6434         * src/mcs51/gen.c
6435         * src/ds390/gen.c
6436         * src/hc08/gen.c
6437
6438 2003-10-19  Borut Razem <borut.razem AT siol.net>
6439
6440         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6441
6442 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6443
6444         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6445         Fixed bug #818696
6446         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6447         and predecrement operand is displayed
6448
6449 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6450
6451         * src/SDCCval.c (valMinus): fixed bug #826041
6452
6453 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         Some hc08 related updates that I missed earlier
6456         * sim/ucsim/stypes.h
6457         * support/regression/ports/hc08/spec.mk
6458
6459 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6460
6461         New target "hc08" for the Motorola 68hc08 family of micros
6462
6463         * configure
6464         * configure.in
6465         * Makefile
6466         * src/hc08/*
6467         * src/SDCCmain.c
6468         * src/port.h
6469         * sim/ucsim/hc08.src/*
6470         * sim/ucsim/configure.in
6471         * src/ucsim/configure
6472         * sim/ucsim/packages_in.mk
6473         * as/hc08/*
6474         * as/Makefile
6475         * device/include/mc68hc908qy.h
6476         * device/lib/hc08/*
6477         * device/lib/Makefile.in
6478         * support/regression/ports/hc08/*
6479         * support/regression/Makefile
6480
6481 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6482
6483         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6484         regression test
6485         * src/ds390/gen.c (genCast): fixed bug #821957
6486
6487 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6488
6489         * device/lib/logf.c: "fixed" overlay bug
6490         * support/regression/ports/host/spec.mk: added m library
6491         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6492         * support/regression/tests/float_trans: added (for Eric)
6493
6494 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6495
6496         * src/mcs51/gen.c (genCpl): fixed bug
6497         http://sf.net/mailarchive/message.php?msg_id=6263915
6498
6499 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6500
6501         * src/SDCCast.c (decorateType): added extended constant folding
6502         * src/SDCCsymt.c (computeType): cleanup
6503         * src/SDCCval.c (valShift): minor optimization
6504         * support/regression/tests/ast_constant_folding.c: added
6505
6506 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6507
6508         * src/SDCCmain.c: removed some unintended changes
6509
6510 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6511
6512         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6513         * src/z80/gen.c: fixed part of bug #817589
6514         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6515
6516 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6517
6518         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6519         * src/SDCCcflow.c
6520         * src/SDCCcse.c
6521         * src/SDCCdflow.c
6522         * src/SDCClabel.c
6523         * src/SDCClrange.c
6524         * src/SDCCmem.c
6525         * src/SDCCopt.c
6526         * src/SDCCpeeph.c
6527         * src/SDCCset.c
6528         * src/avr/ralloc.c
6529         * src/ds390/ralloc.c
6530         * src/izt/ralloc.c
6531         * src/mcs51/ralloc.c
6532         * src/pic/ralloc.c
6533         * src/pic16/ralloc.c
6534         * src/xa51/ralloc.c
6535         * src/z80/ralloc.c
6536         * src/z80/gen.c: removed unused label "release:"
6537
6538 2003-10-06  Borut Razem <borut.razem AT siol.net>
6539
6540         * src/SDCC.lex: removed definition of unused variables
6541           save_optimize and save_options
6542
6543 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6544
6545         * clean.mk: removed '=' in "-maxdepth=1"
6546         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6547         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6548
6549 2003-10-06  Borut Razem <borut.razem AT siol.net>
6550
6551         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6552           my_unput() replaced by unput()
6553
6554 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6555
6556         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6557         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6558         type-punned pointer will break strict-aliasing rules"
6559         Old LR behaviour is again default; Klaus' LR can be choosen by
6560         defining the environment variable LRKLAUS
6561         * src/SDCCBBlock.h
6562         * src/SDCCloop.c
6563         * src/SDCClrange.c
6564         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6565         * clean.mk: fixed removal of files in bin/CVS/
6566         * device/lib/clean.mk: fixed removal of directories small and large
6567         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6568         * src/SDCCicode.c,
6569         * src/SDCCval.c: removed superflous test for pedantic
6570
6571 2003-10-05  Borut Razem <borut.razem AT siol.net>
6572
6573         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6574           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6575           message "unmatched #pragma SAVE and #pragma RESTORE"
6576
6577 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6578
6579         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6580           assembly, critical functions, atomic, nojtbound)
6581
6582 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6583
6584         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6585         * src/SDCCBBlock.h
6586         * src/SDCCloop.c
6587         * src/SDCCloop.h
6588         * src/SDCClrange.c
6589
6590 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6591
6592         * src/z80/gen.h,
6593         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6594         * src/mcs51/gen.h
6595         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6596         * src/ds390/gen.h
6597         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6598         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6599         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6600
6601 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6602
6603         * src/z80/gen.c (genRet): fixed bug #524753
6604         * src/z80/gen.c (genCast): fixed internal error on cast from
6605         pointer to long
6606         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6607         fix for bug #477835 to the z80
6608         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6609         for tracking iCodes in the peephole optimizer for z80
6610
6611 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6612
6613         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6614         the other part of bug #814548
6615         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6616
6617 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * src/SDCCcse.c: fixed part of bug #814548
6620
6621 2003-09-28  Borut Razem <borut.razem AT siol.net>
6622
6623         * src/asm.c: rewrite of printILine() to use temporary file instead
6624           a pipe
6625         * src/xa51/main.c: commented out declaration of int rewinds
6626
6627 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6628
6629         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6630
6631 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6632
6633         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6634         * src/asm.c (printILine): Fixed bug #811015
6635
6636 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6637
6638         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6639         freeing.
6640
6641 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6642
6643         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6644         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6645         to correctly handle general case of AOP_PAIRPTR
6646         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6647
6648 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6649
6650         * src/mcs51/ralloc.c (fillGaps),
6651         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6652         register positioning bug)
6653
6654 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6655
6656         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6657
6658 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6659
6660         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6661         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6662         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6663         (ralloc doesn't intentionally do this now, but perhaps later)
6664         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6665         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6666         register positioning bugs (Fixed bug #762602 and #795325)
6667         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6668         (Fixed bug #808779)
6669         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6670         lines that --i-code-in-asm generates
6671
6672 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6673
6674         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6675         trying to fclose a FILE* that was already closed.
6676
6677 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6678
6679         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6680         of const struct should be treated as if const themselves)
6681
6682 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6683
6684         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6685
6686 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6687
6688         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6689         Unix (/n) and DOS (/r/n) line terminations.
6690
6691 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6692
6693         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6694         bug #613775
6695
6696 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6697
6698         * src/mcs51/gen.c (genFunction, genEndFunction),
6699         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6700         and restore of EA so that stack offsets to parameters are
6701         correct when using both critical and reentrant/stack-auto.
6702         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6703         size (can be triggered in error if sloc is shared between
6704         different sized objects)
6705         * device/include/float.h: fixed macros to explicitly use
6706         unsigned long where needed
6707
6708 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6709
6710         Feature req. 799831: added code to allow nesting of critical functions
6711         * src/mcs51/gen.c (genFunction, genEndFunction)
6712         * src/ds390/gen.c (genFunction, genEndFunction)
6713
6714 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6715
6716         * src/SDCCsymt.c (sclsFromPtr),
6717         * src/SDCCsymt.h,
6718         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6719         support for standard C idiom of memory mapped variables; for
6720         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6721         to xdata int at 0x1234 tempvar = 1.
6722         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6723         provided by Akiya ISHIDA
6724
6725 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6726
6727         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6728         * src/SDCCval.c (constVal): added reduction from int to char
6729         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6730         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6731         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6732         to ignore the sign
6733         * support/regression/tests/shifts.c: fixed
6734
6735 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         * src/z80/gen.c (genXor): Fixed bug #805445
6738
6739 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6740
6741         Fixed bug #621531 (const & volatile confusion in the type chain).
6742         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6743         refer to the const or volatile state of the pointer itself.
6744
6745         * src/SDCCast.c
6746         * src/SDCCglue.c
6747         * src/SDCCicode.c
6748         * src/SDCCsymt.c
6749         * src/SDCCval.c
6750         * src/SDCC.y
6751         * src/SDCCsymt.h
6752         * src/pic/gen.c
6753         * src/pic/ralloc.c
6754         * src/pic16/gen.c
6755         * src/pic16/ralloc.c
6756         * support/regression/tests/const.c
6757
6758 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6759
6760         When checking for duplicated modules, use absolute paths
6761         instead of relative paths.  Files changed:
6762
6763         * as/mcs51/lklib.c
6764         * link/z80/lklib.c
6765
6766 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6767
6768         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6769
6770 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6771
6772         * device/include/string.h: added size_t typedef, changed
6773         prototypes to use size_t, eliminated separate reentrant and
6774         non-reentrant declarations, added _memmove declaration
6775         * device/lib/_memcpy.c: changed to use size_t instead of int,
6776         changed /4 to >>2 to avoid division library call
6777         * device/lib/_memcmp.c,
6778         * device/lib/_memset.c,
6779         * device/lib/_strncat.c,
6780         * device/lib/_strncpy.c,
6781         * device/lib/_strncmp.c: changed to use size_t instead of int
6782         * device/lib/_memmove.c: new file (fixed bug #772294)
6783         * device/lib/Makefile.in: added _memmove.c
6784         * device/lib/z80/asm_strings.s: fixed bug #772290
6785         * support/regression/tests/bitfields.c: attempt to fix host assertion
6786         failure on amd64-unknown-linux2.2
6787
6788 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6789
6790         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6791         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6792         * as/z80/asmain.c (main): fixed bug #801766
6793
6794 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6795
6796         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6797         compilers
6798
6799 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6800
6801         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6802         reported in bug #800609
6803
6804 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6805
6806         * Top header beautifications in src/pic16 directory:
6807           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6808           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6809           pcoderegs.h, ralloc.c, ralloc.h
6810         * main.c: added top header and GPL license notice
6811         * pcode.c: fixed the if-conditional warning
6812
6813 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6814
6815         * device/lib/_mullong.c: replaced int by short for gcc
6816
6817 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6818
6819         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6820         and JUMPTABLE iCodes properly now (worked by accident before)
6821         * src/mcs51/gen.c (leftRightUseAcc),
6822         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6823         iCode properly now. Use getSize instead of nRegs since a & b
6824         aren't part of the nRegs tally.
6825
6826 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6827
6828         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6829         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6830           before instructions that use the _STATUS register
6831
6832 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6833
6834         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6835         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6836         fetching of the pointer
6837         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6838         copied from genNearPointerSet()
6839         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6840         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6841         If they pop r0/r1 they must be called in the opposite order than aopOp().
6842         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6843         (resp. --stack-auto), prepared for --xstack
6844
6845 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6846
6847         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6848
6849 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6850
6851         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6852         these ports have their own __sdcc_external_start()
6853
6854 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6855
6856         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6857         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6858         type for bits was changed. It resulted in bit variables becoming
6859         global, which is not permitted in PIC 14 assembly output.
6860
6861 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6862
6863         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6864
6865 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6866
6867         Z80 and MCS51 linkers complaint if a public symbol is defined
6868         in more than one library module:
6869
6870         * as/mcs51/lklib.c
6871         * link/z80/lklib.c
6872         * as/mcs51/Makefile.in
6873
6874 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         A few small changes that speed up the peephole optimizer.
6877
6878         * src/SDCCpeeph.c
6879
6880 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6881
6882         Try to make the peephole optimizer smarter by maintaining
6883         an association between the assembly source code and the
6884         iCodes that originated them. Put this information to use
6885         with a new peephole rule condition "notVolatile" so that
6886         the rules can be aggressive yet still safe.
6887
6888         * src/SDCCpeeph.c
6889         * src/SDCCpeeph.h
6890         * src/mcs51/gen.c
6891         * src/mcs51/peeph.def
6892
6893 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         Fixed bug #741761
6896
6897         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6898         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6899         if the left or right operand symbols have the accuse flag set.
6900
6901 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         Changed the type of the result of the ! (NOT) operator to char;
6904         previously it returned the same type as the source. This allows
6905         us to eliminate all the genFloatNot functions (all of its target
6906         implementations were very buggy) since !float can use the same
6907         code as !long now.
6908
6909         * src/SDCCicode.c (ast2iCode): ! returns char
6910         * src/mcs51/gen.c (genNot, genNotFloat),
6911         * src/ds390/gen.c (genNot, genNotFloat),
6912         * src/z80/gen.c (genNot, genNotFloat),
6913         * src/pic/gen.c (genNot, genNotFloat),
6914         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6915
6916 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6917
6918         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6919         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6920            during interrupts. Ensure WSAVE is located at a shared bank address.
6921         2. Fixed page selection in some places
6922         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6923            the registers name strings.
6924         4. Fixed "signed / unsigned compare" compiler warnings.
6925         5. The PIC port manages its own allocation of the general purpose
6926            registers, but makes no attempt to reuse them. As a result when
6927            compiling it soon runs out of general purpose registers. Some
6928            additional code was added to the files pcode.c and device.c to walk
6929            through the function call tree and rename the registers so that they
6930            get reused.
6931
6932         * src/pic/device.c
6933         * src/pic/gen.c
6934         * src/pic/glue.c
6935         * src/pic/pcode.c
6936         * src/pic/pcode.h
6937         * src/pic/ralloc.c
6938         * src/pic/ralloc.h
6939         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6940         genPlus() & genMinus() when the result is the same as left or right
6941
6942 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6943
6944         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6945
6946 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6947
6948         Made bitfield a distinct type from bit so that bitfields
6949         convert as per ANSI C and bits retain their traditional
6950         boolean style behaviour. Implemented bitfield support in
6951         the z80 port.
6952
6953         * src/SDCCsymt.h,
6954         * src/SDCCsymt.c,
6955         * src/SDCCast.c,
6956         * src/cdbFile.c,
6957         * src/mcs51/gen.c,
6958         * src/ds390/gen.c: bit v bitfield split
6959         * src/z80/gen.c: New support for bitfields
6960         * support/regression/tests/bitfields.c: reenabled z80,
6961         added more tests
6962
6963 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6964
6965         Rules 246.x, 247.x relate to bitfields, the others speed up
6966         access to xdata mapped I/O devices.
6967
6968         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6969
6970 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6971
6972         Cleaned up genPackBits and genUnpackBits and added two helper
6973         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6974         for literal assignments in genPackBits (thanks to Frieder for
6975         reminding me).
6976
6977         * src/mcs51/gen.c
6978         * src/ds390/gen.c
6979
6980 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         Fixed bug #748310 (pointer to function type mishandled when the
6983         function name is omitted). Also fixed a SIGSEGV when a function
6984         attribute (reentrant, etc) is used on a non-function or on a
6985         function but misplaced before the parameter list.
6986
6987         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6988         bug #748310
6989         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6990         * support/Util/SDCCerr.h,
6991         * support/Util/SDCCerr.c: Added func attr misuse error msg
6992
6993 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6994
6995         Fixed bug #787649 by anonymous
6996         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6997         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6998
6999 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7000
7001         Fixed numerous bitfield problems.
7002
7003         * src/SDCC.y: More bitfield related error checking
7004         * src/SDCCsymt.h,
7005         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7006         * support/Util/SDCCerr.h,
7007         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7008         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7009         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7010         * support/regression/tests/bitfields.c: tests added
7011
7012 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7013
7014         Made the constant following the "interrupt" keyword optional. If
7015         omitted, the function will not automatically be given an entry
7016         in the interrupt vector table (similar to #pragma NOIV, but
7017         less syntacticly kludgy). The interrupt number is also now
7018         range checked. Also fixed a bug in the high order bit example
7019         in the manual.
7020
7021         * src/SDCC.y
7022         * src/SDCCmem.c
7023         * src/SDCCglue.c
7024         * src/SDCCsymt.h
7025         * support/Util/SDCCerr.c
7026         * support/Util/SDCCerr.h
7027         * doc/sdccman.lyx
7028
7029 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7030
7031         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7032         * src/SDCCicode.c (operandOperation): rewritten some ops
7033         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7034         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7035         other type
7036         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7037         be re-activated by defining REDUCE_LITERALS)
7038         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7039         unsigned, but are signed by default
7040         * src/SDCCval.c (constVal): rearranged
7041         * src/SDCCval.c (valMod): preliminary fix
7042         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7043         * support/regression/literalop.c: added, work in progress
7044
7045 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7046
7047         Generate warnings for useless declarations like "char data;"
7048         that don't do what new users expect.
7049
7050         * src/SDCC.y
7051         * support/Util/SDCCerr.h
7052         * support/Util/SDCCerr.c
7053
7054 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7055
7056         * src/SDCCval.c (valMult): fix overflow detection of negative int
7057
7058 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7059
7060         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7061
7062         Changes to support big endian targets:
7063
7064         * src/ports.h
7065         * src/SDCCglue.c
7066         * src/avr/main.c
7067         * src/ds390/main.c
7068         * src/izt/i186.c
7069         * src/mcs51/main.c
7070         * src/pic/main.c
7071         * src/pic16/main.c
7072         * src/xa51/main.c
7073         * src/z80/main.c
7074
7075 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7076
7077         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7078         * device/lib/time.c: fixed warning "integer overflow in expression"
7079
7080 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7081
7082         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7083         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7084         constants are unsigned; added recognition of "u" flag for unsigned
7085         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7086         * src/SDCCval.c (valDiv, valMod): fixed signdness
7087         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7088         signedness of modulo, left and right shift
7089         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7090         * support/Util/SDCCerr.h: added warning W_INT_OVL
7091         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7092         * src/SDCCast.c (ast_print): improved output of constants
7093
7094 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7095
7096         Fixed some warnings when building with MSVC:
7097
7098         * as\mcs51\asdata.c
7099         * as\z80\asdata.c
7100         * as\mcs51\asm.h
7101         * as\z80\asm.h
7102         * link\z80\aslink.h
7103         * link\z80\lkdata.c
7104         * link\z80\lkeval.c
7105         * link\z80\lkgb.c
7106         * link\z80\lkihx.c
7107         * link\z80\lks19.c
7108         * link\z80\lksym.c
7109         * support\cpp2\cpplib.c
7110         * src\ds390\gen.c
7111         * src\mcs51\gen.c
7112
7113 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7114
7115         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7116
7117 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7118
7119         * support\librarian\clean.mk: Do not remove Makefile.
7120         * support\librarian\Makefile: added.
7121
7122 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7123
7124         Added librarian to MSVC build:
7125         * all.dsp
7126         * sdcc.dsw
7127         * support\librarian\librarian.dsp
7128
7129         'configure' not needed for librarian, removed:
7130         * support\librarian\configure
7131         * support\librarian\configure.in
7132         * support\librarian\config_in.h
7133         * support\librarian\Makefile.in
7134
7135         Hopefully these ones built the librarian and the rest of sdcc properly:
7136         * Makefile
7137         * Makefile.common.in
7138
7139         Messed up 'configure', so revert to previous version:
7140         * configure
7141         * configure.in
7142
7143 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7144
7145         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7146         there, while the mantissa of a double is "only" 53 bits wide.
7147
7148 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7149
7150         Adding sdcclib to the build.  MSVC project coming soon.
7151         Files added/changed:
7152
7153         * support\librarian\clean.mk
7154         * support\librarian\configure
7155         * support\librarian\configure.in
7156         * support\librarian\config_in.h
7157         * support\librarian\Makefile.bcc
7158         * support\librarian\Makefile.in
7159         * support\librarian\sdcclib.c
7160         * Makefile.bcc
7161         * Makefile
7162         * Makefile.common.in
7163         * configure
7164         * configure.in
7165
7166 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7167
7168         Linker now complaints if linked modules have conflicting options, for
7169         example, one compiled using --model-large and another one compiled with
7170         --model-small.  The following files were modified:
7171
7172         * as\mcs51\asdata.c
7173         * as\mcs51\aslink.h
7174         * as\mcs51\asm.h
7175         * as\mcs51\asmain.c
7176         * as\mcs51\asout.c
7177         * as\mcs51\i51pst.c
7178         * as\mcs51\lkdata.c
7179         * as\mcs51\lklibr.c
7180         * as\mcs51\lkmain.c
7181         * as\z80\asdata.c
7182         * as\z80\asm.h
7183         * as\z80\asmain.c
7184         * as\z80\asout.c
7185         * as\z80\z80pst.c
7186         * link\z80\aslink.h
7187         * link\z80\lkdata.c
7188         * link\z80\lklibr.c
7189         * link\z80\lkmain.c
7190         * src\SDCCglue.c
7191
7192 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7193
7194         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7195         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7196
7197 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7198
7199         * src/z80/mappings.i: fix _mul[us][int,long] entries
7200
7201 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7202
7203         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7204
7205 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7206
7207         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7208         * support/regression/tests/bitopcse.c: added
7209         fixed warning:
7210         * src/avr/gen.c:
7211         * src/pic/gen.c:
7212         * src/pic16/gen.c:
7213         * src/z80/gen.c:
7214         * src/xa51/gen.c:
7215
7216 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7217
7218         added support for new library format to z80, gbz80 linkers:
7219         *link/z80/aslink.h
7220         *link/z80/lklex.c
7221         *link/z80/lklib.c
7222         *link/z80/lklist.c
7223
7224 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7225
7226         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7227         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7228
7229 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7230
7231         added DUMMY_READ_VOLATILE:
7232         * src/SDCC.y:
7233         * src/avr/gen.c:
7234         * src/xa51/gen.c:
7235         * src/z80/gen.c:
7236         * src/pic/gen.c:
7237         * src/pic16/gen.c:
7238         * src/mcs51/gen.c:
7239         * src/ds390/gen.c:
7240         * src/SDCCcse.c (algebraicOpts): many improvements
7241         * src/SDCCcse.h: removed algebraicOpts()
7242         * src/SDCCicode.c (picDummyRead): added
7243
7244 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7245
7246         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7247         "Insufficient space in data memory".
7248
7249 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7250
7251         * src/mcs51/gen.c: fixed bug #771358
7252         * src/z80/gen.c: fixed bug #759087
7253
7254 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7255
7256         * src/pic16/glue.c: minor cleanup by Vangelis
7257
7258 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7259
7260         * device/include/regc515c.h: fixed #758477
7261         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7262         * device/lib/_gptrput.c: saved a few bytes
7263         * my tab spacing is 8, yours too?)
7264         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7265         * device/lib/serial.c: process RX bytes earlier than TX bytes
7266         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7267
7268 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7269
7270         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7271
7272 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7273
7274     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7275
7276 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7277
7278         * device/lib/Makefile.in: bad fix, reverted to 1.43
7279
7280 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7281
7282         * device/lib/Makefile.in: added missing z80 object files
7283
7284 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7285
7286         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7287         pic16 progress by Vangelis:
7288         * src/SDCCglobl.h:
7289         * src/SDCCmain.c:
7290         * src/pic/Makefile:
7291         * src/pic:
7292         * pic/Makefile:
7293         * pic16/device.c:
7294         * pic16/device.h:
7295         * pic16/gen.c:
7296         * pic16/gen.h:
7297         * pic16/genarith.c:
7298         * pic16/glue.c:
7299         * pic16/main.c:
7300         * pic16/pcode.c:
7301         * pic16/pcode.h:
7302         * pic16/pcodepeep.c:
7303         * pic16/peeph.def:
7304
7305 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7306
7307     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7308
7309 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7310
7311     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7312     added gbz80 build to MSVC project.
7313     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7314     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7315     from 8051 stuff and setup so it links using a .lnk file.
7316
7317 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7318
7319     * support/librarian/sdcclib.c: sdcc librarian.
7320     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7321     with sdcclib.
7322
7323 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7324
7325     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7326
7327 2003-07-02  Borut Razem <borut.razem AT siol.net>
7328
7329         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7330         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7331         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7332         src/xa51/main.c, src/z80/main.c:
7333         virtualization of glue() function: each port has it's own glue function,
7334         which is accessed by do_glue function pointer in PORT.general structure
7335
7336 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7337
7338         * DS800C400 fun, improved ROM interface and tinibios.
7339
7340 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7341
7342         * More support for DS80C400. Now includes beginning of interface to ROM.
7343
7344 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7345
7346         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7347
7348 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7349
7350         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7351
7352 2003-06-19  Borut Razem <borut.razem AT siol.net>
7353
7354         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7355
7356 2003-06-19  Borut Razem <borut.razem AT siol.net>
7357
7358         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7359         fixed Z80 port - crt0.o: cannot open.
7360
7361 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7362
7363         * support/Util/MySystem.c (merge_command): revert bad fix
7364
7365 2003-06-18  Borut Razem <borut.razem AT siol.net>
7366
7367         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7368
7369 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7370
7371         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7372         option --use-stdout sends errors to stdout instead of stderr.
7373
7374 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7377
7378 2003-06-15  Borut Razem <borut.razem AT siol.net>
7379
7380         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7381         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7382         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7383         fixed width array of pointers replaced with sets;
7384         multiple include and lib paths ared transferred to preprocessor and linker
7385         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7386         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7387         fixed width array of pointers
7388         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7389         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7390         fixupPath(), getPathDifference()
7391         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7392         fixed width array of pointers
7393
7394 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7395
7396         * src/pic16/ralloc.c: fix warnings
7397         * src/pic16/pcode.c: fix warning
7398
7399 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7400
7401          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7402         know all the details, but essentially this set of changes enable
7403         the pic16 port to generate movff instructions and generate assembler
7404         directives,
7405         * src/SDCCmain.c:
7406         * src/pic16/gen.c:
7407         * src/pic16/glue.c:
7408         * src/pic16/pcode.c:
7409         * src/pic16/device.c:
7410         * src/pic16/main.c:
7411         * src/pic16/pcode.h:
7412         * src/pic16/pcoderegs.c:
7413         * src/pic16/ralloc.c:
7414         * src/pic16/ralloc.h:
7415
7416 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7417
7418         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7419         added option --vc, so sdcc errors and warnings are compatible with
7420         Microsoft Visual Studio.
7421
7422 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7423
7424         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7425           device/lib/libfloat.lib: added atof function.
7426
7427 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7428
7429         * doc/sdccman.lyx: updated to Lyx 1.3
7430         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7431         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7432         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7433
7434 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7437
7438 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7439
7440         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7441           additions to the "related tools/documentation" section
7442
7443 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7444
7445         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7446
7447 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7448
7449         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7450         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7451
7452 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7453
7454         * doc/sdccman.lyx: fix double dash and other minor things
7455         * doc/Makefile: fix double dash
7456
7457 2003-05-28  Karl Bongers(patches from Martin Helmling)
7458         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7459           condition and ignore commands.
7460
7461 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7462
7463         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7464           is in parts still quite out of date, I did changes as far as I felt makes sense
7465           for a non-native english speaker.
7466           Please feel free to add to the manual or to correct my changes.
7467         * doc/Makefile: undid touching the date of intermediate tex files.
7468
7469 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7470
7471         * doc/sdccman.lyx: Manual has an index now
7472
7473 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7474
7475         Finalize muluint/mulsint and mululong/mulslong merging:
7476         * device/lib/_mulint.c
7477         * device/lib/_mullong.c
7478         * device/lib/gbz80/mul.s
7479         * device/lib/gbz80/stubs.s
7480         * device/lib/z80/mul.s
7481         * device/lib/z80/stubs.s
7482         * src/SDCCsymt.c (initCSupport)
7483
7484 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7485
7486         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7487         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7488           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7489           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7490           instead of /Zm500.
7491
7492 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7493
7494         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7495           the regression tests I'm not brave enough to enable 245.b, 245.c
7496         * doc/sdccman.lyx: added latex preamble for hyperref package.
7497           Using pdflatex this will give you a hyperlinked pdf file with
7498           bookmarks. (prepend '%' before /usepackage if this breaks something)
7499
7500 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7501
7502          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7503
7504 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7507
7508 2003-05-21    <johan AT balder>
7509
7510         * src/SDCCglue.c (printIval): fixed bug #739934
7511
7512 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7513
7514         Applied patch from bug 737905 (renamed yylineo to mylineno):
7515         * src/altlex.c
7516         * src/SDCCast.c
7517         * src/SDCglobl.h
7518         * src/SDCC.lex
7519         * src/SDCCsymt.c
7520         * src/SDCCval.c
7521         * src/pic16/pcode.c: Cleaned warnings
7522         * src/pic16/pcodeflow.c: Cleaned warnings
7523         * src/pic16/pcoderegs.c: Cleaned warnings
7524
7525 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7526
7527         * src/pic16/pcode.c: Cleaned warnings
7528         * src/pic16/pcodepeep.c: Cleaned warnings
7529         * src/pic16/ralloc.c: Cleaned warnings
7530
7531 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7532
7533         * doc/sdccman.lyx: fixed bug 739745
7534         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7535
7536 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7537
7538         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7539         it can be defined with CFLAGS when running configure
7540         * src/SDCCmain.c: fixed compiling + linking with object files
7541
7542 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7543
7544         * configure.in: configure for pic16 port,
7545             added --disable-pic16-port
7546         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7547         * src/SDCCmain.c: linkOptions is changed to set *,
7548             added if/endif conditional macros to remove options help
7549             messages from optionsTable when a port is not configured, added
7550             support for the PIc16 port in the ports table, when executing
7551             the compiler with no port specified on command line, a default
7552             port is selected with the new macro DEFAULT_PORT which is
7553             defined in port.h, in setDefaultOptions() linkOptions is removed
7554             from initialization assignment, since now it is a set,
7555             parseCmdLine uses setParseWithComma for linkOptions, in
7556             linkEdit() linkOptions are accessed with new function indexSet()
7557             which returns the i'th item of a set variable. See SDCCset.c, in
7558             linkEdit() when calling buildCmdLine(), added linkOptions as
7559             last argument. Now users can pass arguments to gplink via the
7560             -Wl option, main() uses pic16glue() to glue up pic16 programs
7561         * src/SDCCpeeph.c: various changes to support pic16
7562         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7563             return the i'th item of the set
7564         * src/SDCCset.h: added function prototype for indexSet()
7565         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7566         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7567         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7568             added macro DEFAULT_PORT
7569         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7570         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7571             generated
7572         * src/pic16/glue.c: commented out some error producing lines
7573         * src/pic16/main.c: __config directives are commented out to stop
7574             gpasm complaining and test the linkage with gplink, _linkCmd and
7575             _asmCmd changed to be more gplink and gpasm friendly
7576         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7577             produced an error when parsed, peep rule 12 is added to utilize
7578             movff, but it is commented out since the pCode does not support
7579             yet a command with 2 address arguments
7580
7581 2003-05-18    <johan AT balder>
7582
7583         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7584         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7585 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7586
7587         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7588   Added feature to script commands from file.
7589
7590 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7591
7592         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7593         * src/SDCCutil.c: include ctype.h for win32
7594
7595 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7596
7597         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7598
7599 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7600
7601         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7602   Fixed so you can set breakpoints prior to run, run does not stop
7603   on entry now.  Add tbreak.  Other enhancements and fixes for use
7604   with ddd.
7605
7606 2003-05-12  Borut Razem <borut.razem AT siol.net>
7607
7608         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7609
7610 2003-05-11  Borut Razem <borut.razem AT siol.net>
7611
7612         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7613         the path of bin directory, so that PATH is the only env. variable, which has to be set
7614         in case of standard installation.
7615         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7616         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7617         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7618
7619 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7620
7621         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7622         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7623         temp files are in the port dir; clean the gen/test directory when
7624         generating new test.c
7625         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7626         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7627         * support/regression/tests/zeropad.c: added
7628
7629 2003-05-09    <johan AT balder>
7630
7631         * src/SDCCglue.c: fixed bug #597940
7632
7633 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7634
7635         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7636   cache sfr, optimize next,step, fix off by one sourceline,
7637   support ddd list function.
7638         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7639
7640 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * support/regression/HTMLgen.py: added compare_s2f()
7643         * support/regression/Makefile: redo 1.27
7644         * support/regression/generate-cases.py: redo 1.5
7645
7646 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7647
7648         * support/regression/tests/float.c: workaround 33 bit hex constant
7649         * support/regression/tests/simplefloat.c: fix division for host
7650
7651 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7652
7653         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7654         that tame's the PIC's over-aggressive optimizer.
7655
7656 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7657
7658          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7659          support for MSVC.
7660
7661 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7662
7663         Initial support for DS80C400. "Hello world" runs on TINIm400
7664         (with polled I/O).
7665
7666 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7667
7668          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7669          * Some notes on ddd usage added in debugger/README
7670          Martin Helmling adding more features and fixes for ddd GUI debugger.
7671          Code added for nexti, stepi, up, down, and other adjustments.
7672
7673 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7674
7675         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7676         * src/pic/peeph.def Added two rules to optimize carry manipulation
7677         * src/pic/* removed debug printfs
7678
7679 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7680
7681         * debugger/mcs51/cmd.c: added header newalloc.h
7682
7683 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7684
7685         * as/Makefile: new EXEEXT
7686         * as/z80/Makefile: remove trailing slash of BUILDIR
7687         * as/z80/clean.mk: new EXEEXT
7688         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7689         * support/cpp2/Makefile.in: new EXEEXT
7690         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7691
7692 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7695         EXEEXT was introduced to fix all related problems with targets
7696         "clean", "install" and "uninstall"; a couple of further flaws
7697         especially with "clean" have been fixed too
7698         * as/mcs51/Makefile.in
7699         * as/mcs51/clean.mk
7700         * as/z80/Makefile
7701         * Makefile
7702         * clean.mk
7703         * debugger/mcs51/Makefile.in
7704         * debugger/mcs51/clean.mk
7705         * link/z80/Makefile
7706         * link/z80/Makefile.in
7707         * link/z80/clean.mk
7708         * link/Makefile
7709         * packihx/Makefile.in
7710         * packihx/clean.mk
7711         * sim/ucsim/Makefile
7712         * sim/ucsim/clean.mk
7713         * sim/ucsim/avr.src/Makefile.in
7714         * sim/ucsim/avr.src/clean.mk
7715         * sim/ucsim/s51.src/Makefile.in
7716         * sim/ucsim/s51.src/clean.mk
7717         * sim/ucsim/xa.src/Makefile.in
7718         * sim/ucsim/xa.src/clean.mk
7719         * sim/ucsim/z80.src/Makefile.in
7720         * sim/ucsim/z80.src/clean.mk
7721         * sim/ucsim/main_in.mk
7722         * sim/ucsim/packages_in.mk
7723         * sim/ucsim/gui.src/Makefile.in
7724         * sim/ucsim/gui.src/serio.src/Makefile.in
7725         * sim/ucsim/gui.src/serio.src/clean.mk
7726         * src/Makefile.in
7727         * src/clean.mk
7728         * support/cpp2/Makefile.in
7729         * support/cpp2/clean.mk
7730         * support/makebin/Makefile
7731         * support/makebin/clean.mk
7732         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7733         * doc/sdccman.lyx: --program-suffix no longer needed
7734
7735 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7736
7737          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7738          Martin Helmling added support for ddd GUI debugger.
7739          Code added to display assembly, set variables, and other commands
7740          to interface to ddd.
7741
7742 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7743
7744         * as/Makefile: fix target clean
7745         * as/clean.mk: fix target clean
7746         * as/z80/clean.mk: fix target clean
7747
7748 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7749
7750         * Makefile.common.in: added  AT EXEEXT AT
7751         * configure.in: removed all mingw32 stuff
7752         * configure: rebuilt from configure.in
7753         * doc/sdccman.lyx: updated section "installation"
7754         * support/scripts/sdcc_mingw32: adapted to configure
7755         * support/scripts/sdcc_cygwin_mingw32: added
7756
7757 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7758
7759         * src/pic Added object file support for the PIC port
7760         * src/pic Applied patch from Craig Franklin (this started the object file support)
7761         * src/regression Updated the PIC regression tests for object files
7762
7763 2003-04-20  Borut Razem <borut.razem AT siol.net>
7764
7765         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7766           lklex.c: In function `getfid':
7767           lklex.c:203: warning: array subscript has type `char'
7768         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7769           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7770         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7771           stack handling macros
7772
7773 2003-04-19  Borut Razem <borut.razem AT siol.net>
7774
7775         * "handling space characters in file path" task:
7776         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7777         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7778         * support/Util/MySystem.h: make it self-sufficient
7779         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7780           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7781           handling space characters in file path
7782         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7783           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7784         * support/Util/MySystem.c: handling space characters in executable's path
7785
7786 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7787
7788         * as/z80/Makefile: fix permanent rebuild of z80
7789         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7790         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7791
7792 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7793
7794         * src/SDCCopt.c: add special case optimization to replace modulo by
7795           a power of two with a bitwise AND.
7796
7797 2003-04-18    <johan AT balder>
7798
7799         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7800
7801 2003-04-17    <johan AT balder>
7802
7803         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7804         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7805
7806 2003-04-13  Borut Razem <borut.razem AT siol.net>
7807
7808         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7809         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7810           fixed mingw problem in adl_NORMALIZE_PATH
7811
7812 2003-04-12  Borut Razem <borut.razem AT siol.net>
7813
7814         * fixed "#pragma SAVE/RESTORE can not be nested":
7815         * src/SDCC.lex: reworked pragma handling functions
7816         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7817         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7818
7819 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7820
7821         * src/SDCCutil.c (pathEquivalent): defined but not used
7822         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7823         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7824         * configure: rebuilt from configure.in
7825         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7826         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7827         * device/include/Makefile.in: replace sdcc_datadir
7828         * device/lib/Makefile.in: replace sdcc_datadir
7829         * Makefile.common.in: add LDFLAGS from configure
7830         * packihx/Makefile.in: use LDFLAGS
7831         * src/Makefile.in: use LDFLAGS
7832         * support/cpp2/Makefile.in: add LDFLAGS from configure
7833         * support/makebin/Makefile: use LDFLAGS
7834         * .version: bumped version number to 2.3.5
7835
7836 2003-04-12  Borut Razem <borut.razem AT siol.net>
7837
7838         * completed "different paths" task:
7839         * src/SDCCmacro.c: fixed bug in handling quotes
7840         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7841         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7842
7843 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7844
7845         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7846
7847 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7848
7849         * ds390/gen.c ds390/peeph.def: fix bug 706781
7850
7851 2003-04-11  Borut Razem <borut.razem AT siol.net>
7852
7853         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7854
7855 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7856
7857         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7858         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7859          set - this bit used to not be set...).
7860         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7861           bad code in PIC Port
7862         * src/regression/and2.c added to test bug 609268
7863         * src/regression/Makefile added and2.c to regression test
7864
7865
7866 2003-04-08    <johan AT CP255758-A>
7867
7868         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7869         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7870         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7871
7872 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7873
7874         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7875         fix bug #487815
7876         * support/cpp2/Makefile.in: fix bug #487815
7877         * configure: rebuilt from configure.in
7878         * Makefile.common.in: docdir changed, new path suffixes
7879         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7880         * sdcc_vc_in.h: reflect changes from sdccconf.h
7881         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7882         * src/SDCCutil.h: remove BINDIR hack
7883         * doc/sdccman.lyx: update new path hierarchy
7884
7885 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7886
7887         * src/SDCCpeeph.c: added okToRemoveSLOC test
7888
7889 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7890
7891         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7892
7893 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7894
7895         * src/SDCCpeeph.c: added labelIsReturnOnly test
7896         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7897
7898 2003-04-05    <johan AT balder>
7899
7900         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7901         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7902         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7903         * src/SDCCast.c: fixed a warning
7904         * src/SDCCast.h: fixed a warning
7905         * src/SDCCicode.c (operandFromAst): fixed a warning
7906
7907 2003-04-04    <johan AT balder>
7908
7909         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7910         * src/SDCCast.c (decorateType): fixed bug #715076
7911         * src/SDCC.y: fixed bug #702907
7912
7913 2003-04-03    <johan AT balder>
7914
7915         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7916         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7917         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7918         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7919         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7920
7921 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7922
7923         * _decdptr.c: fix return values
7924         * _gptrget.c: fix return values
7925         * _gptrgetc.c: fix return values
7926         * _gptrput.c: fix return values
7927         * _mulint.c: fix return values
7928         * as/z80/Makefile: fix 'make -j' problem
7929
7930 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7931
7932         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7933         * configure.in: big cleanup, updated to autoconf 2.5x
7934         * configure: rebuilt from configure.in
7935         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7936         * sdcc_vc_in.h: reflect changes from sdccconf.h
7937         * doc/Makefile: fixed a flaw in "make install"
7938
7939 2003-04-02    <johan AT balder>
7940
7941         * src/ds390/gen.c (genCmp): no comments
7942         * src/mcs51/gen.c (genCmp): no comments
7943         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7944         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7945
7946 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * support/regression/generate-cases.py: place generated file in given sub directory
7949         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7950         * support/regression/Makefile: improvements for 'make -j';
7951         side effect: it's simpler and faster now
7952
7953 2003-03-31  Borut Razem <borut.razem AT siol.net>
7954
7955         * src/z80/main.c: link-{port} and as-{port} defined without path
7956         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7957
7958 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7959
7960         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7961
7962 2003-03-30  Borut Razem <borut.razem AT siol.net>
7963
7964         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7965           changed type of list parameter to set
7966         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7967         * src/port.h: changed type of do_assemble() parameter to set
7968         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7969           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7970           definition of "cppoutfilename" macro with NULL value in preProcess()
7971         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7972         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7973         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7974           replaced with set *binPathSet
7975         * shash_add() deallocates the item, if allready exsists, before adding the new one
7976         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7977
7978 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7979
7980         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7981           a nested for loop bug in the PIC port
7982         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7983           for loops
7984
7985 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7986
7987         * support/Util/dbuf.h: remove C++ stuff to make it portable
7988
7989 2003-03-28  Borut Razem <borut.razem AT siol.net>
7990
7991         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7992           literal strings in stringLiteral()
7993         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7994         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7995           to the project
7996
7997 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7998
7999         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8000
8001 2003-03-26    <johan AT balder>
8002
8003         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8004         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8005         * src/SDCCast.c (decorateType): fixed " -v < 3"
8006
8007 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8008
8009         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8010         Added Lenny Story's debug infrastructure changes:
8011         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8012         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8013         * src/cdbFile.c: added
8014         * src/SDCCdebug.c: added
8015         * src/SDCCdebug.h: added
8016         * src/SDCCast.c (createFunction)
8017         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8018         * src/SDCCmain.c (parseCmdLine, main)
8019         * src/SDCCmem.c (redoStackOffsets)
8020         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8021         * src/SDCCsymt.h
8022         * src/common.h
8023         * src/avr/gen.c (genAVRCode)
8024         * src/ds390/gen.c (gen390Code)
8025         * src/mcs51/gen.c (gen51Code)
8026         * src/pic/gen.c (genpic14Code)
8027         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8028         * src/xa51/gen.c (genXA51Code)
8029         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8030
8031 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8032
8033         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8034         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8035
8036 2003-03-22    <johan AT balder>
8037
8038         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8039
8040 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8041
8042         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8043         * doc/cdbfileformat.lyx: added, written by Lenny Story
8044         * doc/Makefile: added cdbfileformat.lyx
8045         * doc/clean.mk: added cdbfileformat.lyx
8046
8047 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8048
8049         * src/mcs51/peeph.def: fix bug #705773
8050
8051 2003-03-20    <johan AT balder>
8052
8053         An sfr/sbit can have an "at #" AND an initializer
8054         * src/SDCCsymt.c (checkSClass):
8055         * src/SDCCmem.c (allocGlobal):
8056         * src/SDCCmem.c (allocLocal):
8057         * src/SDCCast.c (createBlock):
8058
8059 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8060
8061         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8062
8063 2003-03-16    <johan AT balder>
8064
8065         Undid the hackup of const and volatile, the problem is much bigger
8066         * src/SDCC.y:1.65
8067         * src/SDCCast.c:1.171
8068         * src/SDCCglue.c:1.138
8069         * src/SDCCicode.c:1.146
8070         * src/SDCCsymt.c:1.150
8071         * src/SDCCval.c:1.65
8072
8073 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8076         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8077
8078 2003-03-13    <johan AT balder>
8079
8080         Hackup const and volatile modifiers in type chains a bit:
8081         * src/SDCC.y:1.63
8082         * src/SDCCast.c:1.169
8083         * src/SDCCglue.c:1.136
8084         * src/SDCCicode.c:1.143
8085         * src/SDCCsymt.c1.146
8086         * src/SDCCsymt.h1.59
8087         * src/SDCCval.c:1.63
8088
8089 2003-03-12    <johan AT balder>
8090
8091         * src/SDCCBBlock.h: more LRH debugging junk
8092         * src/SDCCcflow.h: more LRH debugging junk
8093         * src/SDCCloop.c: more LRH debugging junk
8094         * src/SDCC.y (struct_declaration): fixed bug #697590
8095         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8096         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8097         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8098
8099 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8100         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8101         test function names must now match exactly).
8102         * src/SDCCcse.c: added special case in findCheaperOp to allow
8103         extending a short integer. Makes less awful code for bug 700121 test case.
8104
8105 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8106
8107         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8108         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8109
8110 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8111
8112         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8113         actually called (operandsNotEqual() was called for all
8114         operandsNotEqualX tests).
8115
8116 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8117
8118         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8119         with shorter literals. Fixes bug 700121.
8120
8121 2003-03-11    <johan AT balder>
8122
8123         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8124
8125 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8126
8127         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8128         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8129
8130 2003-03-10  Borut Razem <borut.razem AT siol.net>
8131
8132         * src/SDCCmain.c: pipe preprocessor's output
8133         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8134         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8135         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8136         which closes all pipes in pipeSet set
8137         * src/SDCCset.c: free deleted item in function deleteSetItem()
8138         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8139         moved from z80 to src subproject
8140         * .version: increased version number to 2.3.4
8141
8142 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8143
8144         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8145         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8146         * support/regression/ports/xa51/spec.mk: fix typo
8147
8148 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8151
8152 2003-03-09  Borut Razem <borut.razem AT siol.net>
8153
8154         * src/SDCCmain.c: pipe preprocessor's output
8155         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8156         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8157         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8158         which closes all pipes in pipeSet set
8159         * src/SDCCset.c: free deleted item in function deleteSetItem()
8160         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8161         moved from z80 to src subproject
8162
8163 2003-03-09  Borut Razem <borut.razem AT siol.net>
8164
8165         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8166         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8167         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8168         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8169         * src/SDCCglobl.h: unification of WIN32 native definitions
8170
8171 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8172
8173         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8174
8175 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8176
8177         * src/configure.in:   check for endianess (even while cross-compiling)
8178         * src/configure:      check for endianess (even while cross-compiling)
8179         * src/configure_in.h: check for endianess (even while cross-compiling)
8180         * src/avr/gen.c:        remove old endianess stuff
8181         * src/mcs51/gen.c:      remove old endianess stuff
8182         * src/ds390/gen.c:      remove old endianess stuff
8183         * src/pic/gen.c:        remove old endianess stuff
8184         * src/pic/genarith.c:   remove old endianess stuff
8185         * src/pic/glue.c:       fix endianess check
8186         * src/pic16/gen.c:      remove old endianess stuff
8187         * src/pic16/genarith.c: remove old endianess stuff
8188         * src/pic16/glue.c:     fix endianess check
8189         * src/xa51/gen.c:       remove old endianess stuff
8190         * src/z80/gen.c:        fix endianess check
8191         * src/SDCCglue.c:       fix endianess check
8192         * src/ds390/peeph.def: fix bug 700036
8193
8194 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8195
8196         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8197         * src/configure: find appropriate data-types on host for SDCC's int and long
8198         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8199         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8200         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8201
8202 2003-03-07    <johan AT balder>
8203
8204         Just a big NOOP:
8205                 some minor cleanups before the big shot
8206                 OP_DEFS and OP_USES now use Kevin's protection
8207                 new option --nolabelopt
8208
8209         * src/SDCCBBlock.c:
8210         * src/SDCCast.c,:
8211         * src/SDCCcflow.c:
8212         * src/SDCCcse.c:
8213         * src/SDCCicode.c:
8214         * src/SDCCicode.h:
8215         * src/SDCClabel.c:
8216         * src/SDCCloop.c:
8217         * src/SDCCmain.c:
8218         * src/ds390/ralloc.c:
8219         * src/mcs51/ralloc.c:
8220         * src/pic/ralloc.c:
8221         * src/xa51/ralloc.c:
8222         * src/z80/ralloc.c:
8223
8224 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8225
8226         * src/pic/pcode.c (get_op): fix 64 bit warnings
8227         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8228         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8229         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8230         * support/regression/tests/malloc.c: fix 64 bit warnings
8231
8232 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8233
8234         * src/mcs51/gen.c (genMinus): fixed bug 696436
8235
8236 2003-03-02  Borut Razem <borut.razem AT siol.net>
8237
8238         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8239
8240 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8241
8242         * configure.in: test for mkstemp
8243         * sdccconf_in.h: add HAVE_MKSTEMP
8244
8245 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8246
8247         * device/include/ctype.h: removed warning while using --stack-auto
8248         * device/include/malloc.h: removed warning while using --stack-auto
8249         * device/include/string.h: removed warning while using --stack-auto
8250
8251 2003-02-23  Borut Razem <borut.razem AT siol.net>
8252
8253         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8254         because NDEBUG is defined (see man assert)
8255         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8256
8257 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8258
8259         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8260         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8261
8262 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8263
8264         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8265         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8266
8267 2003-02-18    <johan AT balder>
8268
8269         * as/mcs51/asmain.c (asmbl): module can start with a digit
8270         * as/z80/asmain.c (asmbl): module can start with a digit
8271
8272 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8273
8274         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8275         * src/asm.c: fix pipe() for Mingw32
8276
8277 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8278
8279         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8280         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8281         make -V work again; --c1mode reads now from stdin
8282         * doc/sdccman.lyx: added --c1mode
8283         * support/Util/SDCCerr.c: new messages for c1 mode
8284         * support/Util/SDCCerr.h: new messages for c1 mode
8285         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8286
8287 2003-02-15    <johan AT balder>
8288
8289         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8290
8291 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8292
8293         * doc/sdccman.lyx: Environment variables, -o and other minor things
8294
8295 2003-02-14    <johan AT balder>
8296
8297         * src/xa51/main.c: before anyone really tries to use it :)
8298
8299         * Install doc's in share/sdcc/doc
8300         * removed some obsolete files
8301         * Do a proper make distclean and uninstall
8302         M Makefile.common.in
8303         R sdccbuild.sh
8304         M as/Makefile
8305         M device/include/Makefile.in
8306         M device/lib/Makefile.in
8307         M doc/sdccman.lyx
8308         M link/Makefile
8309         M sim/ucsim/doc/Makefile.in
8310         M src/clean.mk
8311         R src/avr/peeph.rul
8312         R src/xa51/peeph.rul
8313         M support/cpp2/Makefile.in
8314         M support/makebin/Makefile
8315
8316
8317 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8318
8319         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8320
8321 2003-02-10  Borut Razem <borut.razem AT siol.net>
8322
8323         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8324         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8325         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8326         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8327         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8328         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8329         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8330         src/z80/Makefile.bcc: Borland Makefile cleanup
8331         * as/z80/Makefile.bcc: Added Borland Makefile
8332         * support/cpp2/borland.h: Removed
8333
8334 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8335
8336         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8337         * src/SDCC.lex: new pragma NOIV
8338         * src/SDCCglobl.h: new pragma NOIV
8339         * src/SDCCmem.c: new pragma NOIV
8340
8341 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8342
8343         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8344
8345 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8346
8347         * src/SDCCmain.c: signal handling is switched off by --debug
8348         * doc/Makefile: small fix for install; use clean.mk again
8349         * doc/clean.mk: clean *.pdf and *.html too
8350
8351 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8354         * device/lib/printfl.c: fix a ds390 bug by making it portable
8355         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8356         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8357         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8358         * debugger/mcs51/cmd.c: converted multi-line string literals
8359         * sim/ucsim/globals.cc: converted multi-line string literals
8360         * src/SDCCmain.c: introduced signal handler to remove temp files
8361         * doc/Makefile: small tweaks, implement clean
8362         * doc: removed generated files
8363
8364 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8365
8366         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8367         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8368         Address Record is not correctly generated for DS390."
8369
8370 2003-02-02  Borut Razem <borut.razem AT siol.net>
8371
8372         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8373         * as/mcs51/asm.h: fixed compilation with Borland C
8374         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8375         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8376         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8377         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8378         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8379         src/z80/Makefile.bcc: delete $(LIB) only if exist
8380         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8381
8382 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         * device/include/malloc.h: introduced NULL
8385         * device/include/string.h: introduced NULL
8386         * device/include/stdlib.h: introduced NULL
8387         * device/lib/_memcpy.c: removed NULL
8388         * device/lib/_strcat.c: removed NULL
8389         * device/lib/_strchr.c: removed NULL
8390         * device/lib/_strcmp.c: removed NULL
8391         * device/lib/_strcpy.c: removed NULL
8392         * device/lib/_strcspn.c: removed NULL
8393         * device/lib/_strlen.c: removed NULL
8394         * device/lib/_strncat.c: removed NULL
8395         * device/lib/_strncmp.c: removed NULL
8396         * device/lib/_strncpy.c: removed NULL
8397         * device/lib/_strpbrk.c: removed NULL
8398         * device/lib/_strrchr.c: removed NULL
8399         * device/lib/_strspn.c: removed NULL
8400         * device/lib/_strstr.c: removed NULL
8401         * device/lib/_strtok.c: removed NULL
8402         * device/lib/malloc.c: removed NULL, include own header
8403
8404 2003-02-02    <johan AT balder>
8405
8406         * 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
8407         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8408         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8409         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8410         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8411         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8412
8413 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8414
8415         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8416         area 'DATA'"
8417
8418 2003-02-01    <johan AT balder>
8419
8420         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8421
8422 2003-01-31    <johan AT CP255758-A>
8423
8424         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8425
8426 2003-01-30    <johan AT balder>
8427
8428         * src/SDCCBBlock.c: automatic bug detection
8429         * src/SDCCicode.c: automatic bug detection
8430
8431 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8432
8433         * src/SDCCglobl.h:   now --xram-size 0 works
8434         * src/SDCCmain.c:    now --xram-size 0 works
8435
8436 2003-01-29    <johan AT balder>
8437
8438         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8439
8440 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8441
8442         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8443         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8444         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8445         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8446         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8447         * src/SDCCmain.c:    Added options --xram-size and --code-size
8448
8449 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8450
8451         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8452         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8453
8454 2003-01-27    <johan AT balder>
8455
8456         * src/SDCC.y: fixed bug #613764
8457
8458 2003-01-26    <johan AT balder>
8459
8460         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8461         * src/SDCCsymt.h: fixed bug #673374
8462         * src/SDCCglue.c: fixed bug #661910
8463         * src/SDCCast.c: fixed bug #458099 and 673374
8464
8465 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8468         * as/mcs51/strcmpi.h: added
8469         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8470         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8471         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8472         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8473         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8474         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8475         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8476         * as/mcs51/Makefile.aslink: new module strcmpi
8477         * as/mcs51/Makefile.asx8051: new module strcmpi
8478         * as/mcs51/Makefil.bcc: new module strcmpi
8479         * as/mcs51/Makefile.in: new module strcmpi
8480         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8481
8482 2003-01-26    <johan AT balder>
8483
8484         * src/SDCCglue.c: reverted back to 1.124
8485         * src/SDCCast.c: reverted back to 1.156
8486         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8487
8488 2003-01-25    <johan AT balder>
8489
8490         * src/SDCCglue.c: A better fix for bug #661910
8491         * src/SDCCast.c: A better fix for bug #661910
8492         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8493
8494 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8495
8496         * src/Makefile.in: remove spawn.o
8497         * src/SDCCmain.c: remove spawn.h
8498         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8499         * src/spawn.c: removed
8500         * src/spawn.h: removed
8501         * support/regression/ports/ds390/spec.mk: link with -r
8502
8503 2003-01-24    <johan AT CP255758-A>
8504
8505         * src/ds390/gen.c (aopOp): fixed bug #667458
8506         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8507         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8508         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8509
8510 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8511
8512         * src/mcs51/peeph.def: better assembler identation by Frieder
8513         * src/mcs51/gen.c: better assembler identation by Frieder
8514
8515 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         * as/z80/string.h: removed for gcc 3.2
8518         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8519         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8520
8521 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8522
8523         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8524         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8525         * support/regression/Makefile: separate temp files for ports
8526         * support/regression/generate-cases.py: separate temp files for ports
8527         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8528         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8529
8530 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8531
8532         * moved tinitalk to device/examples/ds390
8533
8534 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8535
8536         * as/mcs51/lkmem.c: rflag is for DS390
8537         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8538         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8539                          (linkEdit): move mem- and map-files the same way as ihx-files
8540         * src/z80/main.c (_setDefaultOptions): removed --generic
8541         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8542         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8543         * src/pic/glue.c (picglue): --c1mode works again
8544         * src/pic16/glue.c (pic16glue): --c1mode works again
8545         * src/asm.c (printCLine): fix #660034
8546
8547 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8548
8549         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8550         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8551         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8552         * as/mcs51/lkmem (summary): better fix for sp problem
8553         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8554         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8555         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8556                                               remove --stack-after-data
8557
8558 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8559
8560         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8561         * src/SDCCutil.c (join): ugly bug: missing '\0'
8562         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8563
8564 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8565
8566         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8567         * src/port.h: typo
8568         * src/pic/main.c (_asmCmd): gpasm supports -o
8569         * src/z80/main.c: more general macros
8570         * device/lib/Makefile.in: remove intermediate files
8571
8572 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8573
8574         * .version: Bumped version number to 2.3.3
8575         * src/SDCCBBlock.c: new option -o
8576         * src/SDCCglobl.h: new option -o
8577         * src/SDCCglue.c: new option -o
8578         * src/SDCCmain.c: new option -o
8579         * src/asm.c: new option -o
8580         * src/ds390/main.c: new option -o
8581         * src/pic/glue.c: new option -o
8582         * src/pic/pcode.c: new option -o
8583         * src/pic/ralloc.c: new option -o
8584         * src/pic16/glue.c: new option -o
8585         * src/pic16/pcode.c: new option -o
8586         * src/pic16/ralloc.c: new option -o
8587         * src/z80/main.c: new option -o
8588         * device/lib/Makefile.in: use -o
8589         * support/regression/ports/ds390/spec.mk: use -o
8590         * support/regression/ports/gbz80/spec.mk: use -o
8591         * support/regression/ports/mcs51/spec.mk: use -o
8592         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8593         * support/regression/ports/z80/spec.mk: use -o
8594         * support/regression/ports/ucz80/spec.mk: use -o
8595         * support/regression/ports/xa51/spec.mk: use -o
8596         * support/regression/fwk/lib/timeout.c: fix usage string
8597
8598 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8599         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8600
8601 2003-01-07    <johan AT balder>
8602
8603         * src/SDCCast.c (decorateType): fixed bug #600035
8604
8605 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8606         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8607         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8608         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8609         * src/pic/pcode.c: outcommented unused variable to remove warnings
8610         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8611
8612 2003-01-06    <karl AT turbobit.com>
8613         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8614    regression tests.
8615
8616 2003-01-06    <johan AT balder>
8617
8618         * src/SDCCicode.c: fixed array add
8619
8620 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8621         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8622         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8623
8624 2003-01-04    <johan AT balder>
8625
8626         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8627
8628 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8629         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8630
8631 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8632         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8633         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8634
8635 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8636         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8637
8638 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8639         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8640
8641 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8642         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8643
8644 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8645
8646     * in \sdcc\as\mcs51\ changed these files in order to create an
8647     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8648     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8649     following files to include the previous two files: aslink.dsp,
8650     Makefile.aslink, Makefile.bcc, and Makefile.in.
8651
8652     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8653     .adb instead of .cdb
8654
8655 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8656
8657         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8658         value from option --iram-size.
8659
8660 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8661
8662         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8663         dram[] array.
8664
8665 2002-09-18    <wiml AT hhhh.org>
8666
8667         * SDCClrange.h: exposed setFromRange() and setToRange()
8668         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8669           packRegsForAccUse() (bug 542397)
8670         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8671           multiple times and emitting the fetch operations more than once
8672           added aopGetUsesAcc() function to allow binary operators to
8673           fetch their operands in the correct order; made genMinus() emit
8674           compact code for X = LITERAL - Y
8675
8676 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8677         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8678         sprintf() in line 1267.
8679
8680 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8681         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8682         like ports.
8683
8684 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8685         Changes to aslink (All the changes are marked with 'JCF'):
8686
8687         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8688         summary().
8689
8690         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8691         area BSEG.  Also moves, if possible, the DATA area down into the internal
8692         ram so more space is available.
8693
8694         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8695         sflag.
8696
8697         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8698         not bytes.  Function summary() which creates a memory usage summary
8699         file with extension .mem.  Reports of overlaping stack and small stack
8700         size.  If the space for the stack is less than 16 bytes aslink trows a
8701         warning.
8702
8703         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8704         the 8051.  Option 'y' for memory summary output file.
8705
8706         Changes to sdcc (All the changes are marked with 'JCF'):
8707
8708         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8709
8710         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8711         overlaying area for it (uses RegBankUsed[4]).
8712
8713         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8714         bank zero as used by default.  By default aslink locates the stack
8715         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8716         the creation of the .mem file.  Delegates the allocation of data area
8717         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8718         the begining of the stack area to aslink.
8719
8720         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8721         glue() in SDCCglue.c creates an area for it.
8722
8723 2002-09-03  Borut Razem <borut.razem AT siol.net>
8724         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8725         sdcc/src/pic/glue.c:
8726         introduced atexit() handler for teporay files removal in case of
8727         errors, assertions, ...
8728
8729 2002-08-29  Borut Razem <borut.razem AT siol.net>
8730         * sdcc/support/cpp2/auto-host_vc_in.h:
8731         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8732         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8733         Maybe there is a similar problem with BORLANDC? It should be checked!
8734
8735         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8736         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8737         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8738         was not executed, and the compiler (cl) launched a warning:
8739         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8740
8741 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8742         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8743
8744 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8745         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8746
8747         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8748           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8749           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8750           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8751           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8752           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8753           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8754         - added Release configuration in VS projects
8755         - review of compiler an linker options
8756         - VC .exe files are generated in bin_vc directory, not to interfere
8757           with binaries generated from other projects (cygwin, mingw, bcc ...)
8758
8759         * sdcc/src/yacc.dsp: added
8760
8761         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8762         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8763         and insert the version number definitions from .version
8764
8765         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8766
8767         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8768         added - genarate auto-host.h using auto-host_vc_in.h as template
8769
8770         * sdcc/sdcc_vc.h,
8771         removed from CVS, generated automatically
8772
8773 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8774         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8775
8776 2002-08-11  Borut Razem <borut.razem AT siol.net>
8777         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8778
8779 2002-08-10  Borut Razem <borut.razem AT siol.net>
8780         * src/SDCCmain.c (main):
8781         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8782         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8783         The consequence was that some temporary files were not removed.
8784
8785         * src/SDCCglue.c:
8786         unification of code in functions tempfilename() and tempfile():
8787         function tempnam() is defined in Visual Studio 6.0 and .NET
8788
8789         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8790
8791         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8792           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8793         - removed compiler command line option /WX: Treats all warnings as errors
8794         - update a list of source files, included into the project
8795
8796         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8797           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8798         changed project type to Generic Project so that can be correcly converted to VS.NET project
8799
8800         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8801
8802         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8803
8804         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8805
8806         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8807         added return 0 statements after assert() to make compiler happy
8808
8809         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8810         added newline in the def file to keep MSC compiler satisfied
8811
8812         * sdcc/src/z80/gen.c:
8813         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8814           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8815         - solved MSC error in function aopDump()
8816
8817         * sdcc_vc.h: define PREFIX as "\\sdcc"
8818
8819 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8820         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8821
8822 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8823         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8824         - Rewrote the register banking algorithm.
8825         - Added pCode live-range analysis to registers (for now, only non-used and
8826         singly-used registers optimized away)
8827
8828         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8829
8830         * 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.
8831
8832 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8833         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8834
8835 2002-04-22  Michael Hope  <michaelh AT vroom>
8836
8837         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8838
8839         * configure.in (DD_COPT): Added include support required for gbdk.
8840
8841         * .version: Bumped version number just to increase it.
8842
8843         * src/SDCCmain.c: Added -nostdinc to the default options.
8844
8845 2002-04-15  Michael Hope  <michaelh AT vroom>
8846
8847         * device/lib/z80/printf.c (sprintf): Added.
8848
8849         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8850
8851         * src/z80/peeph.def: Added transpose redundent load rule.
8852
8853         * src/z80/main.c: Added force callee saves for jaune.
8854
8855         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8856
8857         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8858
8859 2002-03-28  Johan Knol  <johan AT balder>
8860
8861         * src/SDCCval.c: fixed bug #532436
8862
8863 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8864         * /src/port.h:
8865         Added "char *Processor" field to the port structure.
8866
8867         * /src/SDCCmain.c:
8868         Added -p option. Allows port dependent processor to be specified.
8869
8870         * all ports:
8871         Initialized the new field char *Processor field to NULL in all ports
8872
8873         * /src/pic/*:
8874         Compiler generated registers for interrupt context saving
8875         were not getting allocated.
8876
8877 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8878
8879         * /src/SDCCast.c:
8880         Fixed left shift. Will promote the left side of a left shift
8881         if a) left shifting more than size of operand or b) when assigned
8882         to something size > size of left side
8883
8884 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8885         * src/pic/*
8886         tons of changes. Register allocation has been
8887         rewritten. Added customization for the various PICs. Flow
8888         analysis is restructured. ...
8889
8890         * src/pic/device.h:
8891         Added
8892
8893         * src/pic/device.c:
8894         Added. device.c is a PIC port hack to accomodate variations
8895         in PIC devices.
8896
8897 2002-03-13  Michael Hope  <michaelh AT vroom>
8898
8899         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8900
8901 2002-03-04  johanknol  <johanknol AT manik>
8902
8903         * /src/SDCCval.c: fixed
8904
8905         const unsigned char arr[][2] = { { 0, 1 } };
8906         t18.c:1: error: Initializer element is not constant
8907
8908 2002-03-04  bela  <bela AT manik>
8909
8910         * /device/include/mcs51reg.h:
8911         ds89c420 register definition update
8912
8913 2002-03-03    <johan AT FRIJA>
8914
8915         * support/Util/SDCCerr.c: did something, but don't no why anymore
8916
8917         * support/regression/tests/bug-524691.c: made it a little less shy
8918
8919         * src/SDCCast.c (decorateType): fixed bug #524697
8920
8921         * src/SDCCast.c: made some lineno improvements
8922
8923         * src/SDCCval.c (getNelements): changed warning to error
8924
8925         * src/SDCCglue.c (printIvalArray): changed warning to error
8926
8927         * src/SDCCicode.c: fixed a warning for mingw
8928
8929         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8930
8931         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8932
8933 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8934
8935         * src/ds390/peeph.def:
8936         Added some more peephole rules
8937
8938         * src/ds390/gen.c: Various fixes & enhancements
8939
8940         * src/SDCClrange.c, src/SDCClrange.h:
8941         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8942
8943         * src/ds390/ralloc.c:
8944         various fixes & enhancements (ds390) specific
8945
8946         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8947         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8948         from rallocs.
8949
8950         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8951
8952 2002-03-02    <johan AT FRIJA>
8953
8954         * src/SDCCast.c (decorateType): fixed bug #524708
8955
8956         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8957
8958         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8959
8960 2002-03-01  Michael Hope  <michaelh AT vroom>
8961
8962         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8963
8964         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8965
8966 2002-03-01    <johan AT FRIJA>
8967
8968         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8969
8970         * src/SDCCast.c (decorateType): fixed bug #524209
8971
8972         * src/SDCCval.c (valNot): fixed bug #524195
8973
8974 2002-02-26    <johan AT balder>
8975
8976         * src/xa51/gen.c: fixed a warning
8977
8978         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8979
8980         * src/SDCCast.c (decorateType): fixed bug #522534
8981
8982 2002-02-23    <johan AT balder>
8983
8984         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8985
8986 2002-02-22    <johan AT balder>
8987
8988         * src/SDCCast.c: fixed bug #514865
8989
8990         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8991
8992 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8993
8994         * sdcc/src/SDCCloop.c:
8995         Previous fix was not good. basic blocks that have "break" or "return" are
8996         not really partof a loop , but live ranges used in these blocks should
8997         be live thru the entire loop, so set partOfLoop but don't add them to
8998         loop region
8999
9000 2002-02-21    <johan AT FRIJA>
9001
9002         * src/SDCCcse.c: fixed bug #514308
9003
9004 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9005
9006         * src/SDCCloop.c:
9007         Fixed BUG #519583. If a conditional block ended in a return/break
9008         statement inside a loop, it was not being considered part of the loop.
9009
9010         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9011
9012 2002-02-10  Karl Bongers <karl AT turbobit.com>
9013
9014         * debugger/*:
9015         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9016         with lots of comments and notes.
9017
9018         * device/examples/test2.c:
9019         Fix bug, "red" variable not being initialized(compiler complained).
9020
9021         * device/examples/Makefile, examples/test3.c:
9022         Add Makefile in device/examples folder, compiles test3.c
9023         for use as a multiple module SDCDB test case.
9024
9025         * sim/ucsim/cmd.src/cmdset.cc:
9026         Took out debug printfs in ucsim "next" command.
9027
9028         * sim/ucsim/xa.src:
9029         Karl and Johan start ucsim XA support.  Most dissassembly working,
9030         about 75% emulation done(plenty of work remaining).
9031
9032         * sim/ucsim/z80.src:
9033         Add Z80 support to ucsim, add test-ucz80 regression test,
9034         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9035         Notice z80 compiler fails on examples/test3.c/crc code.
9036
9037 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9038
9039         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9040         Added support for --parms-in-bank1
9041
9042         * src/ds390/peeph.def:
9043         added a few more peephole optimzations
9044
9045         * src/ds390/main.c:
9046         1) added __builtin_inp & __builtin_outp used to read in data of given length
9047            from a memory mapped port
9048         2) added __builtin_memcmp
9049         3) added __builtin_swapw swap bytes of a short
9050
9051         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9052         1) handle multiple send & receives from register bank1
9053         2) ralloc can now allocate DPTR1 to some liveRanges
9054
9055         * src/SDCCsymt.c, src/SDCCsymt.h:
9056         changes to handle multiple sends & receives
9057
9058         * src/SDCCptropt.h:
9059         added some pointer arithmetic optimization
9060
9061         * src/SDCCptropt.c:
9062         added some pointer arithmetic optimizations but not stable yet so not
9063         called from anywhere (will get this working shortly)
9064
9065         * src/SDCCopt.c: fixed for multiple sends & receives
9066
9067         * src/SDCCmain.c:
9068         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9069         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9070            set preprocessor defines (depending on options)
9071
9072         * src/SDCCicode.c, src/SDCCicode.h:
9073         changes made to handle multiple sends & receives
9074
9075         * src/SDCCglobl.h:
9076         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9077
9078         * src/SDCCcse.c, src/SDCCcse.h:
9079         added function findbackward def (to be used in upcoming optimization)
9080
9081         * src/SDCCcflow.c, src/SDCCcflow.h:
9082         added function returnAtEnd - to determine if a basic block terminates with
9083         a RETURN iCode
9084
9085         * src/SDCCast.c, src/SDCCast.h:
9086         added option parms-in-bank1
9087
9088         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9089         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9090         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9091         adjusted for --parms-in-bank1 option
9092
9093         * device/include/string.h:
9094         donot redefine "reentrant" keyword
9095
9096         * device/include/ds80c390.h: Added some more SFRs
9097
9098 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9099
9100         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9101
9102 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9103
9104         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9105
9106 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9107
9108         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9109
9110 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9111
9112         * Added --xram-movc option
9113
9114 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9115
9116         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9117
9118 2002-01-11  Johan Knol
9119
9120         * Added math lib of Jesus Calvino-Fraga
9121
9122 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9123
9124         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9125         * support/regression/Makefile: new target test-mcs51-stack-auto
9126         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9127
9128 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9129
9130         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9131
9132 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9133
9134         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9135
9136 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9137
9138         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9139
9140         * src/SDCCglue.h: add definition for printIvalChar()
9141
9142 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9143
9144         * src/SDCCast.c: fix #498138 by Johan
9145
9146         * src/SDCCglue.c: fix #498138 by Johan
9147
9148 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9149
9150         * support/regression/Makefile: fix clean
9151
9152         * support/regression/ports/ds390/support.c: fix transmission of last character
9153
9154 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9155
9156         * /sdcc/src/ds390/gen.c:
9157         a) improved computing address of stack variable
9158         b) took out some #if 0 code
9159         c) improved parmBytes adjustment
9160         d) improved genPlusIncr & genMinusIncr
9161         e) genCmp could generate bad code (when left assigned to DPTR)
9162         f) Fixed bug in hasInc
9163
9164         * /sdcc/src/ds390/ralloc.c:
9165         a) packRegsForSupport could mess up live information (Fixed)
9166         b) packRegsDPTRuse could be incorrect for left & right shift
9167
9168         * /sdcc/src/mcs51/ralloc.c:
9169         packRegsForSupport could mess up the live information (Fixed)
9170
9171         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9172
9173         * /sdcc/src/SDCCast.c:
9174         can reverse a loop even if function call is present as long
9175         as the loop control variable is local & is not passed as parameter
9176
9177 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9178
9179         * /sdcc/ChangeLog: *** empty log message ***
9180
9181         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9182         More builtin function additions for TININative
9183
9184         * /sdcc/src/ds390/ralloc.c:
9185         Had broken the regression testsuite
9186
9187         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9188
9189         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9190         Added funcattr hasStackParms will be set for reentrant functions when there
9191         are paramteres on the stack, this helps in minimizing frame pointer generation
9192         typeFromStr can handle function pointers now
9193
9194         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9195         *** empty log message ***
9196
9197 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9198
9199         * /src/ds390/gen.c, /src/ds390/main.c:
9200         More builtin function additions for TININative
9201
9202         * /src/ds390/ralloc.c:
9203         Had broken the regression testsuite
9204
9205         * /src/SDCCast.c: Fixed a bug in dumptree
9206
9207         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9208         Added funcattr hasStackParms will be set for reentrant functions when there
9209         are paramteres on the stack, this helps in minimizing frame pointer generation
9210         typeFromStr can handle function pointers now
9211
9212         * /doc/builtins.txt, /doc/TININative.txt:
9213         *** empty log message ***
9214
9215
9216 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9217
9218         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9219         ALPHA version for -mTININative
9220
9221         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9222         updated to reflect changes in the port structure
9223
9224         * /src/port.h:
9225         added function do_assemble (similar to do_link) if non-null this function
9226         will be called to do assembly (-mTININative) requires a multi command
9227         assembly
9228         added function genAssemblerEnd will be called to generate assembler Epilogue
9229
9230         * /src/SDCCsymt.c:
9231         added _JavaNative to debug info printing
9232
9233         * /src/SDCCmain.c: added option --tini-libid
9234         added port->do_assemble function (-mTININative) has a multi command assemble
9235
9236         * /src/SDCCglue.c: Disabled "constExpr" check
9237         added port->genAssemblerEnd function
9238
9239         * /src/SDCCglobl.h: Added option --tini-libid value
9240
9241         * /src/SDCCast.h:
9242         tookout optimizeCompare from the header (has no external references)
9243
9244         * /src/SDCCast.c: made one more function "static"
9245
9246 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9247
9248         * src/z80/mappings.i: Added z80asm support.
9249
9250         * src/z80/main.c: Added z80asm support on --asm=z80asm
9251
9252         * src/z80/gen.c: Fixed asm portability issues.
9253
9254         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9255
9256         * src/SDCCglue.c (printExterns): Added global/extern split.
9257
9258 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9259
9260         * support/regression/Makefile: added test for mcs51 model large
9261
9262         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9263
9264         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9265
9266 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9267
9268         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9269
9270 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9271
9272         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9273
9274         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9275
9276 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9277
9278         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9279
9280         * support/regression/tests/simplefloat.c: Port to mcs51.
9281
9282 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9283         * support/regression/tests/bug-485362.c: Added.
9284
9285         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9286
9287         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9288
9289         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9290
9291         * src/z80/gen.c (aopDump): Added a dump function.
9292
9293 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9294         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9295
9296         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9297
9298         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9299
9300         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9301
9302         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9303
9304         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9305
9306         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9307
9308         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9309
9310         * support/regression/ports/ds390/support.c: Use tinibios.
9311
9312         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9313
9314 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9315
9316         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9317         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9318
9319         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9320
9321         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9322
9323 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9324
9325         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9326
9327         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9328         (packRegsForIYUse): Created and optimised.
9329
9330 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9331
9332         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9333 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9334
9335         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9336
9337         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9338
9339         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9340
9341 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9342
9343         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9344
9345         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9346
9347 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9348
9349         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9350
9351         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9352
9353         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9354
9355 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9356
9357         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9358         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9359         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9360
9361         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9362
9363         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9364         (genNotFloat): Added.
9365         (genUminusFloat): Added.
9366
9367         * device/lib/z80/Makefile: Added floating pt stubs.
9368
9369         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9370
9371         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9372
9373         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9374
9375 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9376
9377         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9378
9379         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9380
9381         * sdcc/support/regression/Makefile: Add port ds390.
9382
9383         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9384
9385         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9386
9387         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9388
9389         * sdcc/support/regression/ports/ds390/support.c: Added.
9390
9391         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9392
9393         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9394
9395         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9396
9397 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9398
9399         * device/include/malloc.h: Added z80 and gbz80 support.
9400
9401         * device/lib/gbz80/heap.s: Added.
9402
9403         * device/lib/z80/heap.s: Added.
9404
9405         * device/lib/malloc.c: Added z80 and gbz80 support.
9406
9407         * support/regression/tests/malloc.c (testMalloc): Added.
9408
9409         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9410
9411         * support/regression/tests/bug-478094.c: Added.
9412
9413         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9414
9415 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9416
9417         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9418
9419         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9420
9421         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9422
9423         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9424
9425         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9426
9427 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9428
9429         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9430
9431 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9432
9433         * support/regression/tests/bug-477927.c: Added.
9434
9435         * src/z80/peeph.def: Added minor rules.
9436
9437         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9438
9439         * src/z80/peeph.def: Added jump optimisation modification.
9440
9441 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9442
9443         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9444
9445 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9446
9447         * support/regression/tests/funptrs.c: Added.
9448
9449 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9450
9451         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9452
9453 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9454
9455         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9456
9457         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9458
9459         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9460         (movLeft2ResultLong): Created.
9461
9462         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9463         (joinPushes): Added.  Joins two char pushes into a word push.
9464
9465 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9466
9467         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9468
9469         * support/makebin/Makefile (install): Added creation of dest dir.
9470
9471 2001-10-24 Karl Bongers <karl AT turbobit.com>
9472
9473         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9474
9475 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9476
9477         * src/z80/ralloc.c: Turned off faulty pack for one use.
9478
9479         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9480
9481         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9482
9483 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9484
9485         * support/regression/Makefile: Improved clean
9486
9487         * support/regression/ports/gbz80/spec.mk: Added clean
9488
9489         * support/regression/ports/host/spec.mk: Added clean
9490
9491         * support/regression/ports/z80/spec.mk: Added clean
9492
9493         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9494
9495         * support/regression/ports/mcs51/timeout.c: little improvements
9496
9497 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9498
9499         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9500
9501         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9502
9503         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9504
9505 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9506
9507         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9508
9509         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9510
9511 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9512         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9513
9514         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9515
9516         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9517
9518         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9519
9520         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9521
9522         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9523
9524         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9525
9526         * support/regression/tests/longor.c: Added.
9527
9528 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9529
9530         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9531
9532         * as/mcs51/aslink.h: define PATH_MAX
9533
9534         * as/mcs51/asm.h: define PATH_MAX
9535
9536         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9537
9538         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9539
9540         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9541
9542         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9543
9544         * src/SDCCglobl.h: define PATH_MAX
9545
9546         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9547
9548         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9549
9550 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9551
9552         * src/z80/gen.c (gencjneshort): Fixed
9553
9554         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9555
9556 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9557
9558         * support/regression/tests/bug-469671.c: Added.
9559
9560         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9561
9562 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9563
9564         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9565
9566         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9567
9568 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9569
9570         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9571
9572         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9573
9574         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9575
9576         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9577
9578         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9579
9580         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9581
9582         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9583
9584 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9585
9586         * 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.
9587
9588         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9589
9590         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9591
9592 2001-10-07    <johan AT FRIJA>
9593
9594         * device/lib/gets.c (gets): fixed the return value.
9595
9596 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9597         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9598
9599         * 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.
9600
9601         * 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.
9602
9603         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9604
9605         * src/pic/gen.c: Removed Safe_strdup.
9606
9607         * configure.in: Added option to enable libgc support.
9608
9609         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9610         (bitVectUnion): Optimised.
9611         (bitVectIntersect): Optimised.
9612         (bitVectBitsInCommon): Optimised.
9613         (bitVectCplAnd): Optimised.
9614
9615         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9616
9617 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9618
9619         * src/SDCCmain.c: distinguish between assembler debug and plain options
9620
9621         * src/avr/main.c:   remove standard assembler options
9622
9623         * src/ds390/main.c: remove standard assembler options
9624
9625         * src/mcs51/main.c: remove standard assembler options
9626
9627         * src/port.h: removed "PENDING" comment
9628
9629 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9630
9631         * src/device/lib/_mulint.c  : new, with assember functions
9632
9633         * src/device/lib/_mullong.c : new, with assember functions
9634
9635         * src/device/lib/_divuint.c : with assember functions
9636
9637         * src/device/lib/_divsint.c : with assember functions
9638
9639         * src/device/lib/_divulong.c: with assember functions
9640
9641         * src/device/lib/_divslong.c: with assember functions
9642
9643         * src/device/lib/_moduint.c : with assember functions
9644
9645         * src/device/lib/_modsint.c : with assember functions
9646
9647         * src/device/lib/_modulong.c: with assember functions
9648
9649         * src/device/lib/_modslong.c: with assember functions
9650
9651         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9652
9653         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9654
9655         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9656                                       replaced _mululong.c and _mulslong.c by _mullong.c
9657
9658 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9659
9660         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9661
9662 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9663
9664         * src/SDCCglue.c: test, if win32api is available for MINGW
9665
9666 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9667
9668         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9669         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9670         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9671         * support/regression/ports/host/spec.mk: removed GENERIC
9672         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9673         * support/regression/ports/z80/spec.mk: removed GENERIC
9674
9675 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9676
9677         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9678
9679         * support/regression/tests/bug-467035.c: Created.
9680
9681 2001-10-01    <johan AT FRIJA>
9682
9683         * src/SDCC.y: fixed bug #466586 part 1
9684
9685 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9686
9687         * SDCCicode.c: z80 has no generic pointers
9688         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9689
9690 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9691
9692         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9693
9694 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9695
9696         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9697
9698         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9699
9700 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9701
9702         * configure.in: Fixed up so that ucsim is only configured once.
9703
9704         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9705
9706         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9707         (getPathDifference): As above.
9708
9709         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9710
9711         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9712
9713 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9714         * .version: Updated to 2.3.1
9715
9716         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9717         Added copyright header.
9718
9719         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9720         (assemble): Added support for macro based assembler commands.
9721         (linkEdit): Added support for macro based linker commands.
9722         (preProcess): Changed the pre-processor to use macros.
9723         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9724         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9725
9726         * device/lib/z80/crt0.s: Added module name for debugging.
9727
9728 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9729
9730         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9731
9732         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9733
9734         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9735
9736         * src/Makefile.in: Added SDCCmacro and SDCCutil
9737
9738 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9739
9740         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9741
9742 2001-09-16    <johan AT FRIJA>
9743
9744         * 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.
9745
9746 2001-09-15    <johan AT FRIJA>
9747
9748         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9749         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9750
9751 2001-09-11    <johan AT FRIJA>
9752
9753         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9754
9755 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9756
9757         * support/regression/tests/bug-460444.c: Added test case.
9758
9759         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9760         (genCast): Added justification for all of the asserts.
9761
9762 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9763
9764         * support/regression/support.c: _xdata replaced by xdata
9765
9766         * support/regression/spec.mk: removed _generic
9767
9768 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9769
9770         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9771
9772         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9773         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9774
9775         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9776
9777         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9778
9779         * support/regression/tests/bug-460010.c: Added test case.
9780
9781         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9782
9783 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9784
9785         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9786
9787         * support/regression/testfwk.c: removed workaround for bug #436344
9788
9789         * support/regression/tests/bp.c: use less memory with mcs51
9790
9791         * support/regression/tests/bug-441448.c: use less memory
9792
9793         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9794
9795         * support/regression/collate-results.py: typo
9796
9797 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9798
9799         * support/regression/tests/fetchoverlap.c: Added new test case.
9800
9801         * support/regression/tests/bp.c: Added new test case.
9802
9803         * support/regression/tests/bug-448984.c: Added new test case.
9804
9805         * support/regression/tests/pow2shifts.c: Added new test case.
9806
9807         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9808         (genlshTwo): Fixed right shift for count > 8.
9809
9810         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9811
9812 2001-09-08    <johan AT FRIJA>
9813
9814         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9815
9816 2001-09-07    <johan AT FRIJA>
9817
9818         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9819
9820         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9821
9822 2001-09-06    <johan AT FRIJA>
9823
9824         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9825         * bernhard noted me at this: "() equals to (void)" (1.38)
9826
9827 2001-09-05    <johan AT FRIJA>
9828
9829         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9830
9831 2001-09-04    <johan AT FRIJA>
9832
9833         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9834
9835
9836 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9837
9838         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9839
9840 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9841
9842         * link/z80/aslink.h: Fixed path for PATH_MAX
9843
9844 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9845
9846         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9847
9848         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9849
9850         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9851
9852         * 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.
9853
9854 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9855
9856         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9857         (genCmp): Fixed up genCmp for the GB with longs.
9858
9859         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9860
9861         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9862
9863         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9864
9865         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9866
9867 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9868
9869         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9870
9871 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9872
9873         * 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.
9874
9875         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9876
9877 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9878
9879         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9880
9881         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9882
9883 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9884
9885   * sim/ucsim/configure:    little improvement of Cygwin-detection
9886   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9887   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9888   * support/regression/tests/bug-221100.c: small changes for mcs51
9889   * support/regression/tests/bug-221168.c: small changes for mcs51
9890   * support/regression/tests/bug-227710.c: small changes for mcs51
9891   * support/regression/tests/staticinit.c: small changes for mcs51
9892   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9893   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9894   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9895
9896 $Revision$