* src/SDCCval.c (constVal): fixed bug 1305065
[fw/sdcc] / ChangeLog
1 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
4         carry must be complemented too
5         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
6         could be emitted by genMinus
7         * src/SDCCval.c (constVal): fixed bug 1305065
8
9 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
10
11         * src/SDCCast.c (addCast): added promotion for bit variables
12         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
13         promotion casts + optimisation
14         (optimizeGetWord): fix warning 'i' might be used uninitialized
15         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
16         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
17
18 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
19
20         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
21         all chars are promoted to int; promotion should be handled in SDCCast.c
22
23 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
24
25         * device/lib/_strcmp.c: Fixed bug 1326457
26
27 2005-10-11 Raphael Neider <rneider AT web.de>
28
29         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
30         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
31
32 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
35         * support/regression/tests/sfr16.c: added test for the sfr32 bug
36
37 2005-10-04 Raphael Neider <rneider AT web.de>
38
39         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
40           device/lib/pic16/pics.all: added pic18f1320
41         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
42
43 2005-09-30 Raphael Neider <rneider AT web.de>
44
45         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
46         * src/pic16/devices.inc: NEW, provides device descriptions
47         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
48
49 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
50
51         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
52           GETHBIT
53
54 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
55
56         * doc/sdccman.lyx: updated Highest Order Bit documentation,
57           documented Any Order Bit, Higher Order Byte and Higher Order Word
58         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
59         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
60           (optimizeGetAbit): new, to get any bit, not only the high bit,
61           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
62           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
63           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
64           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
65             RIGHT_OP: also try GETBYTE, GETWORD optimization,
66             GETABIT, GETBYTE, GETWORD: decorate them,
67           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
68           (ast_print): added GETABIT, GETBYTE, GETWORD
69         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
70         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
71           (geniCodeBinary): new generic binary icode,
72           (ast2iCode): added GETABIT, GETBYTE, GETWORD
73         * src/port.h: updated comment for PORT.hasExtBitOp
74         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
75           (genGetByte): new, to get a single byte,
76           (genGetWord): new, to get a word from a long,
77           (gen51Code): added GETABIT, GETBYTE, GETWORD
78         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
79
80 2005-09-23 Raphael Neider <rneider AT web.de>
81
82         * configure.in, configure: have device/lib/pic configured
83         * device/lib/Makefile.in: added model-pic14
84         * device/lib/clean.mk: added pic/ to clean rule
85         * device/lib/pic: added rudimentary pic14 library providing support
86           functions for multiplication/division/generic pointer access
87         * src/SDCCopt.c (convilong): mark support functions as extern
88           for pic14 port as well
89         * src/pic/gen.c (genMult): added assertions,
90           (genpic14Code): emit warning on unhandled iCodes
91         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
92         * src/pic/pcode.c (pCodeOpCopy),
93         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
94           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
95           SFR_REGISTER}), made safe for future extensions
96         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
97           instructions even if preceeded by SKIP instructions (also remove
98           them); removed unused code
99         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
100           prevents leaving parts of the structure uninitialized after copying
101
102 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
105           ago by me
106         * support/regression/tests/addsub.c: added test for the bug
107
108 2005-09-21 Raphael Neider <rneider AT web.de>
109
110         * device/include/pic16/pic18f1220.h,
111           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
112         * device/lib/pic16/Makefile.rules: added missing opening paren
113         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
114           are provided in genutils.c,
115           (genUminusFloat,genUminus,genCmpEq): added asserts on different
116           operand/result sizes,
117           (genCmp): assert on NULL pointers first, then check deref'ed values
118         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
119           result size
120
121 2005-09-18 Raphael Neider <rneider AT web.de>
122
123         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
124           as these are now unused,
125           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
126         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
127           local, avoids uninitialized pointer dereference on r->name
128         * src/pic16/ralloc.c (newReg): fixed indentation
129
130 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
131
132         * src/SDCCval.c (constVal): fixed bug 730366
133         * support/Util/SDCCerr.c,
134         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
135
136 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
137
138         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
139
140 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
141
142         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
143
144 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
145
146         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
147           (hex2dec): made hex_digit unsigned char, removed ascii dependance
148         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
149           (hex2dec): made hex_digit unsigned char, removed ascii dependance
150         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
151         * packihx/packihx.c (hexDigit): made c unsigned char
152         * as/mcs51/lklibr.c (fndsym),
153         * link/z80/lkgb.c (gb),
154         * link/z80/lklibr.c (fndsym),
155         * link/z80/lkrloc.c (relr),
156         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
157         * src/SDCC.lex (checkCurrFile, process_pragma),
158         * src/SDCCglue.c (spacesToUnderscores),
159         * src/SDCCmain.c (setParseWithComma, processFile),
160         * src/asm.c (tvsprintf, printCLine),
161         * src/avr/gen.c (emitcode, aopPut),
162         * src/ds390/gen.c (emitcode),
163         * src/hc08/gen.c (emitcode, emitinline),
164         * src/mcs51/gen.c (emitcode, genInline),
165         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
166           tokenizeLineNode),
167         * src/pic/ralloc.c (debugLog),
168         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
169           tokenizeLineNode),
170         * src/pic16/ralloc.c (debugLog),
171         * src/z80/main.c (_process_pragma):
172            made all ctype.h function calls safe
173         * src/SDCCopt.c: include math.h for fabs
174         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
175           and used them throughout the code to make ctype.h function calls safe
176         * src/ds390/main.c (asmLineNodeFromLineNode),
177         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
178         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
179            unsigned char*
180         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
181           (newpCodeAsmDir): made ctype.h function calls safe
182         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
183           pic16_emitcode):  made lbp unsigned char*
184         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
185           (pic16_newpCodeAsmDir): made ctype.h function calls safe
186         * src/xa51/gen.c (emitcode),
187         * src/z80/gen.c (_emit2): made lbp unsigned char*
188         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
189            char*
190
191 2005-09-05 Raphael Neider <rneider AT web.de>
192
193         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
194           access bank splitpoint
195
196 2005-09-05 Raphael Neider <rneider AT web.de>
197
198         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
199
200 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
201
202         * .version: changed to version 2.5.3
203         * doc/sdccman.lyx: changed version to 2.5.3,
204           documented --codeseg and --constseg and pragma codeseg and constseg,
205           documented bit parameters (reentrant) and bit returning
206         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
207            currFunc->recvSize, but is this ok for all ports?
208           (ast2iCode): result of ~ on unsigned char must be cast to int for
209            bool to work
210         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
211           function pointers in bit space
212         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
213           (processFuncArgs): call port.reg_parm() with reentrancy info
214         * src/port.h,
215         * src/avr/main.c,
216         * src/ds390/main.c,
217         * src/hc08/main.c,
218         * src/pic/main.c,
219         * src/pic16/main.c,
220         * src/xa51/main.c,
221         * src/z80/main.c: port.reg_parm prototype extended with
222           "bool reentrant" parameter
223         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
224           options.stackAuto for allocating bit register parameters
225         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
226           (genSend): set BitBankUsed if it is,
227           (selectRegBank): factored out of genCall for use in genPcall,
228           (genCall): removed redundant dtype assignmen, use selectRegBank,
229           (genPcall): handle returning in Carry properly, save in F0 if needed,
230           (genReceive): handle bit register parameters
231         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
232           (mcs51_assignRegisters): enable bit registers for all reentrant
233            functions and don't set BitBankUsed unconditionally
234         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
235         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
236         * support/regression/tests/funptrs.c: added tests for BOOL and for return
237
238 2005-08-27 Borut Razem <borut.razem AT siol.net>
239
240         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
241         ppc-osx (Darwin) does not support -u option. It seems that it is
242         supported only on Linux - GNU cp
243
244 2005-08-25 Borut Razem <borut.razem AT siol.net>
245
246         * sim/ucsim/gui.src/serio.src/Makefile.in,
247           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
248           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
249           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
250           install and strip, since the strip at /usr/ccs/bin should be used
251           on solaris
252
253 2005-08-24 Borut Razem <borut.razem AT siol.net>
254
255         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
256
257 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
258
259         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
260         ffffffffu
261
262 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
263
264         * as/mcs51/aslink.h: completed lkrloc.c prototypes
265         * as/mcs51/lkmain.c (link_main): fixed warning
266         * device/include/stdbool.h: ds390 has no advanced bit support yet
267         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
268         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
269         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
270           and updated their macros
271         * src/SDCCval.c (constVal): updated comment for renamed b_long
272
273 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
274
275         * as/mcs51/asdata.c: changed ctype['['] to BINOP
276         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
277           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
278           (oprio): set priority for '['
279         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
280            and adb_24_bit
281         * as/mcs51/asm.h: added defines R_BIT and S_BIT
282         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
283         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
284         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
285           added overlayable BIT_BANK area
286         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
287           (summary2): explain 'T' in legenda
288         * as/mcs51/lkrloc.c: replaced old K&R style,
289           (relr): added R_BIT processing,
290           (errmsg): added "Bit-addressable relocation error",
291           (adb_bit): added for converting from byte- to bit-addressable space,
292           (adb_24_bit): added for converting from byte- to bit-addressable space
293         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
294            used in reentrant functions now even as return value
295         * device/lib/_gptrput.c (_gptrput): removed obsolete code
296         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
297           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
298         * src/SDCCglobl.h: added indicator BitBankUsed
299         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
300            the bit registers b0-b7
301         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
302           (geniCodeCast): fixed bug 1263853,
303           (geniCodeLogicAndOr): put result in bool or char,
304           (geniCodeReceive): added parameter func for accessing the return type,
305           (geniCodeFunctionBody): pass func to geniCodeReceive
306         * src/SDCCmain.c: added indicator BitBankUsed
307         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
308         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
309           (checkSClass): don't put automatic bool/bit on stack,
310           (checkFunction): removed check on function cannot return bit
311         * src/SDCCsymt.h: added newBoolLink prototype
312         * src/mcs51/gen.c (rb1regs): added bit registers,
313           (movc): created for assigning to carry,
314           (pushReg, popReg): created for pushing registers,
315           (sameRegs): check both AOP_REG and AOP_CRY types,
316           (aopOp): handle bit registers,
317           (aopPut): optimization no self-assign,
318           (saveRegisters): push reg->base (bits) only once for bit registers,
319            and use pushReg,
320           (unsaveRegisters): pop reg->base only once and use popReg,
321           (assignResultValue): added parameter func and return in carry for bits,
322           (genIpush): optimization no reload in A if not changed,
323           (genSend): bit parameters in reentrant functions are passed in bit
324            registers by first assigning to bits in B, then save registers and
325            copy B to bits,
326           (genCall): handle returning in Carry properly, save it in F0 if needed,
327           (genPcall): updated assignResultValue call, this is not safe yet for bit
328            returning function !!!
329           (genFunction): don't generate equ's for bit registers and use pushReg,
330           (genEndFunction): take care of bit returning functions and use popReg,
331           (genRet): return bit in Carry,
332           (genIfx): optimize bit registers and other directly addressable bits,
333           (genReceive): updated assignResultValue call
334         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
335           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
336            registers when using stack-auto
337         * src/mcs51/ralloc.c (_G): added allBitregs,
338           (regs8051): added the bit registers,
339           (createStackSpil): use macro IS_BIT,
340           (getRegBit): added to allocate a bit register, else spill,
341           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
342           (updateRegUsage): factored out to ease stepping while debugging,
343           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
344            also allocate bit registers,
345           (fillGaps): handle bit registers,
346           (findAllBitregs): added to create bit vector with all bit registers,
347           (mcs51_allBitregs): returns this bit vector,
348           (mcs51_assignRegisters): when using stack-auto use bit registers for
349            passing parameters and creating local variables
350         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
351
352 2005-08-22 Borut Razem <borut.razem AT siol.net>
353
354         * device/lib/Makefile.in: replaced find option -or with -o
355           to make it run on solaris
356
357 2005-08-22 Raphael Neider <rneider AT web.de>
358
359         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
360           fixes #1265442 (crash on Solaris)
361
362 2005-08-20 Borut Razem <borut.razem AT siol.net>
363
364         * configure, configure.in: added tests for libsocket and libnsl libraries,
365           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
366           from support/regression/Makefile.in
367         * support/regression/Makefile.in: added
368         * device/lib/pic16/Makefile.common.in: force make to use bash shell
369         * sim/ucsim/libtool: regenerated on sparc-solaris
370         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
371           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
372           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
373           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
374           sparc-solaris, which doesn't use GNU ld linker
375         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
376         * as/Makefile: find on sparc-solaris does not support -maxdepth option
377
378 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
379
380         * src/mcs51/peeph.def: updated comments
381
382 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
383
384         * device/lib/_gptrget.c,
385         * device/lib/_gptrput.c: slightly shorter
386         * doc/sdccman.lyx: incremented version
387         * src/mcs51/peeph.def: moved peephole comments to the line of first
388           change to better keep line correlation, reanimated 186.e
389         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
390
391 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
392
393         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
394           David Saxton with quotes around file name.
395
396 2005-08-15 Borut Razem <borut.razem AT siol.net>
397
398         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
399           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
400           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
401           make tests run on x86_64 platform
402
403 2005-08-13 Raphael Neider <rneider AT web.de>
404
405         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
406           as it might be executed DURING a build (parallel make is wonderful)
407
408 2005-08-13 Raphael Neider <rneider AT web.de>
409
410         * device/lib/Makefile.in (port-specific-objects-pic16):
411           revert to cp $(PORT)/bin/*.* $(PORTDIR)
412         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
413           dependency
414         * device/lib/pic16/Makefile.rules: build subdirs before creating
415           the library, removed builddir rule, create $(builddir) early in
416           recurse rule, use empty recurse rule for leaf directories
417         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
418           mkdir errors (race condition), removed duplicate suffix "hex"
419           from clean rules
420         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
421         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
422           prevents mkdir -p from aborting on Alpha
423
424 2005-08-12 Raphael Neider <rneider AT web.de>
425
426         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
427           db-statements in order to allow for arrays of pointers in code
428           sections to be placed without interspersed 0-padding, fixes
429           bug #1256215
430         * (emitStatistics): fixed division by zero for pic18f1220
431         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
432           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
433         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
434         * (pic16_pCodeConstString): keep track of already emitted string
435           literals to prevent "duplicate definitions of symbol _str_NR"
436         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
437           debug message
438         * device/lib/Makefile.in: ignore failing PIC16 library builds
439         * device/lib/pic16/Makefile: do not build if gputils are missing
440         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
441
442 2005-08-10 Raphael Neider <rneider AT web.de>
443
444         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
445           my last commit)
446
447 2005-08-10 Raphael Neider <rneider AT web.de>
448
449         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
450           Rokas' patch to add the new fixed point type "__fixed16x16"
451         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
452           functions for __fixed16x16 arithmetics
453         * device/lib/pic16: reimplemented the build system to support
454           a separate build directory, better handling of libio (create
455           the library in a separate subdir for each architecture) and
456           easier configuration (centralized in Makefile.common)
457
458 2005-08-07 Raphael Neider <rneider AT web.de>
459
460         * src/pic16/gen.c (genrshTwo): fixed sign extension
461         * src/pic16/device.c: added pic18f2320, 4220 and 4320
462         * device/include/pic16/pic18f2220.h: changed some bit definitions,
463           added T0CONbits
464         * device/include/pic16/pic18f4220.h: NEW, header for
465           pic18f4220 and pic18f4320
466         * device/include/pic16/pic18fregs.h: added new devices,
467           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
468         * device/include/pic16/signal.h: resolved name clashes
469           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
470           to also allow testing for interrupt enable bits, added
471           comments on how to use the macros
472         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
473         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
474           register definitions for the devices
475         * device/lib/pic16/pics.all: added new devices
476         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
477           allocated memory
478         * device/lib/pic16/libc/stdlib/memfree: do not count
479           the block header as free memory
480         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
481           simplified and added missing end-of-blocklist-marker
482           (reported by Peter Onion, fixes #1252814)
483         * (_mergeHeapBlock): fixed loop condition
484         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
485           len==0, restructured code
486         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
487           up a bit, reduced bitfield accesses, prevent endless loops
488           in case of heap corruption
489         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
490           "unreferenced arguments/must return a value" warnings
491         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
492           replaced BAUDREG with SPBRG
493         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
494           device/lib/pic16/debug/gstack/gstack.c: replaced
495           _naked, _asm, _endasm with __naked, __asm, __endasm
496
497 2005-08-05 Raphael Neider <rneider AT web.de>
498
499         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
500           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
501
502 2005-08-05 Borut Razem <borut.razem AT siol.net>
503
504         * device/lib/Makefile.in: added missing ';'
505         * configure: removed ^M characters
506
507 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
508
509         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
510           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
511           License
512
513 2005-08-04 Borut Razem <borut.razem AT siol.net>
514
515         * configure.in: pic16 libraries build 2nd try - enable running
516           configure in device/lib/pic16
517         * configure: regenerated from configure.in
518         * device/lib/Makefile.in: create $(PORT)/bin directory
519
520 2005-08-03 Raphael Neider <rneider AT web.de>
521
522         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
523           to get/set values via pointers
524         * (genUnpackBits,genPackBits): changed detection of
525           ptr->bitfield vs. sym.bitfield, fixed access via generic
526           pointers, removed dead (wrong) code for multibyte bitfields
527         * (genNearPointerGet, genGenPointerGet): removed useless code,
528           fixed bitfield detection, fixes #1250594
529         * (genNearPointerSet): removed useless code
530         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
531           and introduced macro pic16_emitpcode that conditionally emits
532           the origin of the following pCode (useful for debugging SDCC)
533         * src/pic16/pcode.c: changed (and disabled) some debug outputs
534         * (createDefmap): fixed handling of LFSR for --optimize-df
535
536 2005-08-02 Borut Razem <borut.razem AT siol.net>
537
538         * device/lib/Makefile.in: pic16 libraries build enabled since
539           gputils-0.13.2 are now localy installed at sourceforge's compile farm
540
541 2005-08-02 Raphael Neider <rneider AT web.de>
542
543         * src/pic16/gen.c (genPackBits): removed deprecated warning
544         * (genGenPointerSet): fixed bitfield detection
545
546 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
547
548         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
549
550 2005-07-31 Raphael Neider <rneider AT web.de>
551
552         * device/lib/pic16/libdev/pic18f458.c,
553           device/include/pic16/pic18f458.h: added missing T0CONbits
554
555 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
556
557         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
558
559 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
560
561         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
562
563 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
564
565         * device/include/mcs51/at89c51ed2.h: added.
566
567 2005-07-23 Raphael Neider <rneider AT web.de>
568
569         * src/pic/gen.h: added emitpcode macro for debugging
570         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
571           and replace by macro adding debug information on demand
572         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
573         * (gencjne): tried to fix; replaced with correct (slower) code
574         * (gen{Unp,P}ackBits): fixed single bit access
575         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
576         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
577           previous instruction
578         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
579           register has to be handled with care (forbidding movement
580           of assignments/uses, removing assignments completely, ...)
581         * (pCodeOptime2pCodes): make use of regIsSpecial
582         * added lots of debugging output (commented out)
583         * src/pic/rallloc.c (deassignLRs): prevent operand registers
584           from being reused as result UNLESS it is known to work
585
586 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
587
588         * support/Util/dbuf.h: include <stddef.h> for size_t
589         * .version: changed to version 2.5.2
590
591 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
592
593         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
594
595 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
596
597         * src/hc08/gen.c (genMinus): fixed bug #1241835,
598           (genModOneByte): removed needless psha/pula
599
600 2005-07-22 Raphael Neider <rneider AT web.de>
601
602         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
603           have PIC14 handled like PIC16, fixes broken pic14 linker calls
604         * src/pic/gen.c (resolveIfx): do not "invent" labels
605         * (genSkipc): changed to positive logic
606         * (genSkipCond): removed as no longer needed
607         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
608           backport from PIC16
609         * (genLeftShift): check operands are in different registers
610         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
611           INCF does not update CARRY...
612         * src/pic/main.c: fixed _linkCmd
613         * src/pic/pcode.c (unlinkpCode): added inactive code
614         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
615           alive (do not assign result and operand overlapping registers)
616
617 2005-07-22 Raphael Neider <rneider AT web.de>
618
619         * src/pic/device.c (dump_sfr): replaced register declaration with
620           call to emitSymbolToFile() to avoid duplicate symbols
621         * (assignRelocatableRegisters): do not declare external symbols
622         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
623           right (take size of type, not etype)
624         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
625         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
626         * (packRegsForAccUse): disabled assignment of WREG as
627           the result reg to prevent occurence of just fixed #1235003,
628           fixes #1242954
629         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
630           symbols (avoids duplicate symbols in .asm file)
631         * (pic14emitRegularMap): use emitSymbolToFile()
632         * src/pic/gen.c (aopOp): fixed spillLocation handling
633         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
634         * (genDataPointerSet): removed unneccessary variables/output
635
636 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
637
638         * as/mcs51/lkarea.c: enlarged codemap for banked memory
639         * device/lib/mcs51/crtbank.asm: added # to 0x0F
640
641 2005-07-21 Raphael Neider <rneider AT web.de>
642
643         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
644           architecture cannot handle them efficiently, fixes bug #1235003
645         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
646           check for empty sets before using them (fixes bug #1232190)
647
648 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
649
650         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
651           (lnksect2): generate warnings for memory overlap
652         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
653           constseg to set the name of these segments so you can instruct the linker
654           to place them in banks
655         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
656         * src/SDCCglobl.h: added MODEL_HUGE to enum,
657           added code_seg and const_seg to options
658         * src/SDCCglue.c (emitMaps): use options.const_seg,
659           (createInterruptVect): put interrupt vectors in segment HOME,
660           (glue): put HOME before static segment and put the main glue in HOME,
661           (glue): use options.code_seg
662         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
663         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
664           these segments so you can instruct the linker to place them in banks
665           (linkEdit): use code_loc for HOME segment which should be the first
666           segment in code memory now
667         * src/SDCCmem.c: fixed more stuff like bug 1238386
668         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
669           (changePointer): don't change function pointers to code pointers for
670           banked functions,
671           (compareType): added exceptional check for banked function pointers
672         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
673         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
674           after static in code memory
675         * src/mcs51/gen.c: added aopLiteralLong prototype,
676           (aopForSym): use getSize for functions,
677           (genCall): generate banked calls over one trampoline __sdcc_banked_call
678           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
679           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
680           the segment,
681           (genPcall): use call for literal function pointers and generate banked
682           calls over the one trampoline so there's only one place for the user to
683           modify according to his/hers hardware,
684           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
685           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
686         * src/mcs51/main.c: added keyword banked,
687           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
688         * support/Util/SDCCerr.c,
689         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
690           needed for passing the bank and address to the trampoline
691         * device/lib/mcs51/crtbank.asm: added for bankswitching
692         * device/lib/mcs51/Makefile: added crtbank
693
694 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
695
696         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
697           for fields at offset 0 of a struct or union as reported
698           on 2005-07-07 in the developer mailing list.
699
700 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
701
702         * src/SDCCmem.c: fixed bug 1238386
703
704 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
705
706         * src/mcs51/peeph.def: added labelrefcounting for peepholes
707           (patch #1144962), added peephole 300, enabled 259.x
708         * doc/sdccman.lyx: removed screenshot and provided link instead
709
710 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
711
712         * doc/sdccman.lyx: added section about debugging with ddd
713         * doc/figures/ddd_example.eps: screenshot of debugging session
714
715 2005-07-04 Raphael Neider <rneider AT web.de>
716
717         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
718           like CODE pointers, fixes #1115683
719         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
720           call, fixes bugs #1232211, #1228110,
721           fixed wrong casts to pCodeFlow from pCodeInstructions
722
723 2005-07-04 Raphael Neider <rneider AT web.de>
724
725         * src/pic/gen.c (popGet): changed assert to allow for
726           bit operands
727         * (popGetAddr): changed signature to provide
728           an additional index, patched all call sites
729         * (genCmpEq): handle literal-like operands correctly
730         * (genAddrOf): added sanity checks on __code/__data pointers
731         * (genAssign): added handling of symbols from __code section
732         * (gencjne): do not generate code for comparisons whose result
733           is neither stored nor used, fixes bug #1171114
734         * (AccLsh, AccRsh): operate on operand instead of WREG
735         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
736           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
737           by known count
738         * rewrote complete shift-by-literal logic, commented unused
739           functions out
740         * (genConstPointerGet): get multiple bytes (if result size > 1),
741           fixed handling of non-immediate addresses
742         * (genPointerGet): handle CODE pointers like CONST pointers
743         * (genpic14Code): insert C-SRC lines as Cource-pCodes
744         * ({aop,op}_isLitLike): NEW, single place to decide whether an
745           operand is to be treated as a literal or not
746         * (mov2w,genPcall,genCmpEq),
747           src/pic/genarith.c: use aop_isLitLike() to decide between
748           literal/register contents
749         * (addSign): added missing offset
750         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
751           only emit comment in debug-mode,
752           use {aop,op}_isLitLike throughout the file
753         * src/pic/glue.c: fix initializers for pointers (work in progress)
754         * src/pic/pcode.c (get_op): honor index on _const symbols
755         * ({reset,dump}pCodeStatistics): NEW, estimate code size
756         * (dumppBlock): added pCode size estimation
757         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
758           check for IS_SYMOP before OP_SYMBOL'ing
759         * fixed indentation, compacted switch-statements
760         * (allocReg): find free register and allocate it instead of
761           allocating new registers all the time
762         * (deassignLRs): prevent POINTER_GET's from being assigned the same
763           registers as its operands (necessary only for multibyte GETs)
764
765 2005-07-01 Raphael Neider <rneider AT web.de>
766
767         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
768           debugging .asm-output macros FENTRY + FEXIT
769         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
770           way... I wonder...
771         * (emitpComment): NEW, printf to pCode
772         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
773           offset handling
774         * (popGetAddr): NEW, variant of popGet to access an immediates
775           high(er) bytes instead of the n'th byte of memory they reference,
776           replaced popGet with popGetAddr where neccessary
777         * (genDataPointerGet): reactivated and fixed implementation
778         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
779           accesses
780         * (genDataPointerSet): fixed multibyte assignments
781         * (genpic14Code): fixed --i-code-in-asm handling
782         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
783         * (genPlus): fixed index-out-of-bounds error
784         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
785         * src/pic/ralloc.c: added debugging output macro FENTRY2
786         * (spillThis): fixed indentation, enbraced for-body for clarity
787         * (rematStr): commented out as now unused
788         * (regTypeNum): commented out special spill case (overwrites
789           arbitrary values)
790         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
791
792 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
793
794         * doc/sdccman.lyx: documented sfr16/sfr32,
795           added example for using storage class with function pointers
796         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
797
798 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
799
800         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
801         * device/lib/_itoa.c,
802         * device/lib/_ltoa.c: optimized codesize
803         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
804           but don't know how to suppress the double warning.
805         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
806         * support/Util/SDCCerr.c,
807         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
808
809 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
810
811         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
812           fixed old K&R prototypes
813         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
814         * device/lib/_gptrget.c,
815         * device/lib/_gptrgetc.c,
816         * device/lib/_gptrput.c: changed versions for new memory indicator values,
817           also new versions for small generic pointers and banked generic pointers
818         * src/port.h: added const_name
819         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
820         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
821         * src/SDCCcse.c (findPrevIc): check all associative operators
822         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
823         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
824         * src/SDCCmem.c: updated comments,
825           set far-space to 0 for pdata, results in optimized code
826         * src/SDCCmem.h: added macro CONST_NAME
827         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
828           moving the info into the highest bits, see also gptrget/gptrput
829         * src/src.dsp: added sdcc.ico to project files
830         * src/avr/gen.c (genCast): fixed bug 0x%d
831         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
832         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
833           relation between ptr_type and DCL_TYPE,
834           (genCast): fixed bug 0x%d
835         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
836           (CODE)" for const_name
837         * src/hc08/gen.c (genCast): fixed bug 0x%d
838         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
839           (hc08_port): added "CONST (CODE)" for const_name
840         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
841           (aopForRemat, adjustArithmeticResult): disconnected direct relation
842           between ptr_type and DCL_TYPE,
843           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
844           operand* and took AOP() inside function so sfr-ness can be checked,
845           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
846           new prototype,
847           (genFunction, genEndFunction): optimized stack setup,
848           (genMinus): optimized for literals with ending zeroes (in bytes),
849           (genCast): fixed bug 0x%d
850         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
851           (mcs51_port): added "CONST (CODE)" for const_name
852         * src/mcs51/peeph.def: made rule 226 more generic
853         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
854         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
855         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
856         * src/z80/main.c (z80_port): added NULL for const_name,
857           (gbz80_port): added NULL for const_name
858         * support/regression/tests/bug663539.c,
859         * support/regression/tests/sfr16.c: new tests
860
861 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
862
863         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
864
865 2005-06-24 Raphael Neider <rneider AT web.de>
866
867         * device/lib/pic16/libdev/pic18f[68][567]20.c:
868           corrected typos...
869         * device/include/pic16/signal.h: added USBIF
870           and SIG_USB
871
872 2005-06-24 Raphael Neider <rneider AT web.de>
873
874         * device/lib/pic16/libdev/pic18f2455.c,
875           device/include/pic16/pic18f2455.h: NEW
876         * device/include/pic16/pic18fregs.h,
877           device/lib/pic16/pics.all,
878           src/pic16/device.c: added 18f2455
879         * device/lib/pic16/libdev/pic18f[68][567]20.c,
880           device/include/pic16/{pic18f[68][567].h,usart.h}:
881           replaced MULTIPLE_USARTS define with more relaible
882           compatibility sfrs (for USART access)
883
884 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
885
886         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
887           and the output asm file line is printed on two lines.
888
889 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
890
891         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
892           BGT, BLE, BHI, and BLS instructions
893         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
894           genCmpEq): removed
895         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
896           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
897           fixes bug #1216342
898         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
899
900 2005-06-15 Raphael Neider <rneider AT web.de>
901
902         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
903         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
904         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
905           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
906           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
907
908 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
909
910         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
911           Marcel Telka in bug #1215704
912
913 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
914
915         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
916           located in shared memory bank.
917
918 2005-05-31 Raphael Neider <rneider AT web.de>
919
920         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
921           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
922           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
923
924 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
925
926         * device/lib/_strncpy.c: fixed the fix
927
928 2005-05-26 Raphael Neider <rneider AT web.de>
929
930         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
931           initializers with \0, bug #1208187
932         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
933           intializers with \0, bug #1208187
934
935 2005-05-26 Raphael Neider <rneider AT web.de>
936
937         * src/pic16/glue.c (pic16_printIvalChar): fixed string
938           initializers with \0, bug #1208187
939         * src/pic16/main.c (_process_pragma): added sanity checks
940           for stack position and size, emit warnings when appropriate
941
942 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
943
944         * device/lib/_strncpy.c: fixed not filling with \0
945
946 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
947
948         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
949           createFunction),
950         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
951           compound_statement),
952         * src/SDCCsymt.h,
953         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
954
955 2005-05-24 Raphael Neider <rneider AT web.de>
956
957         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
958
959 2005-05-24 Raphael Neider <rneider AT web.de>
960
961         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
962           TRISE definitions, closes bug #1162453
963
964 2005-05-22 Raphael Neider <rneider AT web.de>
965
966         * src/pic16/main.c (_process_pragma): check for missing
967           arguments to pragmas code and udata
968         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
969           consistency fixes to match other headers (thanks to Jim Paris)
970         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
971
972 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
973
974         * src/SDCCicode.c (isOperandEqual): fixed missing ;
975
976 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
977
978         * support/regression/tests/bug1198642.c: new test
979         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
980         * src/SDCCcse.c (findPrevIc): added comment, please have a look
981         * support/scripts/resource.h,
982         * support/scripts/resource.rc,
983         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
984         * support/scripts/sdcc.ico: added 32x32 icon
985
986 2005-05-18 Raphael Neider <rneider AT web.de>
987
988         * device/lib/pic16/libdev/pic18f*.c,
989         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
990           keywords to "__sfr" and "__at (X)"
991         * device/include/pic16/pic18fregs.h: added pic18f4520
992         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
993           #1203088 (MPLAB compatibility)
994
995 2005-05-17 Raphael Neider <rneider AT web.de>
996
997         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
998         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
999         * device/lib/pic16/pics.all: added new devices
1000         * src/pic16/device.c: added support for pic18f4520
1001
1002 2005-05-16 Raphael Neider <rneider AT web.de>
1003         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1004         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1005         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1006           convenience function for bit access
1007
1008 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1009
1010         * device/lib/printf_large.c: fixed bug 1193299
1011         * support/regression/tests/bug1057979.c: added test %3.3s
1012
1013 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1014
1015         * device/include/mcs51/8051.h,
1016         * device/include/mcs51/8052.h: made parseable with lint
1017         * device/include/mcs51/lint.h: added include file for (sp)lint
1018         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1019         * doc/cdbfileformat.lyx,
1020         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1021
1022 2005-05-14 Raphael Neider <rneider AT web.de>
1023
1024         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1025         * device/lib/pic16/libc/stdlib/itoa.c (new)
1026         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1027         * device/lib/pic16/libio/Makefile: exclude subdir according to
1028           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1029         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1030         * src/pic16/gen.c (genFunction): prevent annoying warning
1031         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1032           nameclashes on BeOS
1033         * support/cpp2/cppmain.c (cpp_output_string): new
1034         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1035           fixes bug 1116802
1036
1037 2005-05-13 Borut Razem <borut.razem AT siol.net>
1038
1039         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1040
1041 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1042
1043         * .version: changed to version 2.5.1; back to bleeding edge development
1044
1045 2005-05-11 Borut Razem <borut.razem AT siol.net>
1046
1047         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1048           generate PDF version 1.3 documents
1049
1050 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1051
1052         * .version: changed to version 2.5.0
1053
1054 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1055
1056         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1057
1058 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1059
1060         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1061         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1062         well as many smaller updates.
1063         * .version: changed to version 2.5.0-pre1
1064
1065 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1066
1067         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1068
1069 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * support/regression/tests/bug1185672.c: added
1072         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1073           bug 1185672
1074         * src/mcs51/gen.c (genCall): added comments, made it look safer
1075         * src/mcs51/gen.c (genEndFunction): simplified
1076
1077 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1078
1079         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1080
1081 2005-04-14 Borut Razem <borut.razem AT siol.net>
1082
1083         * fixed bug 1045046 - SIGSEGV with really simple code?:
1084           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1085           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1086
1087 2005-04-14 Borut Razem <borut.razem AT siol.net>
1088
1089         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1090           src/pic16/device.h: temporarily disabled experimental #inline pragma
1091           for 2.5.0 release
1092
1093 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1094
1095         * device/include/z80/stdio.h,
1096         * device/include/z80/string.h: removed these highly incomplete files so
1097           SDCC can use the default ones in device/include/
1098
1099 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1100
1101         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1102         gcc warning.
1103         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1104         fix sdcpp warnings.
1105
1106 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1107
1108         * device/include/malloc.h: removed redundant __reentrant prototypes
1109         * device/lib/_mullong.c: added working xstack variant in asm (C version
1110           doesn't pass regression tests)
1111         * device/lib/bpx.c: used __data and made bpx char for mcs51
1112         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1113           (createFunction): fixed bug with xstackPtr
1114         * src/SDCCcse.c: corrected comments
1115         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1116           (killDeadCode, eBBlockFromiCode): removed unused code
1117         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1118           corrected comments
1119         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1120           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1121           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1122           (genModOneByte): fixed warning in MSVC
1123         * src/mcs51/main.c (): added comments
1124         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1125
1126 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1127
1128         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1129
1130 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1131
1132         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1133
1134 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1135
1136         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1137         characters arrays of larger size than the declared one.
1138
1139 2005-04-10 Borut Razem <borut.razem AT siol.net>
1140
1141         * src/pic/gen.c (genInline),
1142           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1143           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1144           (findNextInstruction), (findPrevInstruction),
1145           (findInstructionUsingLabel),
1146           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1147         * src/pic/pcode.c (findLabel): added missing '\n'
1148         * src/src.dsp: added SDCCdwarf2.c to the project
1149
1150 2005-04-09 Borut Razem <borut.razem AT siol.net>
1151
1152         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1153
1154 2005-04-08 Raphael Neider <rneider AT web.de>
1155
1156         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1157           into the chain after a given one) and mergeDefmapSymbols (combine
1158           defmap entries for each symbol per pcode)
1159         * (createDefmap): have defmap entries merged in the end
1160         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1161           a symbol before replacing one access type's symbol, merge symbols in
1162           the end (replacement symbol might already have an entry)
1163         * (assignValnums): keep reference to written WREG intact
1164
1165 2005-04-08 Raphael Neider <rneider AT web.de>
1166
1167         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1168           Alpha)
1169
1170 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1171
1172         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1173         bytes
1174
1175 2005-04-07 Raphael Neider <rneider AT web.de>
1176
1177         * device/include/pic16/usart.h: added compatibility defines for
1178           devices with more than one USART
1179         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1180
1181 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * device/lib/Makefile.in: updated for port specific include
1184
1185 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1186
1187         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1188
1189 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * device/include/8051.h,
1192         * device/include/8052.h,
1193         * device/include/at89S8252.h,
1194         * device/include/at89c55.h,
1195         * device/include/at89x051.h,
1196         * device/include/at89x51.h,
1197         * device/include/at89x52.h,
1198         * device/include/mcs51reg.h,
1199         * device/include/reg51.h,
1200         * device/include/reg764.h,
1201         * device/include/regc515c.h,
1202         * device/include/sab80515.h: (re)moved these 12 files
1203         * device/include/mcs51/8051.h,
1204         * device/include/mcs51/8052.h,
1205         * device/include/mcs51/at89S8252.h,
1206         * device/include/mcs51/at89c55.h,
1207         * device/include/mcs51/at89x051.h,
1208         * device/include/mcs51/at89x51.h,
1209         * device/include/mcs51/at89x52.h,
1210         * device/include/mcs51/mcs51reg.h,
1211         * device/include/mcs51/reg51.h,
1212         * device/include/mcs51/reg764.h,
1213         * device/include/mcs51/regc515c.h,
1214         * device/include/mcs51/sab80515.h: and added them here
1215
1216 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1217
1218         * device/include/stdarg.h: changed SDCC specific keywords to double
1219           underlined form.
1220         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1221           mcs51 and ds390.
1222         * device/include/hc08/mc68hc908gp32.h,
1223         * device/include/hc08/mc68hc908jb8.h,
1224         * device/include/hc08/mc68hc908jkjl.h,
1225         * device/include/hc08/mc68hc908qy.h: fixed comments
1226         * device/include/mcs51/README: updated
1227         * device/include/mcs51/c8051f120.h: added PINRSF
1228         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1229         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1230           amidst code. Also inline is not supported.
1231
1232 2005-04-06 Raphael Neider <rneider AT web.de>
1233
1234         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1235         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1236           callers stack/frame pointers
1237
1238 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1239
1240         * device/include/pic16/usart.h: added, missing in previous commit,
1241         * device/include/pic16/adc.h: fixed typo,
1242         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1243         commit,
1244         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1245         <p18fxxx.inc>
1246         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1247         uninitialized because a bug appears with gplink
1248         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1249         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1250         complains for unrecognised option
1251
1252 2005-04-05 Raphael Neider <rneider AT web.de>
1253
1254         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1255           structs as well (using memcpy)
1256         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1257           on ISRs (GOTO has no label)
1258         * src/pic16/device.h: added OF_OPTIMIZE_DF
1259         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1260           new data flow analysis/optimization
1261         * src/pic16/pcode.c: added (prototypes for and implementation of)
1262           dataflow analysis functions, fixed pCodeInstructions' inCond and
1263           outCond values, made RCALL a branch instruction
1264         * (pic16_unlinkpCode): keep C line if possible
1265         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1266           C line moved if possible
1267         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1268         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1269           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1270         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1271           new flow)
1272         * (pic16_getJumptabpCode): NEW, needed in...
1273         * (LinkFlow): fixed handling of jumptables, calls and conditional
1274           branches
1275         * (pic16_InsertCommentAfter): NEW
1276         * (pic16_pCodeReplace): made verbose and flow preserving
1277         * (AnalyzeFlow): added call to data flow analysis
1278         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1279         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1280         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1281
1282 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1283
1284         * src/SDCCast.c (decorateType): fixed bug #1105626
1285
1286 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1287
1288         * device/include/asm/pic16/features.h,
1289         * pic18f*.h headers,
1290         * device/include/pic16/adc.h,
1291         * device/include/pic16/delay.h,
1292         * device/include/pic16/i2c.h,
1293         * device/include/pic16/malloc.h,
1294         * device/include/pic16/stdio.h,
1295         * device/include/pic16/stdlib.h,
1296         * device/include/pic16/string.h,
1297         * device/lib/pic16/libc/stdio/printf_tiny.c,
1298         * device/lib/pic16/libc/stdio/printf_small.c,
1299         * device/lib/pic16/libc/stdio/strmgpsim.c,
1300         * device/lib/pic16/libc/stdio/strmmssp.c,
1301         * device/lib/pic16/libc/stdio/strmusart.c,
1302         * device/lib/pic16/libc/stdio/vfprintf.c,
1303         * device/lib/pic16/libc/stdlib/ltoa.c,
1304         * device/lib/pic16/libc/stdlib/putchar.c,
1305         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1306         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1307         * device/lib/pic16/libc/stdlib/memchrram.c,
1308         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1309         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1310         * device/lib/pic16/libio/adc/adcbusy.c,
1311         * device/lib/pic16/libio/adc/adcread.c,
1312         * device/lib/pic16/libio/adc/adcsetch.c,
1313         * device/lib/pic16/libio/usart/ubaud.c,
1314         * device/lib/pic16/libio/usart/ubusy.c,
1315         * device/lib/pic16/libio/usart/udrdy.c,
1316         * device/lib/pic16/libio/usart/uopen.c,
1317         * device/lib/pic16/libio/usart/uputc.c,
1318         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1319         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1320         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1321         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1322         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1323         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1324         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1325         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1326         specific keywords to double underlined form,
1327         * device/lib/pic16/libc/Makefile.rules,
1328         * device/lib/pic16/libsdcc/Makefile.rules,
1329         * device/lib/pic16/libm/Makefile,
1330         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1331         to compile with C standard set in Makefile.common
1332         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1333         rand.c and crc.c in compilation process,
1334         * device/lib/pic16/libsdcc/int/divuint.c,
1335         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1336         `c' from signed to unsigned,
1337         * device/lib/pic16/startup/crt0.c,
1338         * device/lib/pic16/startup/crt0i.c,
1339         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1340         keywords to double underlined form, bug fixes in _do_cinit function
1341         which prevented the correct initialization of the .idata segment,
1342         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1343         core to enter a infinite loop
1344         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1345
1346 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1347
1348         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1349
1350 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1351
1352         * device/include/Makefile.in: add support for hc08 subdirectory
1353         * device/include/hc08/: new subdirectory
1354         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1355         Lucas Loizaga, thanks!
1356         * device/include/hc08/mc68hc908qy.h,
1357         * device/include/hc08/mc68hc908gp32.h,
1358         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1359         their own directory. Changed internal macro names to use the compiler
1360         reserved namespace. Changed SDCC specific keywords to double
1361         underlined form.
1362         * device/include/math.h,
1363         * device/include/malloc.h,
1364         * device/include/stdarg.h,
1365         * device/include/stdbool.h
1366         * device/include/string.h,
1367         * device/include/tinibios.h,
1368         * device/include/ds400rom.h,
1369         * device/include/8051.h,
1370         * device/include/8052.h,
1371         * device/include/80c51xa.h,
1372         * device/include/at89c55.h,
1373         * device/include/at89S8252.h,
1374         * device/include/at89x51.h,
1375         * device/include/at89x52.h,
1376         * device/include/ds80c390.h,
1377         * device/include/reg764.h,
1378         * device/include/regc515c.h,
1379         * device/include/sab80515.h,
1380         * device/include/mcs51/c8051f000.h,
1381         * device/include/mcs51/c8051f018.h,
1382         * device/include/mcs51/c8051f020.h,
1383         * device/include/mcs51/c8051f040.h,
1384         * device/include/mcs51/c8051f060.h,
1385         * device/include/mcs51/c8051f120.h,
1386         * device/include/mcs51/c8051f300.h,
1387         * device/include/mcs51/c8051f310.h,
1388         * device/include/mcs51/c8051f320.h,
1389         * device/include/mcs51/c8051f330.h,
1390         * device/include/mcs51/c8051f350.h,
1391         * device/include/z180.h: Changed SDCC specific keywords to double
1392         underlined form.
1393
1394 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1395
1396         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1397         18F4455,
1398         * (pic16_assignConfigWordValue): disable testing of configuration
1399         register value with config mask,
1400         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1401         function with port->fun_prefix,
1402         * (genFunction): when generating a naked interrupt function never
1403         create an absolute segment placed in interrupt vector address, place
1404         the actual interrupt function at IVA instead, when an interrupt
1405         function is generated with unspecified interrupt then do not create
1406         the absolute section,
1407         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1408         code for generating a call to generic pointer get/put function with
1409         a call to function pic16_callGenericPointer(),
1410         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1411         the call to the generic pointer get/put functions with prefixing the
1412         function name with port->fun_prefix,
1413         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1414         * src/pic16/main.c (_process_pragma): prefix function with
1415         port->fun_prefix,
1416         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1417         calling assembler, old 18Fxxxx macro is deprecated,
1418         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1419         PC_ASMDIR in while condition,
1420         * (findInstruction): add PC_ASMDIR in while condition,
1421         * (buildCallTree): prefix main with port->fun_prefix,
1422         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1423         identifier for variable with banked access in instructions BTFSS,
1424         BTFSC, BCF, BSF, BTG
1425         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1426         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1427         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1428         perform optimization when enviroment variable NO_REG_OPT is set,
1429         * (insideLRBlock): NEW, return 1 if register is inside an
1430         INF_LOCALREGS block,
1431         * (RemoveRegFromLRBlock): remove a register that is completely
1432         eliminated by register optimization, but it is still left in local
1433         register store/restore in/from stack block,
1434         * (Remove2pcodes): after removing register, check to see if it
1435         should be removed from local register store/restore in/from stack
1436         block,
1437         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1438         DUMMY_READ_VOLATILE,
1439
1440         * device/include/pic16/adc.h: minor prototype modifications and
1441         update,
1442         * device/include/pic16/malloc.h: added GPL notice various
1443         modifications,
1444         * device/include/pic16/stdint.h: NEW, standard header for ints
1445         * device/include/pic16/delay.h: NEW, header for delay functions,
1446         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1447         delay1mtcy,
1448         * device/include/pic16/signal.h: NEW, header providing helper macros
1449         for implementing signal handlers,
1450         * device/include/pic16/stdio.h: added prototypes for functions,
1451         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1452         prototypes for stdin and stdout, added macro PUTCHAR to
1453         automatically implement putchar function prototype,
1454         * device/include/pic16/usart.h: modified and updated USART library,
1455         * device/lib/pic16/libio/adc/,
1456         * device/lib/pic16/libio/i2c: some modifications to improve library
1457         performance,
1458         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1459         family of functions,
1460         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1461         family of functions and other sources,
1462         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1463         of the PIC18Fxx[28] devices,
1464         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1465         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1466         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1467         _do_cinit function, because the previous failed when local variables
1468         where not placed in the same memory bank,
1469         * device/lib/pic16/libsdcc/char/: various modifications to improve
1470         library performance,
1471         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1472         information on the new functions of the c library and more...
1473
1474 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1475
1476         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1477
1478 2005-03-26 Raphael Neider <rneider AT web.de>
1479
1480         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1481           if condition == CARRY)
1482         * (genCmp): adapted to new genSkipc semantics
1483         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1484           on rIfx (genCmp was broken)
1485
1486 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1487
1488         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1489         * src/z80/main.c (_keywords[]),
1490         * src/SDCCglobal.h (struct options),
1491         * src/SDCC.y,
1492         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1493         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1494         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1495         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1496         always available in leading double underscore form. The C99 support is
1497         mostly missing, but it's a start.
1498         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1499         reserved identifier "__data".
1500
1501 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1502
1503         * src/mcs51/peeph.def: fixed bug 1170013
1504
1505 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1506
1507         * device/include/mcs51reg.h: fixed bug 842007
1508
1509 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1510
1511         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1512         last time.
1513
1514 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1515
1516         * src/port.h (struct PORT),
1517         * src/avr/ralloc.c (avr_assignRegisters),
1518         * src/avr/main.c,
1519         * src/ds390/ralloc.c (ds390_assignRegisters),
1520         * src/ds390/main.c,
1521         * src/hc08/ralloc.c (hc08_assignRegisters),
1522         * src/hc08/main.c,
1523         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1524         * src/mcs51/main.c,
1525         * src/pic/ralloc.c (pic14_assignRegisters),
1526         * src/pic/main.c,
1527         * src/pic16/ralloc.c (pic16_assignRegisters),
1528         * src/pic16/main.c,
1529         * src/xa51/ralloc.c (xa51_assignRegisters),
1530         * src/xa51/main.c,
1531         * src/z80/ralloc.c (z80_assignRegisters),
1532         * src/z80/ralloc.h,
1533         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1534         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1535         * src/SDCCcse.h,
1536         * src/SDCCdflow.c (computeDataFlow),
1537         * src/SDCCdflow.h,
1538         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1539         * src/SDCCloop.h,
1540         * src/SDCCcflow.c (*),
1541         * src/SDCCcflow.h,
1542         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1543         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1544         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1545         immedDom() returning wrong block; probably fixes bug #1160833)
1546
1547 2005-03-20 Borut Razem <borut.razem AT siol.net>
1548
1549         * support/scripts/inc2h.pl: WIN32 port
1550
1551 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1552
1553         * device/lib/makefile.in: added abs.c and labs.c
1554
1555 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1556
1557         * device/include/stdint.h: added
1558         * device/lib/abs.c: added
1559         * device/lib/labs.c: added
1560         * device/include/stdlib.h: added abs() and labs() prototypes
1561         * device/lib/libsdcc.lib: added abs and labs
1562         * device/include/float.h,
1563         * device/lib/_fsmul.c,
1564         * device/lib/printf_fast.c,
1565         * device/lib/printf_tiny.c: updated comments
1566
1567 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1568
1569         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1570         bug #1164313
1571
1572 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1573
1574         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1575         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1576
1577 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1578
1579         * device/lib/printf_large.c: removed inline assembly for portability and
1580           readability. Use printf_fast if speed or size are more important.
1581         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1582         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1583
1584 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1585
1586         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1587         prevent compiler warning
1588
1589 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1590
1591         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1592         moved to level 0 and declared as static. Also they are explicit
1593         placed in access bank. This was necessery because some times they
1594         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1595         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1596         optimizations. Currently only compare to unsigned char is implemented,
1597         * src/pic16/gen.c: added fReturnIdx array,
1598         * (struct resolvedIfx) is moved to gen.h and made public,
1599         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1600         * (aopForSym): added an optimization to directly store in stack of
1601         the operand of a SEND iCode,
1602         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1603         but as registers instead (AOP_REG) using the fReturnIdx array,
1604         * (pic16_freeAsmop): remove the freed register from the
1605         _G.sregsAlloc field,
1606         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1607         a compare of 'WREG',
1608         * (pic16_popGetTempRegCond): changed function prototype, now
1609         function takes also a bitVector argument v which holds the current
1610         set of registers that are allocated for stack access by aopForSym,
1611         registers allocated in aopForSym for accessing stack symbols are not
1612         any more part of the functions usedRegs field,
1613         * (genCall): some times aopOp is called for a stack variable to be
1614         send, aopForSym might perform the push, if this is true make sure
1615         that genCall doesn't push the variable twice by testing _G.resDirect,
1616         * (genFunction): changed testing for unspecified interrupt number
1617         from 256 to INTNO_UNSPEC,
1618         * modified selection scheme of frame pointer generation. Previously
1619         if function did use local registers a frame pointer was generated,
1620         now a frame pointer is generated only if function has arguments
1621         (that need PLUSW2 register access), or has stack arguments, or the
1622         compiler is not instructed to omit the frame pointer,
1623         * (genEndFunction): before restoring local registers that were saved
1624         in the function preamble, also restore the registers that *might*
1625         have been allocated for stack access,
1626         * (genRet): removed some old comments,
1627         * (genCmp, the active (RN's) version): added a call to the
1628         pic16_genCmp_special function to perform the compare with a more
1629         robust and optimized way,
1630         * (genInline): a feature has been added in inline code generation,
1631         which allows a wildcard variable substitution when writing inline
1632         assembly. Code is incomplete and experimental therefore undocumented,
1633         * (genCast): changed order of aopOp for result and right to allow
1634         aopForSym to directly load the result if possible,
1635         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1636         perform an optimized compare on some selected special occasions,
1637         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1638         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1639         generate an IVT any more,
1640         * src/pic16/main.c (pic16_optionsTable): added command line option
1641         --optimize-cmp,
1642         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1643         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1644         macros,
1645         * src/pic16/NOTES: Raphael Neider added in list of active developers
1646         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1647         jumptable_end to prevent bug #,
1648         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1649         inCond and outCond fields,
1650         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1651         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1652         turn off register spilling,
1653         * (packRegsForOneUse): synced with other ports' versions although it
1654         is not used currently,
1655         * (pic16_packRegisters): added an optimization while reading
1656         structure bitfields, some registers may be saved (malloc code is
1657         decreased by 80 bytes)
1658
1659 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1660
1661         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1662         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1663         this can be optimized more?
1664
1665 2005-03-10 Raphael Neider <rneider AT web.de>
1666
1667         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1668           genNearPointerGet): (hopefully) fixed access to bitfields via
1669           pointers (p->bitN = x; and x = p->bitN; failed)
1670
1671 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1672
1673         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1674
1675 2005-03-09 Raphael Neider <rneider AT web.de>
1676
1677         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1678
1679 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1682         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1683           (regTypeNum): set REG_BIT type if necessary
1684         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1685         * support/regression/tests/critical.c: check bug 1144613
1686
1687 2005-03-02 Raphael Neider <rneider AT web.de>
1688
1689         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1690
1691 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1692
1693         * src/avr/ralloc.c (serialRegAssign),
1694         * src/ds390/ralloc.c (serialRegAssign),
1695         * src/hc08/ralloc.c (serialRegAssign),
1696         * src/mcs51/ralloc.c (serialRegAssign),
1697         * src/pic/ralloc.c (serialRegAssign),
1698         * src/pic16/ralloc.c (serialRegAssign),
1699         * src/xa51/ralloc.c (serialRegAssign),
1700         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1701
1702 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1703
1704         * src/SDCCast.c (decorateType): fixed bug 1124787
1705
1706 2005-02-20 Hubert Sack <sack AT digiplan.de>
1707         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1708
1709         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1710         patch #1121755
1711
1712 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1713
1714         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1715         to keep the correct label reference count when adding/removing references
1716         to labels. A peephole file using this is appended to patch #1144962.
1717
1718 2005-02-14 Raphael Neider <rneider AT web.de>
1719
1720         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1721         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1722         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1723           retrievals of result operand's value on assignment
1724
1725 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1726
1727         * device/include/pic16/string.h: modified prototype for memccpy()
1728         to memccpy(void *, void *, char, size_t)
1729         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1730         check whether to omit frame pointer or not,
1731         * (genInline): convert all occurences of "\n" to LF in inline
1732         assembler blocks, this helps formatting the inline text,
1733         * (pic16_loadFSR0): modified prototype,
1734         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1735         removed some 8051 legacy code,
1736         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1737         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1738         before allocating temporary registers in functions,
1739
1740 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1741
1742         * support/regression/tests/bitvars.c: corrected the "fix"
1743
1744 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * support/regression/tests/bitvars.c,
1747         * support/regression/tests/bitwise.c,
1748         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1749
1750 2005-02-10 Raphael Neider <rneider AT web.de>
1751
1752         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1753           different size for Alpha
1754         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1755
1756 2005-02-09 Raphael Neider <rneider AT web.de>
1757
1758         * src/SDCC.lex(doPragma) : save and restore warning options as well
1759           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1760         * have #pragma less_pedantic set the errorlevel to WARNING
1761           (fixes #1117001)
1762         * (cloneOptimize) : fixed wrong malloc's size
1763         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1764           facilitate correct handling of #pragma (save|restore)
1765
1766 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1767
1768         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1769
1770 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1771
1772         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1773
1774 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1775
1776         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1777
1778 2005-02-02 Raphael Neider <rneider AT web.de>
1779
1780         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1781         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1782         * (pic16_storeForReturn): fixed to allow returning function pointers
1783         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1784         * device/include/pic16/{stddef.h,stdbool.h}: added
1785
1786 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1787
1788         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1789
1790 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1791
1792         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1793         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1794          appeared to be required
1795
1796 2005-01-31 Borut Razem <borut.razem AT siol.net>
1797
1798         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1799           include/mcs51 and include/z80 directories to the package
1800
1801 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1802
1803         * src/hc08/gen.c (genFunction): fixed bug #1112752
1804
1805 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1806
1807         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1808
1809 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1810
1811         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1812
1813 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1814
1815         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1816
1817 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1818
1819         * device/include/c8051fxxx.h: removed these 6 files
1820         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1821
1822 2005-01-26 Raphael Neider <rneider AT web.de>
1823
1824         * src/pic16/gen.c (genAssign): fixed assignment from longs
1825           in codespace (were cut to three bytes)
1826         * (genDummyRead): implemented (except for CODESPACE...),
1827           fixed bug #1108575
1828         * src/pic16/glue.c (emitStatistics): beautified
1829         * device/lib/pic16/libm/Makefile: added include path
1830
1831 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1832
1833         * src/z80/gen.c (aopPut): fixed bug #1103902
1834
1835 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1836
1837         * device/lib/expf.c: fixed bug #1095792
1838
1839 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1840
1841         * device/lib/pic16/libm: added Math library sources
1842
1843 2005-01-24 Raphael Neider <rneider AT web.de>
1844
1845         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1846           to enable upcast to pCodeOpReg2 (there is no type tag to
1847           differenciate the two and pic16_popGet2p cast into PCOR2)
1848         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1849           (sizeof(sectNames) changed to sizeof(sectName))
1850           Both patches fix segfaults under MinGW.
1851
1852 2005-01-23 Raphael Neider <rneider AT web.de>
1853
1854         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1855           Safe_[mc]?alloc()'ed variables
1856         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1857           of (byte sized) temporaries (assign them to WREG for now)
1858         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1859           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1860           this might fix SIGSEGVs on MinGW...
1861         * src/SDCCopt.c (killDeadCode): restored original behaviour
1862           (volatile operands might get thrown away though)
1863
1864 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1865
1866         * src/pic16/gen.c: fixed bug #1106975,
1867         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1868         pointer update, INTCON is saved, global interrupts are disabled and
1869         restored after updateing TOS.
1870         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1871         * added function attribute 'shadowregs' to take advantage of shadow
1872         registers,
1873         * added function attribute 'wparam' as an alternative to the wparam
1874         pragma,
1875         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1876         user declares a non-ISR function as 'shadowregs',
1877         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1878
1879 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1880
1881         * .version: bumped version number to 2.4.8
1882         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1883         pic16 port,
1884         * device/lib/pic16/libio/i2c/: I2C module support library,
1885         * device/include/pic16/i2c.h: I2C support library header,
1886         * device/lib/pic16/libc/stdio/: standard IO support sources,
1887         * (printf_small.c): printf_small() source, supports float print,
1888         * (printf_tiny.c): printf_tiny() source, does not support floats,
1889         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1890         enable global optimizations for entire library source, other
1891         Makefiles in the source tree are also modified to reflect this,
1892         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1893         function,
1894         * doc/sdccman.lyx: updated to reflect new changes,
1895         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1896         sym->onStack if-case,
1897         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1898         sbit, idata, _idata, xdata, _xdata,
1899         * added pragma library, to link an external library, (see doc),
1900         * removed command line options, --pomit-config-words, --pomit-ivt,
1901         --pleave-reset-vector,
1902         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1903         when calling assembler to reflect memory model used, also define
1904         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1905         reflect stack model used,
1906         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1907         on stack return NULL,
1908
1909 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1910
1911         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1912           of the operands is volatile. Fixes #1020220
1913
1914 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1915
1916         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1917         * (OptimizeRegUsage): make sure that there is really no other flow where
1918           the first pCode is used
1919
1920 2005-01-22 Raphael Neider <rneider AT web.de>
1921
1922         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1923           to fix #1106967 (pCode->seq are not set up correctly)
1924
1925 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1926
1927         * src/SDCCglue.c (glue): make sure code area is declared before the
1928         static initialization area.
1929
1930 2005-01-21 Raphael Neider <rneider AT web.de>
1931
1932         * device/lib/Makefile.in: fixed test for pic16 install dir
1933         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1934           optimizations
1935         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1936           added --optimize-goto compiler switch and pragma wparam documentation
1937         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1938         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1939           and PRODH closing bug #1071770 (peephole optimizer)
1940
1941 2005-01-19 Raphael Neider <rneider AT web.de>
1942
1943         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1944           cmdLine buffers (used when calling sdcpp...) are large enough
1945           (MAX_PATH=256 truncates arguments leading to system halts when
1946           used in MinGW...)
1947         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1948         * (genUminus): rewritten to for efficiency
1949         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1950           used uninitialized in some cases)
1951         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1952           copy the third byte from the int -- now assumes 0x80 (data memory)
1953         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1954           operands (genAddLit expects the iCode's operands to swapped as
1955           well), fixed leftover bytes (crashed for short left operands)
1956         * (pic16_genMinusDec): performance improvements, removed false
1957           PIC14 emitSKPNCs
1958         * (pic16_genMinus): fixed to cope with differently sized operands
1959         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1960           for --obanksel > 1
1961         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1962         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1963           new banksel optimization
1964         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1965           analysis for temporary registers (segfaults...)
1966         * src/pic16/peeph.def: added rule
1967
1968 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1969
1970         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1971         which converts a float number to its ASCII representation
1972         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1973         functions to convert the fractional and integer part of a float to ASCII,
1974         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1975         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1976         ram
1977         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1978         _STATMEM macros,
1979         * device/include/pic16/adc.h: added GPL info,
1980         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1981         a pCodeOp as tested operand,
1982         * (genNearPointerGet): optimized bit testing, does not use
1983         intermediate register for bit value, test directly instead with
1984         BTFSS, BTFSC, works only for single bits,
1985         * (genpic16Code): dump the name of the iCode in the asm,
1986         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1987         renamed to pic16_decodeOp,
1988         * (serialRegAssign): do not allocate a temporary register for iCode
1989         sequences that test a single bit for 1/0
1990
1991 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1992
1993         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1994         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1995         access stack and frame pointers. They are initially assigned to
1996         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1997         accessing SFRs. Updated all occurences of modification of stack or
1998         frame pointer in gen.c and pcode.c,
1999         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2000         assigning of a literal value to pointers,
2001         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2002         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2003         selected
2004
2005 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2006
2007         * doc/sdccman.lyx: update documentation about stack pragma, added
2008         some info for stack memory models
2009
2010 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2011
2012         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2013
2014 2005-01-08 Raphael Neider <rneider AT web.de>
2015
2016         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2017           udata sections to fix bug #1097823
2018
2019 2005-01-05 Raphael Neider <rneider AT web.de>
2020
2021         * src/pic16/gen.c (genGenericShift): added handling of differently
2022           sized left operand and result
2023
2024 2005-01-04 Raphael Neider <rneider AT web.de>
2025
2026         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2027         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2028           to hold the condition bit)
2029         * added new version of genCmp (old code available via #define)
2030         * added new version of genShiftLeft/genShiftRight in a generic
2031           way, now supports shifting by negative values
2032         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2033           shiftCount (expected by genGenericShift)
2034         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2035         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2036           dump
2037         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2038           is an invalid literal too...)
2039
2040 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2041
2042         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2043         from Raphael Neider,
2044         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2045         for 8-bit literals. This fixes some literal operands which are sign
2046         extended to 16-bits ints when instruction needs only 8-bits.
2047
2048 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2049
2050         * device/lib/logf.c: added mcs51 assembly version
2051         * device/lib/expf.c: added mcs51 assembly version
2052         * device/lib/_logexpf.c: new shared asm code for expf and logf
2053         * device/include/math.h: add defines for assembly math library
2054         * device/lib/Makefile.in: build new _logexpf.c
2055         * device/lib/libfloat.lib: use new _logexpf.c
2056
2057 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2058
2059         * src/pic/device.c
2060         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2061           device types which have less than 0x7f registers.
2062
2063 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2064
2065         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2066
2067 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2068
2069         * device/lib/printf_fast.c: only build on supported arch.
2070         * device/lib/printf_tiny.c: only build on supported arch.
2071         * device/lib/printf_fast_f.c: only build if asm float lib
2072         * device/lib/_fsget1arg.c: only build if asm float lib
2073         * device/lib/_fsget2args.c: only build if asm float lib
2074         * device/lib/_fsnormalize.c: only build if asm float lib
2075         * device/lib/_fsreturnval.c: only build if asm float lib
2076         * device/lib/_fsrshift.c: only build if asm float lib
2077         * device/lib/_fsswapargs.c: only build if asm float lib
2078         * device/include/stdio.h: don't provide print_fast,
2079           print_fast_f, print_tiny prototypes if --xstack used
2080
2081 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2082
2083         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2084         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2085           to the SOURCES
2086
2087 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2088
2089         * device/lib/printf_fast_f.c: same as printf_fast, but
2090           with floating point enabled
2091         * device/lib/printf_fast.c: minor tweaks
2092         * device/include/stdio.h: add printf_fast_f
2093
2094 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2095
2096         * src/SDCCmain.c: make --float-reent default for mcs51
2097         * device/lib/_fsadd.c: added mcs51 assembly version
2098         * device/lib/_fssub.c: added mcs51 assembly version
2099         * device/lib/_fsmul.c: added mcs51 assembly version
2100         * device/lib/_fsdiv.c: added mcs51 assembly version
2101         * device/lib/_fseq.c: added mcs51 assembly version
2102         * device/lib/_fsneq.c: added mcs51 assembly version
2103         * device/lib/_fsgt.c: added mcs51 assembly version
2104         * device/lib/_fslt.c: added mcs51 assembly version
2105         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2106         * device/lib/Makefile.in: add _fscmp to build
2107         * device/lib/libfloat.lib: add _fscmp to build
2108
2109 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2110
2111         * device/lib/_fs2slong.c: added mcs51 assembly version
2112         * device/lib/_fs2sint.c: added mcs51 assembly version
2113         * device/lib/_fs2schar.c: added mcs51 assembly version
2114         * device/lib/_fs2ulong.c: added mcs51 assembly version
2115         * device/lib/_fs2uint.c: added mcs51 assembly version
2116         * device/lib/_fs2uchar.c: added mcs51 assembly version
2117         * device/lib/_slong2fs.c: added mcs51 assembly version
2118         * device/lib/_sint2fs.c: added mcs51 assembly version
2119         * device/lib/_schar2fs.c: added mcs51 assembly version
2120         * device/lib/_ulong2fs.c: added mcs51 assembly version
2121         * device/lib/_uint2fs.c: added mcs51 assembly version
2122         * device/lib/_uchar2fs.c: added mcs51 assembly version
2123         * device/include/float.h: added #define to select asm vs c
2124
2125 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2126
2127         * device/lib/printf_fast.c: improvements to float output
2128         * device/include/float.h: add defines for assembly float library
2129         * device/lib/_fsget1arg.c: receive 1 float arg
2130         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2131         * device/lib/_fsnormalize.c: normalize a float
2132         * device/lib/_fsreturnval.c: return float, various helper routines
2133         * device/lib/_fsrshift.c: right shift a float's mantissa
2134         * device/lib/_fsswapargs.c: swap 2 floats
2135         * device/lib/Makefile.in: build these 6 new files for mcs51
2136         * device/lib/libfloat.lib: add these 6 files to the library
2137
2138 2004-12-26 Borut Razem <borut.razem AT siol.net>
2139
2140         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2141           built by gcc 3.4.2
2142
2143 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2144
2145         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2146           and fully reentrant and register bank neutral.
2147         * device/lib/printf_fast.c: added float (not enabled by default),
2148           added compact/slower integer (also not enabled by default),
2149           improved size/speed of fast integer code, other minor changes
2150         * device/include/stdio.h, device/lib/Makefile.in,
2151           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2152
2153 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2154
2155         * src/pic16/pcode.c: declaring variables other than at the start of a
2156           block is not supported in C by VC6.
2157
2158 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2159
2160         * applied a previous patch from Raphael Neider that wasn't included
2161         in the previous commits, which fixes infinite loops within jumptable
2162         improvements,
2163         * made some fixes that previous patches introduced
2164
2165 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2166
2167         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2168         that fixes an issue with AOP_PCODE asmop's offset,
2169         * (pic16_popCopyReg): update instance field too,
2170         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2171         function of pic port,
2172         * (genCmp, genAnd, genAssign),
2173         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2174
2175 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2176
2177         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2178         variables initial values to idata section,
2179         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2180         variables in some functions. This utilizes parmBytes field of iCode
2181         structure to hold the offset of the variable in stack. (might be
2182         able to use the stack field too?)
2183         * applied patch from Raphael Neider # ### , # ###
2184         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2185         variable initial values in idata section,
2186         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2187         for static variables with initial value
2188         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2189         applied fix in while loop from Raphael Neider.
2190
2191 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2192
2193         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2194         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2195         * src/ds390/ralloc.c (serialRegAssign): spill bits
2196         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2197         * support/Util/SDCCerr.c,
2198         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2199         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2200         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2201
2202 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2203
2204         * device/include/sdcc-lib.h: inserted LGPL, added includes
2205           asm/ds390/features.h and asm/mcs51/features.h
2206         * device/include/asm/default/features.h,
2207         * device/include/asm/gbz80/features.h,
2208         * device/include/asm/z80/features.h: added empty _AUTOMEM
2209           and _STATMEM
2210         * device/include/asm/ds390/features.h,
2211         * device/include/asm/mcs51/features.h: added files with defines for
2212           _AUTOMEM and _STATMEM indicating automatic and static storage class
2213         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2214         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2215         * src/SDCCicode.c (geniCodeCast),
2216         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2217         * src/SDCCloop.c (loopInduction): removed unused variable lr
2218         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2219           to convertToFcall to include char modulo (RFE 1065037), added check
2220           if left operand is unsigned and use abs of literal value
2221         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2222           as it doesn't work after conversion from peephole.def to peephole.rul
2223         * src/mcs51/gen.c (toBoolean): added check for size,
2224           (genModOneByte): optimized code for signed char modulo a literal
2225           power of 2 (thanks to Hubert Sack),
2226           (genRRC): removed unnecessary "clr c",
2227           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2228         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2229           jump optimization,
2230           swapped rules 256.c and 256.d,
2231           extended 256.d by using new multiple checks (thanks Erik),
2232           added rules 256.e and 256.f,
2233           updated rule 261.a and 261.b to new generated code
2234         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2235
2236 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2237
2238         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2239           induction related bugs, including first part of bug #1074377
2240
2241 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2242
2243         * applied patch from bug-report #1076292,
2244         * applied patches for genAnd and Goto-optimizations for Raphael
2245         Neider,
2246         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2247         dump a less iCode information,
2248         * src/pic16/device.h (pic16_options_t): added field debgen,
2249         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2250         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2251         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2252         puclic,
2253         * (various functions): added macros FENTRY and FENTRY2 to functions,
2254         to emit function prologue,
2255         * (various functions): fixed indentation,
2256         * (genNearPointerGet): fixed loading of FSR0,
2257         * (genPackBits): applied patch from Raphael Neider to fix updating
2258         of FSR0 and touching only the modified bits,
2259         * src/pic16/genarith.c (various functions): added macros FENTRY to
2260         emit function prologue in comments,
2261         * src/pic16/pcode.h: added functions debugf2, debugf3,
2262         * src/pic16/ralloc.c: partial fix for packForPush caused
2263         segmentation fault,
2264
2265 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2266
2267         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2268           <stsp AT users.sourceforge.net> with reversed byte order
2269         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2270
2271 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2272
2273         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2274           bug #1074377
2275         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2276         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2277
2278 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2279
2280         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2281
2282 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2283
2284         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2285           conditions,
2286           (setFromConditionArgs): friendly operand parser for peephole rules,
2287           (operandBaseName, operandsNotRelated): new peephole condition
2288           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2289           architecture specific register naming into account, handles n-way
2290           comparisons, and supports quoted literals
2291         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2292
2293 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2294
2295         * src/mcs51/peeph.def: fixed bug #1076940
2296
2297 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2298
2299         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2300
2301 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2302
2303         Adding support for replacing ljmps with sjmps in jumptables
2304         generated for switch statements. For now you need to set the
2305         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2306         Now 4 algorithms for mcs51 jumptable generation are used:
2307         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2308         addresses loaded pc-relative for up to 112 cases and stack-pushing
2309         target addresses loaded with offset from dptr for up to 256 cases.
2310
2311         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2312         * src/mcs51/main.c: adapted constants for switch table generation
2313         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2314
2315 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2316
2317         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2318         * support/regression/tests/bug1057979.c: added test for bug 1073386
2319
2320 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2321
2322         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2323         compilers
2324
2325 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2326
2327         * src/pic16/device.h,
2328         * src/pic16/genarith.c,
2329         * src/pic16/glue.c,
2330         * src/pic16/main.c,
2331         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2332
2333 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2334
2335         Large cummulative patch for pic16 port.
2336         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2337         to call when a stack overflow occurs,
2338         * (malloc.h): added CVS Id tag,
2339         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2340         variable,
2341         * added libc directory. The current version of LibC contains string
2342         functions, ctype functions and macros and some functions of the
2343         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2344         be extensively tested in the future. Standard disclaimer here.
2345         Library is not automatically build yet. But one can build it by
2346         invoking 'make' inside the libc directory.
2347         * added ADC library under libio. Preliminary version yet.
2348
2349         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2350         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2351         aopForRemat() now and not by pic16_aopOp(),
2352         * (pic16_popGetTempReg): removed warning messgae when allocating
2353         temporary registers, its a buggy feature and will be removed,
2354         * (pic16_popGet): set register instance field in AOP_CRY,
2355         * (pic16_outBitC): fixed for results in size greater than 1,
2356         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2357         * (pic16_storeForReturn): optimized return of 0,
2358         * (genCmp): experimental code for new genCmp which uses PIC18's
2359         special compare&skip instructions. Initial tests fail some times
2360         with variables grater than 1 byte in size, so new code is disabled,
2361         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2362         a single bit,
2363         * (genCast): began a fix to optimize the casting of a bit to another
2364         bit, now assigning a bitfield to another bitfield will fail, sorry,
2365         * src/pic16/main.c: disabled the use of lr-support feature,
2366         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2367         * added some function prototypes, added function _debugf prototype,
2368         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2369         bits with offset (case PO_GPR_BIT),
2370         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2371         command line,
2372         * (isBankInstruction): modified to return 0 for no banking instruction,
2373         and 1 for banking instruction,
2374         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2375         caused stop processing pCodes after a inline assembly block,
2376         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2377         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2378         registers when it shouldn't,
2379         * src/pic16/ralloc.c (allocReg): add preliminary support for
2380         supporting a limited set of temporary registers,
2381
2382 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2383
2384         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2385           genDataPointerSet): ensure assignments always copy in MSB to LSB
2386           order,
2387           (loadRegFromAop): recognize CLRH optimization,
2388           (genFunction): optimize RECEIVE iCodes in reentrant functions
2389
2390 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2391
2392         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2393           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2394           selected.
2395         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2396         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2397           contiguous with data
2398
2399 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2400
2401         * device/lib/_gptrget.c (_gptrget),
2402         * device/lib/_gptrgetc.c (_gptrgetc),
2403         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2404           instead of sjmp to ret
2405         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2406           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2407
2408 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2409
2410         * .version: bumped version to 2.4.7
2411         * device/lib/_gptrget.c (_gptrget): is now _naked
2412         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2413         * device/lib/_gptrput.c (_gptrput): is now _naked
2414         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2415           (createFunction): fixed xstack
2416         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2417         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2418           or bit either,
2419           (geniCodeCritical): store original interrupt state in an iTemp bit
2420           var unless stack-auto
2421         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2422         * src/SDCCmain.c (setIncludePath): added include/target to search path
2423         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2424         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2425           prototype,
2426           (processFuncArgs): put bit vars in bit area
2427         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2428           unsaveRBank): fixed xstack,
2429           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2430           (genFunction, genEndFunction): fixed xstack,
2431           (genAssign): optimization don't walk backwards through mem
2432         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2433         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2434         * support/regression/Makefile: also make library (for stack-auto) when
2435           making "all" and added "test-mcs51-xstack-auto"
2436         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2437         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2438         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2439         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2440         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2441           make-library by MAKE_LIBRARY
2442         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2443           regression tests for xstack
2444         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2445         * support/regression/tests/critical.c: test for critical on mcs51
2446
2447 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2448
2449         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2450           built version of sdcc instead of installed version
2451
2452 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2453
2454         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2455         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2456           vprintf.c now
2457         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2458         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2459           WARNING: remove device/lib/build/z80/printf.o by hand when
2460           updating from previous build!
2461         * device/lib/z80/printf.c: updated comment
2462         * support/regression/tests/bug1057979.c: test all ports now
2463         * support/regression/tests/bug1065458.c: file added
2464
2465 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2466
2467         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2468           *_start and *_end symbols for static functions
2469
2470 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2471
2472         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2473           and search crt0.o in all library paths,
2474           (setIncludePath): proper handling of --nostdinc,
2475           (setLibPath): proper handling of --nostdlib
2476         * support/regression/Makefile,
2477         * support/regression/ports/ds390/spec.mk,
2478         * support/regression/ports/gbz80/spec.mk,
2479         * support/regression/ports/hc08/spec.mk,
2480         * support/regression/ports/mcs51/spec.mk,
2481         * support/regression/ports/mcs51-large/spec.mk,
2482         * support/regression/ports/mcs51-stack-auto/spec.mk,
2483         * support/regression/ports/z80/spec.mk: use include and lib files from
2484           built version of sdcc instead of installed version
2485         * doc/sdccman.lyx: fixed typo in --nostdinc
2486
2487 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2488
2489         * src/pic/pcode.c,
2490         * src/pic/device.c,
2491         * src/pic/ralloc.c,
2492         * src/pic/gen.c : added support to generate code for struct bit fields.
2493
2494 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2495
2496         * as/xa51/xa_version.h,
2497         * device/include/errno.h,
2498         * device/include/regc515c.h,
2499         * device/lib/_itoa.c,
2500         * device/lib/_ltoa.c,
2501         * device/lib/ser_ir_cts_rts.c,
2502         * sim/ucsim/xa.src/glob.cc,
2503         * sim/ucsim/xa.src/inst_gen.cc,
2504         * sim/ucsim/xa.src/xa_bit.cc,
2505         * sim/ucsim/xa.src/xa_sfr.cc,
2506         * sim/ucsim/z80.src/inst_dd.cc,
2507         * sim/ucsim/z80.src/inst_fdcb.cc,
2508         * support/scripts/keil2sdcc.pl,
2509         * src/pic16/pic16.dsp,
2510         * src/pic16/pic16a.dsp: corrected cvs line endings
2511         * device/lib/printf_large.c: fixed bug 1057979
2512         * src/pic16/gen.c: fixed non-C standard code
2513         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2514         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2515         * support/regression/ports/mcs51/support.c: reload T1 asap
2516         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2517           pdata use and clear idata startup behaviour
2518         * support/regression/tests/bug1057979.c: added
2519
2520 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2521
2522         * device/examples/ds390/ow390/ad26.h,
2523         * device/examples/ds390/ow390/cnt1d.h,
2524         * device/examples/ds390/ow390/crcutil.c,
2525         * device/examples/ds390/ow390/ownet.h,
2526         * device/examples/ds390/ow390/owsesu.c,
2527         * device/examples/ds390/ow390/swt12.h,
2528         * device/examples/ds390/ow390/swtoper.c,
2529         * device/examples/ds390/ow390/temp10.h,
2530         * device/examples/ds390/ow390/thermodl.c,
2531         * device/examples/ds390/tinitalk/tinitalk.dsp,
2532         * device/examples/ds390/tinitalk/tinitalk.dsw,
2533         * device/examples/mcs51/clock/hw.h,
2534         * device/examples/mcs51/simple2/go.bat,
2535         * device/examples/serialcomm/windows/serial.h,
2536         * device/examples/xa51/dummy.c,
2537         * device/examples/xa51/hello.c,
2538         * device/include/80c51xa.h,
2539         * device/include/at89x051.h: corrected cvs line endings
2540
2541 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2542
2543         * src/pic16/main.c (options): added command line --gstack, to trace
2544         stack over/under flows,
2545         * added pragma 'wparam' to allow passing first byte of function
2546         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2547         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2548         call to __gstack_test function and sets up the symbol as extern,
2549         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2550         * popaop): added call to pic16_testStackOverflow,
2551         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2552         wparamList list,
2553         * (genCall, genPcall): now all parameters are passed via stack
2554         except in functions that are pass to wparam pragma in which WREG is
2555         used too,
2556         * (genPcall): REENTRANT flag is checked to see if variable prototype
2557         contains reentrant keyword, don't call a non-reentrant function, via
2558         a reentrant function pointer or vice versa, functions are never
2559         passed via WREG,
2560         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2561         D.Winkler,
2562         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2563         SIGSEGV when accessing a NULL register stucture,
2564         * (pic16_printGPointerType): modified to handle UPPER modifier for
2565         function initializers, changed prototype of function to simpler one,
2566         * (pic16_printIvalFuncPtr): check to see if function is already
2567         added in externs list,
2568         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2569         optimized a move from W to SFR with a move to the same register
2570         later after a CALL,
2571         * device/lib/pic16/debug: NEW directory, contains debug features
2572         which are enabled when linking with libdebug.lib, currently command
2573         line option --gstack enables stack pointer tracing for over/under
2574         flow, corresponding sources are in debug/gstack
2575
2576 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2577
2578         * doc/sdccman.lyx: updated SDCC version,
2579         * (PIC16 port): update list of command line options,
2580         * src/pic16/device.h (structure pic16_options_t): added field gstack
2581         to enable stack overflow tracing on push/pops,
2582         * src/pic16/device.c (statistics structure): added statistics
2583         structure,
2584         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2585         pic16_dump_int_registers): increase statistics counters for each
2586         * variable which is encountered
2587         * (pic16_dump_usection): emit each .udata variable to its own udata
2588         section,
2589         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2590         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2591         parameters via stack, otherwise use old scheme,
2592         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2593         assembler output file,
2594         * src/pic16/main.c: added command line options --gstack to enable
2595         push/pop tracing for stack overflow,
2596         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2597         instructions): added size of each instruction,
2598         * (pic16_countInstruction): estimate size of instructions in
2599         the_pFile list, inline assembly blocks are not counted,
2600         * (pic16_FixRegisterBanking): trace previous register usage, when
2601         banksel optimizations is greater than 0, don't emit a redudant
2602         banksel directive,
2603
2604 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2605
2606         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2607         * src/pic16/ralloc.c : applied same fix for pic16.
2608         * src/pic/gen.c : tidied it up a little.
2609
2610 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2611
2612         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2613         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2614
2615 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2616
2617         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2618
2619 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2620
2621         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2622         non-reentrant function __modsint in the interrupt function (thus
2623         corrupting math operations during serial I/O)
2624         * device/lib/ser_ir.c: as above, changed buffersize
2625         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2626         256.c,d for zeroing
2627         * doc/Makefile: added option -t for rsync
2628
2629 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2630
2631         * src/SDCCast.h (struct ast),
2632         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2633
2634 2004-10-20 Borut Razem <borut.razem AT siol.net>
2635
2636         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2637         package
2638
2639 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2640
2641         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2642         makefile targets,
2643         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2644         support functions to replace long sequences of MOVFF's from access
2645         bank registers to stack and vice versa,
2646         * src/pic16/device.h: added new field opt_flags, where optimization
2647         flags can be set to enable certain features,
2648         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2649         * pBlock, (genFunction, genEndFunction): surroung loop for
2650         saving/loading used registers in stack with PC_INFO pCodes,
2651         INF_LREGS. Code in between can then be optimized by pCode optimizer
2652         to support function calls,
2653         * (genDataPointerSet): fixed bug which loaded float fields in
2654         structures with corrupt data,
2655         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2656         in a standard way debug info on stderr. Feature used for developing
2657         and debugging only,
2658         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2659         obsolete chunks of code,
2660         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2661         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2662         * pic16/src/pcode.c (pic16_newpCodeInfo,
2663         * (pic16_newpCodeOpLocalRegs),
2664         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2665         feature,
2666         * (pic16_pCodeConstString): printing of the initial value of a
2667         symbol as a comment is inhibited since parsing was already done by
2668         copyStr and output is corrupt,
2669         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2670
2671 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2672
2673         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2674
2675 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * as/mcs51/lkarea.c: removed old K&R style,
2678           (lnksect): changed check on boundary error,
2679           (lnksect2): changed check on boundary error,
2680           (lnksect2): extend XSTK to end of page if size = 1
2681         * as/mcs51/lkmain.c: removed old K&R style,
2682           (Areas51): create l_IRAM symbol
2683         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2684         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2685           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2686         * device/lib/_mullong.c: added version to be compiled with xstack
2687         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2688         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2689         * device/lib/mcs51/crtxstack.asm: fixed comment
2690         * src/SDCCglue.c: maxInterrupts defaults to 0,
2691           (emitMaps): added pdata,
2692           (createInterruptVect): (re)moved default,
2693           (glue): added pdata,
2694           (glue): moved __start__xstack to XSTK with default size 1
2695         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2696           and options.float_rent when options.stackAuto is set,
2697           (linkEdit): only write XDATA_NAME if provided on command line
2698         * src/SDCCmem.h,
2699         * src/SDCCmem.c: added pdata
2700         * src/port.h: added pdata_name to PORT
2701         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2702           (saveRegisters, unsaveRegisters): removed usage of B,
2703           (genMinus): fixed accumulator clash,
2704           (genJumpTab): added comment, this needs another look
2705         * src/mcs51/gen.c: added check for "B in use" paranoia,
2706           added pushB() and popB()
2707         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2708           chance
2709         * src/avr/main.c,
2710         * src/ds390/main.c,
2711         * src/hc08/main.c,
2712         * src/mcs51/main.c,
2713         * src/pic/main.c,
2714         * src/pic16/main.c,
2715         * src/xa51/main.c,
2716         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2717           added PSEG (PAG,XDATA) or NULL to port specifier
2718         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2719         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2720           (_mcs51_genInitStartup): removed __start__xstack equ,
2721           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2722         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2723         * src/z80/gen.c (_rleAppend): fixed warnings
2724         * support/regression/tests/zeropad.c: added pdata test
2725         * .version: bumped to 2.4.6
2726
2727 2004-10-17 Borut Razem <borut.razem AT siol.net>
2728
2729         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2730         as a part of nightly build
2731
2732 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2733
2734         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2735         WREG holds the first byte function parameters,
2736         * (aopForSym): take special case for symbols which are in FARSPACE
2737         but in CODESPACE too,
2738         * (assignResultValue): modified to take into account _G.useWreg,
2739         * (genCall): don't use wreg for parameter passing when function is
2740         declared as reentrant, too, added optimization INCF to stack
2741         pointer when stack parameter count is 1,
2742         * (genFunction, genEndFunction): refurnished and fixed to not using
2743         wreg for passing parameters when function has varargs or is
2744         reentrant, fixed bug with symbol name compare for generating
2745         functions in absolute address,
2746         * (pic16_storeForReturn): refurnished,
2747         * (genCmp): began writing a new version of the function, not ready
2748         yet, therefore it is disabled,
2749         * (genAssign): do not read code memory when assigning a function to
2750         a pointer function,
2751         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2752         array of characters, not pointer,
2753         * (pic16initialComments): in debug mode emit an .ident directive for
2754         the assembler,
2755         * (_process_pragma): emit a new warning type (internal to pic16)
2756         when setting stack to default length, emit a similar warning when
2757         placing a function at absolute address and address is not word aligned
2758         * (_pic16_parseOptions): added 'return TRUE' statement,
2759         * (_pic16_linkEdit): if compiling a source, then add the source's
2760         file object, first in the list of objects to link,
2761
2762 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2763
2764         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2765         * src/pic/main.c : removed VC warning.
2766         * src/pic/gen.c : changed comment.
2767
2768 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2769
2770         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2771         reference to a deprecated symbol _GPTRREG was causing failure to
2772         link. Thanks G. M. Gallant for the info.
2773
2774 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2775
2776         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2777         comments for Bugs item #954788.
2778
2779 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2780
2781         * src/pic16/device.c (pic16_dump_gsection,
2782         * pic16_groupRegistersInSection): handle symbols declared to be in
2783         access bank differently,
2784         * src/pic16/gen.c (struct _G): added field resDirect,
2785         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2786         send values read from stack directly to result and don't allocate
2787         temporary values,
2788         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2789         same registers,
2790         * (pic16_sameRegsOfs): NEW,
2791         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2792         free because they were not allocated from temporary pool,
2793         * pic16_popRegFromString): workaround to fix a problem with
2794         allocating variables twice or never,
2795         * (genGenPointerGet): using PRODL instead of FSR0H,
2796         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2797         instead of FSR0H,
2798         * (genAssign): take advantage of the _G.resDirect flag,
2799         * (genCast): around line 11844, use mov2f instead of directly
2800         MOVFF'ing between operands to account for literal values,
2801         * src/pic16/genutils.c: some new debug functions for gpsim have been
2802         added,
2803         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2804         float with integer part only,
2805         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2806         place variables in access bank
2807         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2808         updated sources to reflect recent changes in gen.c
2809
2810 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2811
2812         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2813         sources that searched for headers in installation path, now the
2814         device/include/pic16 is used,
2815         * src/pic16/glue.c (pic16glue),
2816         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2817         .line directives if not in debug mode, this suppresses assembler's
2818         warnings for ignored directives
2819
2820 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2821
2822         * src/port.h: made reset_regparms prototype void parameter explicit.
2823         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2824         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2825         * doc/sdccman.lyx: documented warning disabling and how to use
2826           printf_large to make it print floats.
2827         * device/include/stdbool.h: NEW
2828         * device/lib/_atof.c,
2829         * device/lib/_divuint.c,
2830         * device/lib/_divulong.c,
2831         * device/lib/expf.c,
2832         * device/lib/printf_large.c,
2833         * device/lib/sincosf.c,
2834         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2835         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2836           a completely reentrant lib.
2837
2838 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2839
2840         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2841         * device/include/pic16/stdio.h: fixed bug with colon
2842
2843 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2844
2845         * device/include/pic16/stdio.h,
2846         * device/include/pic16/stdlib.h,
2847         * device/include/pic16/math.h: NEW
2848         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2849         declared as _naked to reduce overhead
2850         * device/lib/Makefile.in (target port-specific-objects-pic16):
2851         changed * to *.* so to ignore the CVS directory,
2852         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2853         stacked variables back in stack,
2854         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2855         corruption
2856
2857 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2858
2859         * .version: bumped version number to 2.4.5
2860         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2861         * support/Util/SDCCerr.c (messages structure): added entry for
2862         W_POSSBUG2
2863
2864         Large cumulative patch for pic16 port and libraries.
2865         * device/include/pic16/sdcc-lib.h,
2866         * device/include/pic16/stdarg.h,
2867         * device/include/asm/pic16/features.h,
2868         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2869         * device/include/pic16/float.h: changes reentrant keyword with
2870         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2871         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2872         updated target build-libraries to include objects from gptr,
2873         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2874         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2875         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2876         all function headings,
2877         * src/SDCCmain.c: added global parameter userIncDirsSet,
2878         * (parseCmdLine): when option -I is encountered add directory to
2879         userIncDirsSet too,
2880         * src/version.awk: added space between control and long,
2881         * src/pic16/NOTES: added some notes for the port,
2882         * src/pic16/gen.c: added prototype for mov2fp function,
2883         * (fReturnpic16[]): properly named return value registers,
2884         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2885         * (aopForSym): added code to handle symbols with onStack flag set,
2886         symbols onStack are allocated PTRSIZE bytes,
2887         * (aopFreeAsmop): handles special case where asmops are stack objects,
2888         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2889         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2890         added argument lock to trace flaws in allocating temporary registers
2891         when developing port,
2892         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2893         * (pic16_popRegFromString): reenabled allocating a direct register
2894         from string,
2895         * (assignResultValue): various beautifications,
2896         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2897         referenced function argument,
2898         * (genIpush): reenabled to allow stacked arguments, handles only
2899         ic->parmPush iCodes,
2900         * (genCall, genPcall): major changes to allow for variable argument
2901         functions, fixed a bug with falsely restoring stack pointer after
2902         returning from call,
2903         * (genFunction): pending code for critical function,
2904         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2905         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2906         * (genNearPointerGet): fixed bug with indirect reading, was always
2907         reading from INDF0
2908         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2909         pointers,
2910         * (genAddrOf): rewrote code to take address of a stacked function parameter
2911         * (genCast): fixed casting to generic pointer type,
2912         * src/pic16/gen.h: added AOP_STA,
2913         * (struct asmop): added field stk,
2914         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2915         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2916         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2917         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2918         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2919         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2920         generic pointers,
2921         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2922         and library paths,
2923         * (pic16_port structure): generic pointer size is set to 3,
2924         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2925         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2926         compiler warning,
2927         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2928         operand is an iTemp,
2929
2930 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2931
2932         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2933         * debugger/mcs51/simi.c: addapt new syntax of s51
2934
2935 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2936
2937         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2938         * src/pic16/pcode.c: commented out some calls to free() in order to
2939         fix bug #989576,
2940
2941 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2942
2943         * src/SDCCicode.h,
2944         * src/SDCCicode.c (isiCodeInFunctionCall),
2945         * src/avr/ralloc.c (selectSpil),
2946         * src/pic/ralloc.c (selectSpil),
2947         * src/pic16/ralloc.c (selectSpil),
2948         * src/ds390/ralloc.c (selectSpil),
2949         * src/hc08/ralloc.c (selectSpil),
2950         * src/xa51/ralloc.c (selectSpil),
2951         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2952         stack in the middle of a function call sequence (fixes bug #1020268)
2953         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2954         costs associated with the minimum switch case.
2955
2956 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2957
2958         * src/SDCC.lex: fixed bug #1030549
2959
2960 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2961
2962         * src/SDCCcse.h (struct cseDef),
2963         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2964         over a function call if the CSE is derived from a symbol whose
2965         address has been taken (fixes bug #1029883)
2966         * support/regression/tests/bug-1029883: a new regression test for
2967         this bug
2968
2969 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2970
2971         * src/hc08/gen.c (emitinline): fixed bug #1029778
2972         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2973         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2974         and starts toward RFE #905167)
2975
2976 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2977
2978         * src/pic16/gen.c (mov2f): New function to move an operand to
2979         another without considering if it is a literal or a register,
2980         * (pic16_sameRegs): don't check if they are both AOP_REG,
2981         * (AccRsh): removed andmask=0 lines,
2982         * (genLeftShift): duplicated to be improved in future versions,
2983         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2984         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2985         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2986         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2987         * (insertBankSwitch): fixed inserting banksel directives algorithm
2988         for instructions that follow a skip instruction, this fixes a report
2989         for broken subtraction code generation,
2990         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2991         iCode is a left op, just in case result and right share the same
2992         registers
2993
2994 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2995
2996         * src/hc08/main.c,
2997         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2998         preservation of HX
2999         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3000         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3001         on 2004-09-12; it was buggy
3002
3003 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3004
3005         * src/SDCCsymt.h: removed RESULT_CHECK
3006         * src/SDCCast.c,
3007         * src/SDCCglue.c,
3008         * src/SDCCval.c,
3009         * src/pic/glue.c,
3010         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3011
3012 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3013
3014         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3015         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3016         configuration values no more rejected by compiler, they are assigned
3017         to configuration registers with a warning message instead,
3018         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3019         the for-loop so last conf register is emitted too,
3020         * (_pic16_initPaths): link library libsdcc.lib by default,
3021         * (_hasNativeMulFor): modified test for multiplication according to
3022         Raphael Neider's remarks. Integer multiplication is also done with
3023         support functions,
3024         * device/include/pic16/pic18fregs.h: corrected type error in while
3025         testing and including 18f6720 header file
3026
3027 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3028
3029         * src/pic16/device.h (pic16_options): removed field use_crt,
3030         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3031         until an optimization to handle single bits is added,
3032         * (pic16_loadFSR0): moved before genUnpackBits,
3033         * (genAnd): some white lines removed,
3034         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3035         leave_reset flags in pic16_options when using crt modules,
3036
3037 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3038
3039         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3040           for bugs 898889 & 979599. Also used some safer print instructions.
3041
3042 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3043
3044         * src/pic16/device.h (pic16_options_t): added field use_crt,
3045         crt_name, no_crt,
3046         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3047         catch a probable future bug,
3048         * src/pic16/gen.c: aopIdx function commented out,
3049         * (genAssign): commented out old code which used aopIdx,
3050         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3051         code, added if conditionals to take into account the --use-crt
3052         command line options,
3053         * src/pic16/main.c (pic16_optionsTable): added new command line
3054         options, --use-crt= and --no-crt,
3055         * (_pic16_linkEdit): now the proper crt object is added in the
3056         linker command line except than when --no-crt is specified,
3057         * src/pic16/pcode.c,
3058         * src/pic16/pcode.h: added some structures and functions for a new
3059         optimization scheme to compansate for instruction overhead between
3060         same iCodes, this scheme is currently under development and is not
3061         working in any way,
3062         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3063         to && operator,
3064         * device/lib/pic16/startup/crt0i.c,
3065         * device/lib/pic16/startup/crt0iz.c: added global char variable
3066         __uflags to force the generation of an idata section
3067
3068 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3069
3070         * doc/Makefile,
3071         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3072         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3073
3074 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3075
3076         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3077         Frieder) and clarified the default code optimization mode
3078
3079 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3080
3081         * src/SDCC.lex (doPragma, process_pragma),
3082         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3083         "opt_code_size", and "opt_code_balanced"
3084         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3085         regrouped options by category, added support for category headers
3086         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3087         and "--opt-code-size"
3088         * doc/sdccman.lyx: documented these new options and pragmas
3089         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3090         preference into account
3091
3092 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3093
3094         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3095           geniCodePreDec): Fixed bug 904237 by generating a warning
3096         * src/SDCCerr.h,
3097         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3098
3099 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3100
3101         * src/pic/device.c : When no max ram set validate full memory range.
3102         * src/pic/pcode.c,
3103         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3104
3105 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3106
3107         * device/lib/_gptrget.c,
3108         * device/lib/_gptrput.c: updated comment
3109         * device/lib/calloc.c,
3110         * device/lib/free.c,
3111         * device/lib/malloc.c,
3112         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3113         * src/SDCCcse.c (cseBBlock),
3114         * src/SDCCicode.c (printOperand, geniCodeArray),
3115         * src/SDCCicode.h (struct operand): fixed bug 868103
3116         * support/regression/tests/bug-868103.c: added
3117         * src/SDCCast.c (searchLitOp),
3118         * src/SDCCcse.h (struct cseDef),
3119         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3120         * src/SDCCicode.h (struct operand),
3121         * src/SDCCsymt.h (struct sym_link),
3122         * src/avr/gen.c (hasInc),
3123         * src/ds390/gen.c (hasInc),
3124         * src/hc08/gen.c (genPlusIncr, hasInc),
3125         * src/mcs51/gen.c (hasInc),
3126         * src/pic16/glue.c (pic16_printIvalChar),
3127         * src/pic16/ralloc.c (regWithIdx),
3128         * src/xa51/gen.c (hasInc) : removed warnings
3129         * src/SDCCast.c (createBlock): added comment ???
3130         * src/hc08/ralloc.c: updated comments
3131
3132 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3133
3134         * doc/sdccman.lyx: updated section on switch statements, added
3135         section about semaphore locking
3136         * doc/Makefile: added option -info for latex2html
3137         * device/lib/_gptrget.c,
3138         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3139
3140 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3141
3142         * src/pic/device.h,
3143         * src/pic/device.c,
3144         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3145          maxram is less than 0x100.
3146
3147 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3148
3149         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3150
3151 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3152
3153         * src/port.h,
3154         * src/mcs51/main.c,
3155         * src/ds390/main.c,
3156         * src/z80/main.c,
3157         * src/hc08/main.c,
3158         * src/pic/main.c,
3159         * src/pic16/main.c,
3160         * src/avr/main.c,
3161         * src/xa51/main.c
3162         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3163         a jump table is the best form for a switch statement, including
3164         automatic insertion of missing cases to make the case range
3165         continuous. Developed in collaboration with Frieder Ferlemann.
3166
3167 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3168
3169         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3170         accumulator result if it needs sign extension
3171
3172 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3173
3174         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3175
3176 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3177
3178         * device/lib/gbz80/printf.c,
3179         * device/lib/z80/printf.c: removed define for NULL
3180
3181 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3182
3183         * as/xa51/xa_link.c,
3184         * device/examples/ds390/ow390/ad26.c,
3185         * device/examples/ds390/ow390/cnt1d.c,
3186         * device/examples/ds390/ow390/counter.c,
3187         * device/examples/ds390/ow390/ds2480.h,
3188         * device/examples/ds390/ow390/ds2480ut.c,
3189         * device/examples/ds390/ow390/findtype.c,
3190         * device/examples/ds390/ow390/gethumd.c,
3191         * device/examples/ds390/ow390/owllu.c,
3192         * device/examples/ds390/ow390/ownetu.c,
3193         * device/examples/ds390/ow390/swt12.c,
3194         * device/examples/ds390/ow390/swtloop.c,
3195         * device/examples/ds390/ow390/temp.c,
3196         * device/examples/ds390/ow390/temp10.c,
3197         * device/examples/ds390/ow390/thermo21.c,
3198         * device/examples/ds390/ow390/tinilnk.c,
3199         * device/examples/ds390/ow390/tstfind.c,
3200         * device/examples/serialcomm/windows/serial.cpp,
3201         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3202         * device/include/reg51.h: fixed line endings for cvs
3203
3204 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3205
3206         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3207         packRegsForAccUse, packRegisters): new accumulator register
3208         packing algorithm
3209         * support/regression/ports/hc08/support.c (_putchar): suppress
3210         warning of unused variable
3211         * src/SDCCicode.c: added SWAP entry to codeTable
3212
3213 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3214
3215         * device/lib/sprintf.c: forgot to add this file before previous commit
3216
3217 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3218
3219         * src/pic16/gen.c (genPackBits): added operand right in function
3220         parameters, load result directly if p_type is POINTER (that is
3221         called by genNearPointerSet)
3222         * (genUnPackBits): added operand left in function parameters,
3223         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3224         FSR0 if accessing bitfields,
3225
3226 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3227
3228         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3229           _print_format; updated printf, sprintf, vsprintf
3230         * device/include/asm/default/features.h: corrected comment/define
3231         * device/lib/Makefile.in: added sprintf.c
3232         * device/lib/libsdcc.lib: added sprintf module
3233         * device/lib/printf_large.c,
3234         * device/lib/vprintf.c,
3235         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3236           into these 3 files
3237         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3238         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3239         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3240           hc08 test
3241         * support/regression/tests/zeropad.c: define idata as data for hc08
3242
3243 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3244
3245         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3246         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3247         labels are referenced at least once (even if a reference is not found)
3248         * src/hc08/gen.c (emitcode): set isComment flag for comments
3249         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3250         loads), rules 6a..6b (optimize jumps to return)
3251
3252 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3253
3254         * device/lib/acosf.c (acosf),
3255         * device/lib/asinf.c (asinf),
3256         * device/lib/atanf.c (atanf),
3257         * device/lib/ceilf.c (ceilf),
3258         * device/lib/cosf.c (cosf),
3259         * device/lib/coshf.c (coshf),
3260         * device/lib/cotf.c (cotf),
3261         * device/lib/fabsf.c (fabsf),
3262         * device/lib/floorf.c (floorf),
3263         * device/lib/log10f.c (log10f),
3264         * device/lib/logf.c (logf),
3265         * device/lib/sinf.c (sinf),
3266         * device/lib/sinhf.c (sinhf),
3267         * device/lib/sqrtf.c (sqrtf),
3268         * device/lib/tanf.c (tanf),
3269         * device/lib/tanhf.c (tanhf),
3270         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3271         replaced all instances of "reentrant" in the library functions
3272         defined in math.h with this macro.
3273         * support/regression/tests/float_trans.c: reenabled test for hc08
3274
3275 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3276
3277         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3278         erroneously deleted
3279
3280 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3281
3282         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3283         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3284         multi-byte volatile operands are used
3285         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3286         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3287         initialization to area GSINIT0 so that it would always precede
3288         any static initializers in GSINIT
3289         * support/regression/tests/zeropad.c: fixed idata define for hc08
3290         * support/regression/tests/bug-927659.c,
3291         * support/regression/tests/float_trans.c: disabled tests for hc08
3292         pending missing library routines
3293         * .version: increased version number to 2.4.4 - hc08 port now passes
3294         regression tests
3295
3296
3297 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3298
3299         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3300         * Makefile.common.in,
3301         * as/Makefile,
3302         * as/hc08/Makefile.in,
3303         * as/mcs51/Makefile.in,
3304         * as/z80/Makefile.in,
3305         * debugger/mcs51/Makefile.in,
3306         * device/include/Makefile.in,
3307         * device/lib/Makefile.in,
3308         * doc/Makefile,
3309         * link/Makefile,
3310         * link/z80/Makefile.in,
3311         * packihx/Makefile.in,
3312         * sim/ucsim/main_in.mk,
3313         * sim/ucsim/avr.src/Makefile.in,
3314         * sim/ucsim/doc/Makefile.in,
3315         * sim/ucsim/gui.src/serio.src/Makefile.in,
3316         * sim/ucsim/hc08.src/Makefile.in,
3317         * sim/ucsim/s51.src/Makefile.in,
3318         * sim/ucsim/xa.src/Makefile.in,
3319         * sim/ucsim/z80.src/Makefile.in,
3320         * src/Makefile.in,
3321         * support/cpp2/Makefile.in,
3322         * support/librarian/Makefile,
3323         * support/makebin/Makefile: added DESTDIR to the install path proposed
3324         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3325         * doc/sdccman.lyx: added DESTDIR documentation
3326
3327 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3328
3329         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3330         instruction for interrupt handlers, use fast returns when returning
3331         from high priority interrupts
3332
3333 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3334
3335         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3336         code generation
3337         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3338         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3339         bugs, ported much of Bernhard's code from mcs51
3340         * src/mcs51/gen.c (genSend),
3341         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3342         than one when calling a reentrant function
3343         * device/lib/_mullong.c: defined an alternate struct layout for big
3344         endian ports (hc08)
3345
3346 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3347
3348         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3349         test
3350
3351 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3352
3353         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3354         are sane and complete before asking the port its prefered parameter
3355         passing method (fixes bug #1017633)
3356         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3357         and _ret3
3358
3359 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3360
3361         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3362         problem in bitfields >= 8 bits.
3363
3364 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3365
3366         * src/SDCCsymt.c: undid changes that were not meant to be committed
3367
3368 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3369
3370         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3371
3372 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3373
3374         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3375           copied and wrong bit got inverted
3376
3377 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3380         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3381         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3382         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3383         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3384         assignments to bitfields at known addresses
3385         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3386         reads from bitfields at known addresses
3387         * src/hc08/ralloc.c (packRegisters),
3388         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3389         genhc08Code): optimize pointer get values used as conditionals
3390         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3391         and branch
3392
3393 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3394
3395         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3396         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3397         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3398         as conditionals
3399
3400 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3401
3402         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3403
3404 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3407         related problems
3408
3409 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3410
3411         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3412
3413 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3414
3415         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3416         mcs51 port
3417
3418 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3419
3420         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3421
3422 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3423
3424         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3425         cases use more compact code.
3426
3427 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3428
3429         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3430
3431 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3432
3433         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3434
3435 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3436
3437         * src/SDCCsymt.h,
3438         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3439         parameter of changePointer() from symbol* to sym_link*
3440         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3441         * src/SDCCsymt.c (compareType): void* type is castable to other
3442         pointers, but not necesarily an exact match.
3443         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3444         is no longer blindly treated as an exact match.
3445         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3446
3447 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3448
3449         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3450
3451 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3452
3453         * src/pic/gen.c,
3454         * src/pic/pcode.c,
3455         * src/pic/ralloc.h,
3456         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3457
3458 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3459
3460         * src/pic/device.c,
3461         * src/pic/device.h,
3462         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3463
3464 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3465
3466         * src/mcs51/gen.c (emitcode): fixed bug #992819
3467
3468 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3469
3470         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3471           there's no need to make it worse
3472
3473 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3474
3475         * src/mcs51/ralloc.c (deassignLR),
3476         * src/ds390/ralloc.c (deassignLR),
3477         * src/hc08/ralloc.c (deassignLR),
3478         * src/z80/ralloc.c (deassignLR),
3479         * src/pic/ralloc.c (deassignLR),
3480         * src/pic16/ralloc.c (deassignLR),
3481         * src/avr/ralloc.c (deassignLR),
3482         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3483         rlivePoint): fixed another part of bug #971834
3484
3485 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3486
3487         * src/z80/main.c: enabled "critical" keyword
3488         * src/z80/mappings.i,
3489         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3490         functions (fixes bug #979646)
3491         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3492
3493 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3494
3495         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3496           such as c:\mydir.
3497
3498 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3499
3500         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3501           doesn't disable too much optimizations
3502
3503 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3504
3505         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3506
3507 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3508
3509         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3510
3511 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3512
3513         * src/pic/gen.c tidied up tabs
3514         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3515         * src/pic/main.c tidied up tabs
3516         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3517         * src/pic/pcoderegs.c tidied up tabs
3518         * src/pic/ralloc.c tidied up tabs
3519
3520 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3521
3522         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3523         to S_FIXED for pic16 port and when symbol is not in level 0,
3524         allocate for S_REGISTER storage class and pic16 port, too,
3525         * src/pic16/device.h: prototype for checkSym,
3526         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3527         * (pic16_assignConfigWordValue): test the value and the mask to
3528         validate that the value is suitable for the configuration word,
3529         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3530         collect extern declared symbols, don't emit symbol twice, check
3531         first if symbol is in publics set first,
3532         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3533         * added command line '--fstack' which enables an experimental
3534         feature for stack access, too buggy to be used yet...
3535         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3536         * (pic16_allocDirReg): when register has storage class S_REGISTER
3537         allocate in pic16_dynAccessRegs,
3538         * device/include/pic16/pic18f????.h: modified configuration word
3539         naming convention, words started as CONFIG0H but should be CONFIG1H
3540
3541 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3542
3543         * device/include/mcs51reg.h: fixed bug 970993
3544
3545 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3546
3547         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3548         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3549         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3550         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3551         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3552         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3553           error/warning numbers,
3554           added function setWarningDisabled()
3555         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3556         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3557           _memcmp.c _memmove.c calloc.c realloc.c free.c
3558         * support/regression/tests/malloc.c: added tests for new functionality
3559         * support/regression/tests/zeropad.c: added tests for truncated initializers
3560           and initialized char arrays starting with '\x0'
3561         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3562
3563 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3564
3565         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3566
3567 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3568
3569         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3570         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3571         peephole 177.e. Thanks to anonymous
3572
3573 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3574
3575         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3576         function isn't used in the source but referenced as a
3577         variable initializer then declare it as extern in .asm file
3578
3579 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3580
3581         * .version: increased version number to 2.4.3
3582
3583         Adding version extension according to ChangeLog CVS revision
3584         * src/Makefile.in (target all): added dependency 'version.h'
3585         * (rule version.h): added rule to create version.h from ChangeLog,
3586         * (rule dep): added dependency version.h,
3587         * src/version.awk: AWK script to create version.h
3588         * src/SDCCdwarf2.c (dwWriteModule),
3589         * src/SDCCglue.c (initialComments),
3590         * src/SDCCmain.c (printVersionInfo): modified to write after
3591         version string the version extension number,
3592         * src/SDCCutil.c: included "version.h"
3593         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3594         number,
3595         * src/SDCCutil.h: added prototype for getBuildNumber
3596
3597         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3598         includeDirsSet, too,
3599         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3600         const char [] is found in function prototype...
3601
3602         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3603         moving to WREG with source is already in WREG,
3604         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3605         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3606         * (aopForSym): stack'ed symbols are partially supported, added
3607         if-clause to support symbols in FARSPACE,
3608         * (sameRegs): added test for AOP_ACC to see if registers are same,
3609         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3610         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3611         * (pic16_popRegFromString): will not allocate a new register if it
3612         doesn't find one by name, bug may have introduced...
3613         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3614         * (genIpush): revived to use pic16 port's stack,
3615         * (genAddrOf): added incomplete case for stack'ed operand,
3616         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3617         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3618         can handle multibyte operands,
3619         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3620         * (pic16initialComments): added message for MPLAB compatibility
3621         mode enabled,
3622         * src/pic16/main.h: prototype for pic16_mplab_comp,
3623         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3624         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3625         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3626         because of increased complexity of procedure,
3627         * (_process_pragma): stack pragma changed to format 'stack pos len',
3628         emit symbol '_stack_end' to conform with gplink,
3629         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3630         to search for register,
3631         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3632         PO_GPR_REGISTER,
3633         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3634         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3635         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3636         case for PO_GPR_REGISTER,
3637         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3638         dies, the new era is ahead !...
3639         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3640         pic16_dynInternalRegs,
3641         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3642         * (pic16_allocDirReg): minor optimizations and bug fixes,
3643         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3644
3645         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3646         load stack and frame pointer with address of 'stack_end' symbol
3647
3648 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3649
3650         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3651         without source code but only variable initializers
3652
3653 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3654
3655         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3656         external are not declared as extern to reduce overhead while linking
3657
3658 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3659
3660         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3661
3662 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3663
3664         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3665           Yee Keat for the patch
3666         * src/SDCCast.c (decorateType): fixed bug #979599
3667         * src/ds390/gen.h: removed local fReturnSizeDS390
3668         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3669         * src/ds390/gen.c (genAnd, genOr, genXor),
3670         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3671
3672 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3673
3674         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3675         add relFilesSet to $3, manipulate $2 to handle linking of object
3676         files without source files in command line,
3677         * device/include/pic16 (all headers): added ID location macros,
3678         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3679         entries for ID location bytes,
3680         * (pic16_assignIdByteValue): NEW,
3681         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3682         added field dumpcalltree to pic16_options_t,
3683         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3684         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3685         emitting rFalseIfx label after check_carry label,
3686         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3687         pic16_emitDIRegs), NEW
3688         * (pic16glue): dump .calltree file when option --calltree found,
3689         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3690         * (_pic16_genAssemblerPreamble): emit ID locations after
3691         configuration registers,
3692         * (pic16_linkCmd): modifications of the link command,
3693         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3694         * (pic16_pCodeInitRegisters): don't init stack registers,
3695         * (pic16_findPrevInstruction): fixed bug,
3696         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3697         bug with immediate registers,
3698         * (buildCallTree): traces stack push and pop,
3699         * (pct2): dump also stack usage for each function,
3700         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3701         * (pic16_allocDirReg): various modifications,
3702         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3703         fixed to 1,
3704
3705 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3706
3707         * src/pic16/pcode.c: removed buggy double colon
3708
3709 2004-07-01 Borut Razem <borut.razem AT siol.net>
3710
3711         * support/scripts/sdcc.nsi: added include/pic16 to setup
3712
3713 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3714
3715         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3716         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3717         target 'clean',
3718         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3719         specific command line arguments. Also added sample lkr script
3720         for placing a variable at a specific memory bank.
3721         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3722         at a specific memory bank,
3723         * (pic16_dump_isection): fixed bug which caused string literals to
3724         be omitted when dumping idata section,
3725         * (pic16_groupRegistersInSection): added code to handle registers
3726         in specific memory banks,
3727         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3728         public, all references are renamed too,
3729         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3730         AOP_DPTR2,
3731         * (pic16_storeForReturn): added case to handle when dest is WREG,
3732         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3733         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3734         pic16_rel_udata, check to see if that register is marked as being
3735         a member of a specific memory bank,
3736         * (pic16_printIvalCharPtr): added code to add string literals either
3737         to code or the idata sections,
3738         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3739         also accept the 'udata' pragma,
3740         * src/pic16/main.h: new structure types sectName and sectSym
3741         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3742         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3743         * (pic16_findPrevInstruction): fixed, it returned nothing,
3744         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3745         instruction combinations,
3746         * (pic16_FixRegisterBanking): heavily reorganised,
3747         * (pic16_AnalyzeBanking): if generating banksel directives is
3748         disabled, then don't call FixRegisterBanking at all,
3749         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3750         completely removed,
3751         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3752
3753 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3754
3755         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3756         Phuah Yee Keat <yk.phuah AT nestac.com>
3757
3758 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3759
3760         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3761         correctly the IVT even if it is relocated to some other location
3762
3763 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3764
3765         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3766         * device/include/pic16/pic18f2220.h: NEW,
3767         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3768         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3769         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3770         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3771         nodefaultlibs, ivt_loc is the location of the interrupt vector
3772         table, and nodefaultlibs signs that default libraries should not be
3773         linked in link stage,
3774         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3775         according to --ivt-loc argument,
3776         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3777         when pragma stack is found,
3778
3779 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3780
3781         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3782         256 (range check), 257 (do while), 258.a-f (bit banging
3783         f.e. on 3-wire SPI bus)
3784
3785 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3786
3787         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3788         variables used exclusively within a loop
3789
3790 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3791
3792         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3793
3794 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3795
3796         * src/SDCClrange.c (computeClash): fixed bug #971834
3797
3798 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3799
3800         * src/mcs51/gen.c (genCmp): fixed bug #975903
3801         * src/hc08/gen.c (operandsEqu),
3802         * src/ds390/gen.c (operandsEqu),
3803         * src/z80/gen.c (operandsEqu),
3804         * src/pic/gen.c (operandsEqu),
3805         * src/pic16/gen.c (operandsEqu),
3806         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3807         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3808
3809 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3810
3811         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3812
3813 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3814
3815         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3816         default case in switch statement,
3817         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3818         to eliminate problem with initialisation of pointers, but problem
3819         still exists,
3820         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3821         * (emitStaticSegment): removed various lines emitting debug info,
3822         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3823         added processor registers for utilizing EEPROM,
3824         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3825         configurable and set 8
3826
3827 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3828
3829         * .version: increased version number to 2.4.2,
3830
3831         Cumulative patch for pic16 port
3832         * src/pic16/device.c: changed scheme to dump initial values for
3833         variables in idata segment, all print_idata* functions were removed,
3834         now the pic16_printIval* will be called,
3835         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3836         * _pic16_printPointerType, pic16_printPointerType,
3837         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3838         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3839         NEW, similar to the respective functions in SDCCglue.c,
3840         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3841         way, emitting hex bytes,
3842         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3843
3844 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3845
3846         * src/avr/ralloc.c (serialRegAssign),
3847         * src/xa51/ralloc.c (serialRegAssign),
3848         * src/pic/ralloc.c (serialRegAssign),
3849         * src/pic16/ralloc.c (serialRegAssign),
3850         * src/hc08/ralloc.c (serialRegAssign),
3851         * src/z80/ralloc.c (serialRegAssign),
3852         * src/ds390/ralloc.c (serialRegAssign),
3853         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3854
3855 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3856
3857         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3858         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3859
3860 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3861
3862         Cumulative patch for pic16 port:
3863         * src/pic16/device.h (typedef PIC16_device) modified fields for
3864         defining microcontrollers,
3865         * src/pic16/device.c: added new info for all devices in Pics16 array,
3866         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3867         to be optimised out by the pCode optimiser,
3868         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3869         specially, bug reported by G.M. Gallant,
3870         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3871         as force'd so that cannot be optimised out by pCode optimiser,
3872         * src/pic16/pcode.c,
3873         * src/pic16/pcodepeeph.c,
3874         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3875         they are disabled by default, but can be enabled explicit with
3876         command argument --denable-peeps, for testing,
3877         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3878         --pomit-ivt in COMPILE_FLAGS
3879
3880 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3881
3882         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3883           compilation on MSVC
3884
3885 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3886
3887         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3888
3889 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3890
3891         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3892         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3893
3894 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3895
3896         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3897         would only assign 0x300001 register.
3898
3899 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3900
3901         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3902         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3903
3904 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3905
3906         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3907         for ds80c400
3908         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3909         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3910         added peephole 254 (left shift), 255 (jump table)
3911
3912 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3913
3914         * device/lib/Makefile.in: removed comment line with model-pic16,
3915         * (target port-specific-objects-pic16): the libraries and objects
3916         are copied to the build directory form the device/lib/pic16/bin
3917         directory
3918
3919         Cumulative patch concerning pic16 port:
3920         * library directory has been re-organized,
3921         * added support for PIC18F1220,
3922         * added headers and library sources for chips 18f1220,18f6520,
3923         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3924
3925         * configuration registers setting has changed, now each supported
3926         device has a complete description of the registers it uses,
3927         * all initialisations are moved to idata sections, these section
3928         can be absolute or relocatable,
3929         * fixed initialisation of codespace variables,
3930         * fixed warning about PCLATU and gpsim,
3931         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3932         * (genAssign): use table reads when assigning from variables in codespace,
3933         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3934         char/int variables placed in codespace,
3935         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3936         registers set in .asm file, no need for --pomit-config-words anymore,
3937         * (pic16glue): some 8051 legacy segments are commented out
3938         (to be removed completely),
3939         * added support for alternative assembler and linker with --asm=
3940         and --link= command line arguments,
3941         * peepholes are disabled automatically in the port, no need to
3942         specify on command line,
3943         * port supports natively char/int/long multiplication, but converts
3944         all divisions to support functions,
3945         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3946         to the file set in variable $2,
3947         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3948         strings in ASCII format and not in hex,
3949         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3950         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3951         allocate proper register if iCodes aren't temporary,
3952
3953 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3954
3955         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3956
3957 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3958
3959         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3960         is commented out
3961
3962 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3963
3964         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3965         computed address is reused
3966         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3967         multi-byte bitfields
3968
3969 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3970
3971         * src/z80/gen.c: (genArrayInit): must check for pointers too
3972
3973 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3974
3975         * support/regression/tests/zeropad.c: never meant to commit the
3976           nestedstruct test: removed, added check for GCC version
3977
3978 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3979
3980         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3981         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3982         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3983           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3984           bugs 928906 and 954082 half-empty initializers
3985         * src/SDCCsymt.h,
3986         * src/SDCCsymt.c (getAllocSize): added for above fix
3987         * src/z80/gen.c (genArrayInit): fixed bug 741044
3988         * support/regression/tests/zeropad.c: added tests
3989
3990 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3991
3992         * src/pic16/device.c (pic16_dump_section): corrected bug which
3993         caused some symbols of the libraries to be misplaced
3994
3995 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3996
3997         * src/pic16/glue.c,
3998         * src/pic16/ralloc.h,
3999         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4000         to fix conflict with pic port
4001
4002 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4003
4004         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4005         externs configuration variables,
4006         * src/pic16/ralloc.h,
4007         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4008         prototype in header, commented out some debug messages
4009
4010 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4011
4012         * src/pic16/glue.c,
4013         * src/pic16/main.c,
4014         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4015         for gpasm COFF object generation. Thanks to D. Hawkins for
4016         his patch info
4017
4018 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4019
4020         * src/ds390/main.c,
4021         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4022         Brock for spotting this)
4023         * src/ds390/gen.c (genEndFunction),
4024         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4025         interrupt handler and critical. Disable push/pop optimizations when
4026         peephole optimizations disabled.
4027
4028 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4029
4030         Updated pic16 library sources and headers.
4031         * device/lib/pic16/pic18f*/ ,
4032         * device/include/pic16/*.h: modified to handle structured SFR
4033         definitions
4034
4035 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4036
4037         * src/port.h (PORT structure): added hook initPaths, now each
4038         port can declare its own default search paths,
4039         which can been seen with the --print-search-dirs option,
4040         see pic16 port for example,
4041         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4042         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4043         * (doPrintSearchDirs): NEW, replaces in a central manner the
4044         printing of search dirs which was split in set*Paths functions,
4045         * (main): added call to port->initPaths and doPrintSearchDirs,
4046         * src/avr/main.c,
4047         * src/ds390/main.c,
4048         * src/hc08/main.c,
4049         * src/izt/i186.c,
4050         * src/izt/tlcs900h.c,
4051         * src/mcs51/main.c,
4052         * src/pic/main.c,
4053         * src/pic16/main.c: modified port structures to reflect addition of
4054         initPaths hook,
4055
4056         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4057         * (pic16_dump_section): for registers in same address reserve memory once,
4058         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4059         to no_banksel,
4060         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4061         result is greater in size than right or left,
4062         * (pic16_genUMult8X8_8): there are some cases where the result can
4063         be 16 bits size, so handle these,
4064         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4065         * (pic16_outBitC): modified to emit pcodes,
4066         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4067         or not,
4068         * (genDivOneByte): implemented algorithm to divide 8-bits,
4069         * (genCmp): uncommented goto, but issues still exist,
4070         * (genAnd): fixed a bug with variables >8bits,
4071         * (genPackBits): optimization added that uses BCF/BSF to change a
4072         single bit,
4073         * (genAssign): fixed bug when assigning floating point literals,
4074         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4075         __sdcc_gsinit_startup label,
4076         * src/pic16/main.c (_pic16_init): removed search directory
4077         initialisations,
4078         * (_pic16_initPaths): NEW, used to initialise search directories,
4079         * (_hasNativeMulFor): support functions for all except char/int
4080         multiplication, and char division,
4081         * (PIC16_port struct): modified entry for native mul support,
4082         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4083         no_banksel option,
4084         * (buildCallTree): call to register_usage is ifdef'ed out,
4085
4086 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4087
4088         * device/include/string.h: applied Stas Sergeev's patch to make this
4089         header file compatible with the preprocessor -Wundef option
4090         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4091         failure (fixes bug #941458)
4092
4093 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4094
4095         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4096         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4097         that the variable, not the function, should be static
4098         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4099         to be consistent with non-literal case
4100
4101 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4102
4103         * src/SDCCast.c (isConformingBody): fixed bug #949967
4104         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4105         convilong): fixed bug #952086
4106
4107 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4108
4109         * src/SDCCmem.c (allocVariables): fixed bug #955321
4110
4111 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4112
4113         * src/hc08/main.c (_hc08_genAssemblerEnd),
4114         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4115         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4116         completely eliminated the use of a temporary file
4117         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4118         when more than one file linked
4119         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4120
4121 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4122
4123         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4124         which fixes bug #543481
4125         * support/regression/tests/bug-751703.c: fixed comments left from a
4126         cut and paste error
4127         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4128         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4129         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4130         scopes
4131         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4132         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4133         are now changed to underscores in moduleName
4134
4135 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4136
4137         * as/mcs51/lkmem.c: better fix for bug #954173
4138
4139 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4140         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4141
4142         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4143         * device/include/c8051f000.h,
4144         * device/include/c8051f120.h,
4145         * device/include/c8051f300.h,
4146         * device/include/c8051f310.h,
4147         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4148         PWM16) and detab'ed
4149
4150 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4151
4152         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4153         and mailing lists, doc'ed --no-peep-comments, removed reference
4154         to knoppix (newest version has no LyX/LaTeX), other minor changes
4155         * src/SDCCglue.c (glue): save 2 bytes stack space with
4156         option --main-return. The ljmp could probably be avoided too
4157
4158 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4159
4160         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4161
4162 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4163
4164         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4165         * src/SDCCopt.c (isLocalWithoutDef),
4166         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4167         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4168         (credit to Maarten Brock for patch #949363, on which this is based)
4169         * support/regression/tests/bug-751703.c: some test cases of extern used
4170         within inner scopes.
4171
4172 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4173
4174         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4175         SPEC_STRUCT
4176         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4177         struct definitions
4178         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4179         dwWriteLabel): fix to create valid debugger symbols even when
4180         the module name has non-alphanumeric symbols in it
4181         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4182         when a variable's allocation has been optimized away
4183
4184
4185 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4186
4187         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4188         * src/hc08/main.c,
4189         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4190         * src/mcs51/main.c,
4191         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4192         * src/ds390/main.c,
4193         * src/z80/gen.c (z80_emitDebuggerSymbol),
4194         * src/z80/main.c,
4195         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4196         * src/pic/main.c,
4197         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4198         * src/pic16/main.c,
4199         * src/avr/gen.c (avr_emitDebuggerSymbol),
4200         * src/avr/main.c,
4201         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4202         * src/xa51/main.c,
4203         * src/SDCCdebug.c (emitDebuggerSymbol),
4204         * src/SDCCdebug.h,
4205         * src/port.h: added a debugger struct to the port struct. Added a
4206         callback for defining debugger symbols
4207
4208         * src/SDCCast.c (createLabel),
4209         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4210         with isitmp = 1
4211         * src/SDCCicode.h,
4212         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4213         iCode back to the ast for the function
4214
4215         * src/hc08/ralloc.c (hc08_assignRegisters),
4216         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4217         unneeded fields from the regs struct.
4218         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4219         pushReg() & pullReg() functions instead of emitcode()
4220
4221         * src/hc08/gen.c (genLabel, genhc08Code),
4222         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4223
4224         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4225         debugger hooks
4226
4227         * src/hc08/gen.c (genEndFunction, genhc08Code),
4228         * src/hc08/gen.h,
4229         * src/mcs51/gen.c (genEndFunction, gen51Code),
4230         * src/mcs51/gen.h,
4231         * src/ds390/gen.c (genEndFunction, gen390Code),
4232         * src/ds390/gen.h,
4233         * src/z80/gen.c (genEndFunction, genZ80Code),
4234         * src/z80/gen.h,
4235         * src/z80/z80.h,
4236         * src/pic/gen.c (genEndFunction, genpic14Code),
4237         * src/pic/gen.h,
4238         * src/pic16/gen.c (genEndFunction, genpic16Code),
4239         * src/pic16/gen.h,
4240         * src/avr/gen.c (genEndFunction, genAVRCode),
4241         * src/avr/gen.h,
4242         * src/xa51/gen.c (genEndFunction, genXA51Code),
4243         * src/xa51/gen.h,
4244         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4245         specific code to cdbFile.c and out of the backend code generators
4246
4247         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4248         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4249         starting address is now 0
4250
4251         * as/hc08/asm.h,
4252         * as/hc08/m08pst.c,
4253         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4254         assembler directive for DWARF support
4255         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4256
4257         * src/src.dsp,
4258         * src/Makefile.in,
4259         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4260
4261 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4262
4263         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4264         and inappropriate peephole optimization in jump tables
4265
4266 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4267
4268         * as/hc08/m08pst.c,
4269         * src/SDCCglue.c: sdccopt works for the hc08 port now
4270
4271 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4272
4273         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4274
4275 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4276
4277         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4278
4279 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4280
4281         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4282         rules
4283         * src/SDCCmain.c,
4284         * src/SDCCglobl.h,
4285         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4286         comments from the peephole optimizer replacement rules
4287         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4288         symbols
4289         * src/SDCCcse.c (updateSpillLocation),
4290         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4291         equivalents
4292         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4293         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4294         objects far pointers
4295
4296 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/SDCCsymt.h: a missing part of my last change
4299         * src/pic/ralloc.c (regTypeNum),
4300         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4301
4302 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4303
4304         * src/SDCCicode.h,
4305         * src/SDCCicode.c (aggrToPtrDclType),
4306         * src/SDCCptropt.h,
4307         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4308         ptrPseudoSymConvert),
4309         * src/pic/ralloc.c (regTypeNum),
4310         * src/pic16/ralloc.c (regTypeNum),
4311         * src/hc08/ralloc.c (regTypeNum),
4312         * src/ds390/ralloc.c (regTypeNum),
4313         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4314         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4315
4316 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * link/z80/lkmain.c (afile),
4319         * as/hc08/lkmain.c (afile),
4320         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4321         prevent a pointer problem when a filename has no directory and
4322         no extension specified.
4323
4324 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4325
4326         * link/z80/lkmain.c (afile): allow periods in directory names
4327         * link/z80/lkmain.c (afile),
4328         * as/mcs51/lkmain.c (afile),
4329         * as/hc08/lkmain.c (afile): allow linker script file to have an
4330         extension other than ".lnk"
4331         * link/z80/lklex.c (getfid),
4332         * link/z80/lkmain.c (parse),
4333         * as/mcs51/lklex.c (getfid),
4334         * as/mcs51/lkmain.c (parse),
4335         * as/hc08/lklex.c (getfid),
4336         * as/hc08/lkmain.c (parse): Support comments in the linker script
4337         file on lines by themselves and after filenames
4338
4339 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4340
4341         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4342
4343 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4344
4345         * src/z80/peeph-z80.def: removed some peephole rules that don't
4346         work with multibyte arithmetic (fixed bug #937126)
4347         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4348         to registers and not global variables
4349         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4350         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4351         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4352         checking for assignments not internally generated (fixed bug #931895)
4353         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4354         structure member (fixed bug #930072)
4355
4356 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4357
4358         * src/SDCCmain.c (linkEdit),
4359         * src/hc08/main.c (_hc08_parseOptions),
4360         * as/hc08/Makefile.in,
4361         * as/hc08/aslink.h,
4362         * as/hc08/asm.h,
4363         * as/hc08/m08pst.c,
4364         * as/hc08/lkrloc.c (relr, rele),
4365         * as/hc08/lkarea.c (lnkarea)
4366         * as/hc08/lkmain.c (afile, parse),
4367         * as/hc08/lkelf.c: support for ELF output
4368         * as/hc08/lks19.c (s19),
4369         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4370
4371 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4372
4373         * as/mcs51/lkihx.c: Fixed bug #899105.
4374
4375 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4376
4377         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4378         .dsp files from Unix to DOS.
4379
4380 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4381
4382         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4383         function pointers; we have been compliant for several months now.
4384         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4385         change that was accidently commented out
4386         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4387         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4388         bug #922319
4389
4390 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4391
4392         * src/hc08/gen.c: output of all of the internal debugging information
4393         is now controlled by the D() macro; it is disabled by default
4394
4395 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4396
4397         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4398         harder to keep the same registers during a CAST iCode
4399         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4400         long via int can be done in a single cast, if the signedness is
4401         correct.
4402         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4403         putchar() in tinibios.c in ds390's library
4404
4405 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4406
4407         * src/SDCCast.c (decorateType): fixed bug #898889,
4408         cast result of a literal complement too
4409         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4410         fixed check for bitfields
4411
4412 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4413
4414         * src/SDCCicode.c (geniCodeLogic): made it static,
4415         (geniCodeLogicAndOr): added in order to fix bug #905492,
4416         (ast2iCode): fixed bug #905492
4417         * support/regression/tests/bug-905492.c: added
4418         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4419         (processParms): fixed bug #927659: don't copy parms, this will clear
4420         decorated flag
4421         * support/regression/tests/bug-927659.c: added
4422
4423 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4424
4425         * src/SDCCast.c (addCast): don't cast float to char
4426         * device/lib/libsdcc.lib: added _memmove
4427
4428 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4429
4430         * device/lib/large/Makefile: fixed parallel execution by
4431         replacing `make` by `$(MAKE)`
4432
4433 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4434
4435         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4436         offsets (fixes bug #923936)
4437
4438 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4439
4440         * device/lib/small/Makefile: fixed parallel execution by
4441         replacing `make` by `$(MAKE)`
4442
4443 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4444
4445         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4446
4447 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4448
4449         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4450         * src/regression/Makefile: Regression test was not running.
4451
4452 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4453
4454         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4455         complement if possible
4456         * src/SDCCval.c (valComplement),
4457         * src/SDCCicode.c (operandOperation): fixed complement of literal
4458         * support/regression/tests/onebyte.c (testComplement): added
4459
4460 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4461
4462         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4463         return an optimized tree; actually replace actParm with the new tree
4464         * src/SDCCast.h: added some parantheses to remove side effects
4465         * support/regression/tests/bug-920866.c
4466
4467 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4468         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4469         Bit operands were not being handled properly in the pic14 port.
4470         (now src/regression/add.c passes again).
4471
4472 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4473
4474         * src/SDCC.y (labeled_statement): case and default no longer require
4475         a following statement (RFE #893037)
4476
4477 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4478
4479         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4480         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4481         disabled (fixes bug #916294)
4482         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4483         "mov a,acc"; patch provided by Lenny Story
4484         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4485
4486 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4487
4488         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4489         functions
4490         * src/ds390/gen.c (genFunction, genEndFunction),
4491         * src/ds390/ralloc.c (ds390_assignRegisters),
4492         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4493         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4494         pushed if there are parameters passed on the stack. Also, a cleaner
4495         way to decide if r0/r1 should be pushed/popped. (Together they fix
4496         bug #918693)
4497
4498 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * doc/sdccman.lyx,
4501         * device/lib/mcs51/crtpagesfr.asm,
4502         * device/lib/mcs51/crtxinit.asm,
4503         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4504         to avoid confusion with Si Lab's SFRPAGE register.
4505
4506 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4507
4508         * src/SDCCglue.c (emitMaps): allow public sfr variables
4509         * src/SDCCglue.c (initialComments): include compiler build date
4510         with compiler version and put the timestamp of the generated
4511         assembly file on a serperate line to be less confusing.
4512         * src/port.h: added genInitStartup hook
4513         * src/avr/main.c,
4514         * src/ds390/main.c,
4515         * src/hc08/main.c,
4516         * src/pic/main.c,
4517         * src/pic16/main.c,
4518         * src/xa51/main.c,
4519         * src/z80/main.c: genInitStartup initialize as NULL (default to
4520         historical behaviour)
4521         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4522         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4523         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4524         library instead of hard coding it into the compiler.
4525         * support/regression/ports/mcs51-stack-auto/spec.mk,
4526         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4527         * device/lib/mcs51/Makefile,
4528         * device/lib/small/Makefile,
4529         * device/lib/large/Makefile,
4530         * device/lib/mcs51/crtpagesfr.asm,
4531         * device/lib/mcs51/crtstart.asm,
4532         * device/lib/mcs51/crtxclear.asm,
4533         * device/lib/mcs51/crtxinit.asm,
4534         * device/lib/mcs51/crtclear.asm,
4535         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4536         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4537         and into user configurable files.
4538         * device/lib/clean.mk: clean mcs51 directory too
4539         * support/regression/tests/longlit.c: added static to T1 declaration
4540         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4541         accesses in the initialization code
4542
4543 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4544
4545         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4546         OSCTRIMVAL as noted in bug #916008
4547
4548 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4549
4550         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4551         in loops with multiple exits (reported as incorrect registers
4552         used by Martin Helmling in Sdcc-user list)
4553
4554 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4555
4556         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4557         made ds390 register extensions look less like error messages
4558
4559 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4560
4561         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4562         reported by Adam Wozniak in Sdcc-user list
4563
4564 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4565
4566         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4567         arithmetic optimizations, added debug output
4568
4569 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4570
4571         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4572         * sdcc.spec: updated and split sdcc into 3 rpms
4573         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4574         needed for literals of LEFT_OP and '+'
4575         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4576         introduced RESULT_TYPE_NOPROM
4577         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4578         left shift
4579         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4580         limited promotion to int only for '*'
4581         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4582
4583 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4584
4585         * src/pic16/gen.c (genSkip),
4586         (genc16bit2lit), (gencjneshort): commented out
4587         (is_LitOp): new helper function, checks operand type
4588         (genCmpEq): rewritten
4589
4590 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4591
4592         * support/regression/tests/bug-908454.c: added
4593
4594 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4595
4596         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4597         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4598         (geniCodeCast): cosmetic, don't preserve bit storage class
4599         (geniCodeLeftShift): added promotion
4600         (geniCodeLogic): fixed regression
4601         * src/SDCCsymt.c (computeTypeOr): accept bits too
4602         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4603
4604 2004-03-07  Borut Razem <borut.razem AT siol.net>
4605
4606         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4607
4608 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4609
4610         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4611         version of pic16_genPackRegisters which does not check if ic is a
4612         CAST operator,
4613         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4614         function cause string1.c regression test fails
4615
4616 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4617
4618         * sim/ucsim/configure.in,
4619         * sim/ucsim/configure,
4620         * sim/ucsim/doc/Makefile.in: use docdir
4621         * src/SDCC.y: fixed sbit atrributes
4622         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4623         * src/SDCCast.c (decorateType): |^& need special promotion handling
4624         * src/SDCCast.h,
4625         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4626         * src/SDCCsymt.h (computeType),
4627         * src/SDCCicode.c: computeType() needs op
4628         * src/SDCCsymt.c (checkTypeSanity),
4629         * doc/sddman.lyx: "plain" bitfields are unsigned
4630         * src/SDCCsymt.c (computeTypeOr): added
4631         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4632         |^& ops
4633         * src/SDCCval.c (val*): computeType() needs op
4634         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4635         * support/regression/tests/onebyte.c: added tests for |^&
4636
4637 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4638
4639         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4640         for writing icode into asm output.
4641
4642 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4643
4644         * src/pic16/device.c: added some debug lines enabled
4645         with macro DEBUG_CHECK,
4646         * src/pic16/genarith.c: more debug in genPlus,
4647         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4648         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4649         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4650         * (aopForSym): onStack symbols are re-placed in data memspace,
4651         and onStack flag is cleared,
4652         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4653         copy temporary pcodeop,
4654         * (genPcall): added warning for not updating PCLATU,
4655         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4656         always true for pic16 port,
4657         * (genMultOneWord): NEW, supports integer multiplication,
4658         * (genMult): modified to call genMultOneWord,
4659         * (ifxForOp): added warning when return NULL,
4660         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4661         flag is set before call to operandFromSymbol for implicit
4662         added structures,
4663         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4664         options.intlong_rent are set by default,
4665         * (_hasNativeMulFor): modified to allow port generation of integer
4666         multiplication,
4667         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4668         set regtype to REG_SFR for all registers, restricting seting the
4669         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4670
4671 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4672
4673         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4674         more than 500 times in the regression tests
4675
4676 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4677
4678         * support/Util/SDCCerr.h,
4679         * support/Util/SDCCerr.c,
4680         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4681         enumerator_list),
4682         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4683         for symbol conflicts.
4684         * support/valdiags/tests/enum.c,
4685         * support/valdiags/tests/tentdecl.c,
4686         * support/valdiags/tests/struct.c: expect possible error messages
4687         referring to original symbol definitions.
4688         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4689         * src/SDCCsymt.h,
4690         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4691
4692 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4693
4694         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4695
4696 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4697
4698         * src/pic16/ralloc.c (newReg): fixed bug #908929
4699
4700 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4701
4702         * src/ds390/gen.c: added missing #include "main.h"
4703
4704 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4705
4706         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4707         checking if symbol is already in set,
4708         * src/pic16/device.h: prototype for checkAddSym,
4709         * src/pic16/gen.c: (_G): added entry interruptvector,
4710         * (assignResultValue): removed some commented out lines,
4711         * (genFunction): check for ISR via sym->type, absolute section for
4712         interrupt code is created via a new pBlock, the goto instruction is
4713         placed now correctly at the interrupt vector position, changed all
4714         references from ivec to _G.interruptvector,
4715         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4716         is the interrupt is a high priority one, same for return from ISR,
4717         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4718         externs to calls of checkAddSym,
4719         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4720         pic16_pcode_verbose flag is set,
4721         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4722         * src/pic16/pcoderegs.c: message about how many registers are saved
4723         will only be emitted if pic16_pcode_verbose flag is set,
4724
4725 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4726
4727         * src/ds390/ralloc.h,
4728         * src/ds390/ralloc.c (ds390_regWithIdx),
4729         * src/ds390/gen.c (emitcode),
4730         * src/ds390/main.h,
4731         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4732         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4733         ds390operandCompare, getRegsRead, getRegsWritten,
4734         initializeAsmLineNode): customized instruction size calculation for
4735         ds390, started basis for some register optimizations
4736         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4737         corresponding assembly output
4738         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4739         missing push/pop of r0/r1. Optimized push/pops
4740
4741 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4742
4743         * src/mcs51/main.c (instructionSize): fixed ACALL size
4744         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4745
4746 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4747
4748         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4749         the sorting of rlist with NULL elements
4750         * (print_idataType, print_idata): NEW to create idata sections
4751         * src/pic16/device.h: idataSymSet new variable
4752         * src/pic16/gen.c (genFunction): fixed some bugs in string
4753         comparing, improved the absolute section creation for ISRs,
4754         added FSR0L/FSR0H in registers that are saved in an ISR,
4755         * (genInline): fixed the processing of inline snippets,
4756         now they undergo no process by the peephole optimizer
4757         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4758         are placed in idataSymSet,
4759         * (pic16emitStaticSeg): extern symbols are added in externs,
4760         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4761         switching when aboslute variables are placed in access bank memory
4762         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4763         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4764         commented out with #if,
4765         * (pic16_packRegisters): reintroduce the check for CAST because some
4766         symbols are not correctly handled,
4767         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4768         pCodeInstruction instead of pCode,
4769         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4770         pCodeAsmDir definition,
4771         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4772         directive, then the argument directive is emitted without the leading
4773         tab, hack for inline labels which must be in the first column,
4774         * (compareLabel,pic16_findNextInstruction),
4775         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4776         * (insertBankSwitch): modified for the new pCodeAsmDir,
4777
4778 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4779         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4780
4781         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4782         instance,
4783         * (pushSide): commented out with #if,
4784         * (assignResultValue): fixed some typos in saving
4785         registers,
4786         * (genPcall): FIXED and sync'ed with genCall,
4787         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4788         * (genNearPointerGet): fixed to handle some more cases,
4789         implementation scheme via table reads,
4790         * (genConstPointerGet): modified to access code memory correct,
4791         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4792         and improved to handle some cases
4793         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4794         instead of "RETLW" for init data
4795         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4796         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4797         variables are placed in access bank memory (<0x80 and >=0xf80),
4798         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4799         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4800         TBLWT_POSTDEC,TBLWT_PREINC
4801         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4802         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4803         directives
4804         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4805         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4806         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4807         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4808
4809 2004-02-29  Borut Razem <borut.razem AT siol.net>
4810
4811         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4812         support/Util/findme.h, support/Util/system.h: enhance binary relative
4813         search for lib and include by using findProgramPath()
4814
4815 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4816
4817         * src/SDCCpeeph.h,
4818         * src/SDCCpeeph.c (pcDistance),
4819         * src/port.h,
4820         * src/mcs51/ralloc.h,
4821         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4822         * src/mcs51/main.h,
4823         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4824         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4825         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4826         size calculation port specific, started basis for some register
4827         optimizations
4828         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4829         missing push/pop of r0/r1. Optimized push/pops
4830         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4831         * device/lib/_modsint.c (_modsint),
4832         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4833         and stack version so regression tests pass
4834
4835 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4836
4837         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4838         * src/SDCCast.c (decorateType): catch another small optimization
4839         with '?' operator
4840         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4841         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4842         modified to finally use computeType() all over SDCC,
4843         see Feature Request #877103
4844         * src/SDCCval.h: cosmetic
4845         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4846         valCompare(); regression tested in muldiv.c
4847         * support/regression/tests/muldiv.c (testMod): mod sign follows
4848         dividend only
4849
4850 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4851
4852         * src/SDCCast.c (decorateType): fixed bug #902362
4853         * doc/INSTALL.txt: fixed install instructions for win32
4854
4855 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4856
4857         * device/include/Makefile.in (install): fixed by replacing spaces
4858         by tabs
4859         * doc/README.txt,
4860         * doc/INSTALL.txt: updated for release
4861         * doc/sdccman.lyx: added warning for --xstack being buggy
4862
4863 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4864
4865         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4866         to eliminate build warnings.
4867         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4868
4869 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4870            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4871
4872         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4873         removed -penable-stack, added comment for stack pragma, added
4874         warning for not initializing the stack/frame registers, removed
4875         comment at interrupts section
4876
4877         Stack is made permanent, there is no ability to disable stack usage.
4878         * src/pic16/device.h,
4879         * src/pic16/device.c: removed all references to USE_STACK macro,
4880         * src/pic16/device.c (pic16_dump_section): when no elements in
4881         rlist, free rlist before return,
4882         * (pic16_dump_int_registers): NEW, internal registers are a new set
4883         of general purpose registers reused by each function,
4884         * (checkAddReg): returns 1 if registers is added to set,
4885         * (pic16_groupRegistersInSection): when a registers is of type
4886         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4887         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4888         SRCASECMP macro is moved here from device.c
4889         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4890         PO_PCLATU, PO_PRODL, PO_PRODH,
4891         * (pic16_pCodeOpType, genMinus,
4892         changed compares to "a" register, with AOP_ACC,
4893         * (pic16_genPlus): fixed some bugs and indented properly,
4894         * (pic16_addSign): changed size to size+offset in the MOVWF
4895         instruction,
4896         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4897         multiply 8-bit operand by literal, result is 8-bit,
4898         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4899         multiply 2 8-bit operand, result is 8-bit,
4900         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4901         genUMult8X*_16,
4902         * src/pic16/gen.c: changed accUse to contain WREG only,
4903         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4904         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4905         true, do not use immediate addressing any more unless sym is a
4906         pointer in codespace,
4907         * (aopForRemat): do not use immediate addressing when symbol not in
4908         codespace and when symbol's address is requested,
4909         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4910         accUse size (= 1),
4911         * (aopGet): added case for AOP_ACC and don't return "accumulator
4912         bug" but WREG instead,
4913         * (popGetTempReg): pushes contents of temporary register in stack,
4914         * (popReleaseTempReg): pops contents of temporary register from
4915         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4916         * (pic16_popGet): separated case AOP_ACC to return register WREG
4917         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4918         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4919         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4920         the use of immediate pointers to certain cases only.
4921
4922         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4923         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4924         * (assignResultValue, genCall, genRet): modified to use the new
4925         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4926         genPcall is still broken,
4927         * (genFunction): added code to create 'A' type pBlocks when
4928         interrupt functions are generated, code not extensively tested yet,
4929         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4930         * (genEndFunction): modified so ISRs pop stored registers from stack,
4931         * (genMultOneByte): cleanup,
4932         * (AccRsh): added flag andmask, to and result with appropriate mask,
4933         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4934         * (genDataPointerGet): fixed and reenabled its use,
4935         * (genNearDataPointerGet): bugs fixed,
4936         * (genDataPointerSet): bugs fixed,
4937         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4938         pic16_DumpSymbol, pic16_DumpOp,
4939         * src/pic16/genutils.h: function prototypes for the above functions,
4940         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4941         pointers,
4942         * (pic16emitRegularMap): many many many improvements, but needs a
4943         major cleanup,
4944         * src/pic16/main.c: enable_stack in pic16_options is removed,
4945         * (_pic16_parseOptions): removed command line options -penable-stack,
4946         * (_process_pragma): emit stack symbol only when stack pragma is
4947         processed,
4948         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4949         redirected to FSR0L/FSR0H pair,
4950         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4951         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4952         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4953         for immediates,
4954         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4955         * (dumpPicOptype): NEW,
4956         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4957         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4958         with movff instruction,
4959         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4960         added pic16_int_regs, some packRegsFor* functions are commented out,
4961         because produce errors,
4962         * src/pic16/NOTES: minor modifications
4963
4964 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4965
4966         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4967         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4968         --pack-iram.
4969         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4970         * as/mcs51/lkaomf51.c: fixed bug #895763
4971
4972 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4973
4974         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4975
4976 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4977
4978         * doc/sdccman.lyx: added details about the HC08 storage classes and
4979         interrupts, fixed the register usage info for z80 & gbz80
4980
4981 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4982
4983         * doc/sdccman.lyx: added more pic16 port documentation
4984         * device/include/pic16/: added header pic18fregs.h
4985
4986 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4987
4988         * doc/sdccman.lyx: added Vangelis' contribution
4989
4990 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4991
4992         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4993         extend to the next CALL or PCALL, not just to the next CALL.
4994
4995 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4996
4997         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4998
4999 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5000
5001         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5002         bug #895752 and a better fix for bug #716790
5003
5004 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5005
5006         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5007
5008 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5009
5010         * doc/sdccman.lyx: minor changes, minor changed
5011
5012 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5013
5014         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5015         which can't handle SDCC_NEWONEBYTEOPS,
5016         (geniCodeMultiply): removed conversion from mult to shift for pic14
5017         and pic16
5018
5019 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5020
5021         * src/hc08/gen.h,
5022         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5023         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5024         thus fixing bug #895406
5025
5026 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5027
5028         * device/lib/_modsint.c,
5029         * device/lib/_modslong.c: sign follows divisor only
5030         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5031         signs or signedness can be ignored
5032         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5033         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5034         added optimization for IFX,
5035         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5036         arguments;
5037         reenabled optimization for IFX, which was removed on 2004-01-11
5038         * src/SDCCast.h: added return type IFX
5039         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5040         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5041         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5042         SDCC_OLDONEBYTEOPS selects the old behaviour
5043         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5044         changed again and commented promotion rule
5045         * src/SDCCval.c (valDiv): promotion no longer necessary
5046         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5047         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5048         rewritten
5049         * support/regression/tests/onebyte.c: added
5050
5051 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5052
5053         * gen.c (genInline): reverted to old code for assemnling inline
5054         code because of bug reported James Chadd
5055
5056 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5057
5058         * ralloc.h: missing declarations from previous patch,
5059         seems that patch for ralloc.h was never applied, fixed
5060
5061 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5062            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5063
5064         * pcode.c,
5065         * pcode.h,
5066         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5067         indirect addressing. Marked FSR0 as deprecated
5068         * gen.c (pointerCode): commented out, not needed now
5069         (pic16_popGet2p): new MOVFF helper function
5070         (genGenPointerGet),
5071         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5072         (shiftRLong): removed duplicate debugging info
5073
5074 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5075
5076         * src/ds390/gen.c (genNearPointerGet),
5077         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5078         optimization with bits, but not bitfields.
5079         * src/ds390/ralloc.c (packRegisters),
5080         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5081
5082 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5083
5084         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5085
5086 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5087
5088         * src/SDCCsymt.h,
5089         * src/SDCCicode.c (operandFromSymbol),
5090         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5091         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5092         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5093         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5094         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5095         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5096         bug #892038
5097         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5098         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5099         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5100         * src/SDCCsymt.c (newSymbol),
5101         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5102         enumerator_list),
5103         * src/SDCCval.h,
5104         * src/SDCCval.c (newiList): fixed bug #885705
5105
5106 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5107
5108         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5109         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5110
5111 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5112
5113         * device/include/c8051f120.h,
5114         * device/include/c8051f300.h,
5115         * device/include/c8051f310.h: added/updated header files for Silicon
5116         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5117         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5118         in new section Submitting patches
5119
5120 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5121
5122         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5123         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5124         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5125         genGenPointerSet),
5126         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5127         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5128         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5129         genGenPointerSet),
5130         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5131         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5132         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5133         genGenPointerSet),
5134         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5135         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5136         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5137         genGenPointerSet): fixed bug #892400
5138         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5139         to eliminate build warnings.
5140         * src/SDCCast.c (processParms),
5141         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5142         fixed bug 751859
5143         * support/valdiag/valdiag.py: added GCC to the list of defines active
5144         when compiling with gcc
5145
5146 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5147
5148         * support/Util/SDCCerr.h,
5149         * support/Util/SDCCerr.c,
5150         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5151         with an incomplete type (fixed bug #883734)
5152         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5153
5154 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5155
5156         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5157
5158 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5159
5160         * src/SDCCast.c (decorateType),
5161         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5162         function pointer implementation
5163         * support/regression/tests/funptrs.c: added tests to verify both forms
5164         of function pointers work correctly. Added tests to verify parameters
5165         are passed in the correct order.
5166
5167 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5168
5169         * device.c (regCompare): registers are sorted by ascending
5170         address and increasing size,
5171         * main.c (_pic16_finaliseOptions): removed the declaration
5172         of compiler macro MCU. Now a macro of the format pic18fxxxx
5173         will be defined from the command line
5174
5175 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5176             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5177
5178         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5179         PCOP_RLCF was overwritten!
5180         * gen.c (genSkip): commented out calls to pic16_emitcode,
5181         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5182         * (genlshTwo),
5183         * (genRRC): added debugging info,
5184         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5185         overwritten while shifting,
5186         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5187         overwritten while shifting,
5188         * (AccLsh),
5189         * (AccRsh),
5190         * (shiftLLeftOrResult),
5191         * (shiftRLeftOrResult),
5192         * (shiftRLong),
5193         * (shiftLLong): Implemented with pic16_emitpcode
5194         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5195         * (genLeftShift): Fixed bug, operand for shift by variable always
5196         was "and"ed with 0x0f,
5197         * (genLeftShiftLiteral),
5198         * (genrshTwo),
5199         * (genRightShiftLiteral): added debugging info,
5200         * (genrshFour): added comment,
5201         * (genRightShift): determined signedness from operand "left"
5202         instead of "result"
5203
5204 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5205
5206         * src/SDCCicode.c (geniCodeParms),
5207         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5208         function pointers, fixed function pointer bugs #861242 and #861896
5209
5210 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5211
5212         * device/include/c8051f000.h,
5213         * device/include/c8051f120.h,
5214         * device/include/c8051f300.h: added header files for Silicon
5215         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5216
5217 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5218
5219         * src/SDCCast.c (processParams): added new type flow and restructured
5220         (gatherAutoInit): added new type flow
5221         (addCast): cosmetic changes
5222         (getLeftResultType): added new type flow for array indices, patch
5223         provided by Stas, see FR #877103
5224         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5225         array index patch by Stas
5226         * src/SDCCast.h: added prototype getResultTypeFromType()
5227         * src/SDCCval.h,
5228         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5229         * src/pic/glue.c (pic14emitStaticSeg),
5230         * src/pic16/glue.c (pic16emitStaticSeg),
5231         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5232         for initialization of symbols
5233         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5234         * support/Util/SDCCerr.h:
5235         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5236         * .version: bumped version number to 2.3.8
5237         * device/include/Makefile.in (install),
5238         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5239         avoid warnings
5240
5241 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5242
5243         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5244         Slade Rich fixed an optimization bug
5245         * src/pic/pcodepeep.c,
5246         * src/pic/pcoderegs.c
5247         * doc/Makefile (install): added test for directory
5248
5249 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5250
5251         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5252         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5253         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5254         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5255         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5256         * as/mcs51/asexpr.c (term),
5257         * as/hc08/asexpr.c (term): fixed bug #887146
5258
5259 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * src/z80/gen.c (genMult): handle single byte result product
5262         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5263         DUMMY_READ_VOLATILE (fixed bug #886367)
5264
5265 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5266
5267         * support/regression/tests/libmullong.c: fixed logic, on little endian
5268         hosts we ended without a mullong_wrapper()
5269
5270 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5271
5272         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5273         virus/worm forged address usage.
5274
5275 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5276
5277         Fixed promotion, it should be done on AST level:
5278         * src/SDCCast.c (addCast): added promotion to int
5279         (decorateType): updated call to upCast()
5280         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5281         usualUnaryConversions()
5282
5283 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5284
5285         * support/regression/tests/literalop.c (mulWrapper): Added a
5286         wrapper to remove integer overflow warnings.
5287
5288         * support/regression/tests/float_trans.c: Made work on host.
5289
5290         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5291         location of sz80.
5292
5293         * support/regression/generate-cases.py (main): Changed from inline
5294         to a main method.
5295
5296         * doc/Makefile (install): Changed to depth first to get rid of
5297         missing directory install warning.
5298
5299         * as/Makefile (install-doc): Made work on Mac.
5300
5301 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5302
5303         * src/SDCCast.c: added an additional type flow in decorateType() of
5304         opposite direction, see feature request #860006; it's enabled at runtime
5305         by setting the environment variable SDCC_NEWTYPEFLOW
5306         * src/SDCCast.h: changed prototype of decorateType()
5307         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5308         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5309         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5310         see feature request #877103
5311         * src/SDCCval.c: updated call of decorateType()
5312         (valBitwise): fixed bug #882876
5313         (valMinus): added promotion
5314         (valLogicAndOr): result is unsigned
5315         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5316         * src/SDCCsymt.c (computeType),
5317         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5318         must not cause an unsigned operation
5319         * src/pic/glue (pic14emitRegularMap),
5320         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5321
5322 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5323
5324         * src/pic/pcode.c (PCodeID): commented out left over debug code
5325
5326 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5327
5328         * support/valdiag/tests/overflow.c: added shift tests
5329         * src/pic/device.c,
5330         * src/pic/gen.c,
5331         * src/pic/gen.h,
5332         * src/pic/glue.c,
5333         * src/pic/main.c,
5334         * src/pic/pcode.c,
5335         * src/pic/pcode.h,
5336         * src/pic/pcodepeep.c,
5337         * src/pic/pcoderegs.c,
5338         * src/pic/ralloc.c,
5339         * src/pic/ralloc.h: applied patch from Slade Rich;
5340         added support for multiple code pages and multiple RAM banks on the
5341         PIC 14 port. The ASM files now no longer simply assume all the
5342         code / RAM are in the same page / bank. This means the linker can
5343         safely allocate code/RAM of separate ASM files to different pages/banks.
5344         * doc/sdccman.lyx: added Slade's tips
5345         * src/mcs51/peeph.def: fixed bug #880768
5346
5347 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5350         * src/SDCCast.c (decorateType): fixed bug #880197
5351
5352 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5353
5354         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5355         getopt.h.
5356
5357         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5358         strtof is not part of C89 and isn't included with Mac OS X.
5359
5360 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5361
5362         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5363         shiftL2Left2Result): fixed bug #879326
5364         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5365         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5366         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5367         address fetch for clr instruction
5368         * device/lib/hc08/_mulint.c: created optimized assembly version
5369         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5370
5371 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5372
5373         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5374         proposed in FR #877103
5375
5376 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5377
5378         * src/SDCCval.c (cheapestVal): added missing checks
5379         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5380         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5381
5382 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5383
5384         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5385         equal operands
5386
5387 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5388
5389         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5390         loaded with the linker search paths (-L arguments) and the libraries
5391         to be linked with the current source (-l arguments). Changes
5392         currently will affect only the pic16 port.
5393         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5394         include path the port specific paths and port specific libraries,
5395         * gplink command now contains the $3 argument,
5396         * src/pic16/device.h,
5397         * src/pic16/device.c,: structure PIC_device is made public and
5398         renamed to PIC16_device, the same for variable Pics which is renamed
5399         to Pics16. Updated all references to them.
5400         * src/pic16/glue.c (pic16glue): corrected bug with code
5401         initialization which bypassed the variable initializations block.
5402
5403         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5404         COMPILE_FLAGS and added the --nostdinc option
5405
5406 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5407
5408         * device/include/mc68hc908jb8.h: Register defs for another member
5409         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5410
5411 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5412
5413         Documenting changes from previous commits.
5414         * configure.in (version 1.56),
5415         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5416         when generating output files to configure the pic16 library,
5417         but now I've commented it out, since gputils aren't installed in the
5418         SF compile farm, so library won't compile
5419
5420         * device/lib/Makefile.in (version 1.56): initially I've added in
5421         target 'all' the prerequestive 'model-pic16' so it compiled the
5422         pic16 library, but now I've commented it out for the same reasons
5423         above,
5424         * added targets 'model-pic16' and 'objects-pic16' to compile the
5425         library
5426         * added target 'port-specific-objects-pic16' to handle the
5427         generated libraries and copy them into the build/ directory
5428         * added target 'clean-intermediate-pic16' to clean intermediate
5429         files into pic16 directory
5430         * in target 'installdirs' added line to create directory pic16 in
5431         the installation path
5432
5433         * device/include/Makefile.in (version 1.11): in target 'install'
5434         added lines to copy all header files to installation path,
5435         * in target 'installdirs' added line create directory for pic16
5436         headers in the installation path
5437
5438 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5439
5440         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5441          a function call
5442
5443 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5444
5445         * configure,
5446         * device/lib/configure.in,
5447         * device/lib/configure: fixed for autoconf 2.57
5448
5449 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5450
5451         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5452         option so that it actually works. Made it specific to the z80, since
5453         the gbz80 doesn't have these kinds of I/O ports.
5454
5455 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5456
5457         * device/include/z180.h,
5458         * device/lib/_memcpy.c,
5459         * device/lib/_memmove.c,
5460         * device/lib/_mulint.c,
5461         * device/lib/ser_ir.c,
5462         * device/lib/ser_ir_cts_rts.c,
5463         * device/lib/_strcmp.c,
5464         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5465         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5466         portmode; added deprecation warning for bank= and protmode= forms.
5467         Also, guard against buffer overflow.
5468         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5469
5470 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5471
5472         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5473         changed interrupt vector table generation to only emit declared vectors.
5474         * device/include/Makefile.in: added missing backslash
5475         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5476
5477 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5478
5479         Mainly changes to support compilation of the device libraries
5480         * src/pic16/device.c: stack is allocated via symbol and not
5481         via literal number. The symbol is placed in the corresponding
5482         position of the data ram
5483         * (pic16_dump_section): relocatable and absolute uninitialized
5484         data are now emitted in sorted order to reduce section naming,
5485         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5486         weren't marked as being in the access bank,
5487
5488 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5489
5490         Added portion of GNU PIC Library under the directory
5491         device/include/pic16 and device/lib/pic16. These files
5492         contain the declarations of SFRs for the PIC18Fxx2 devices.
5493         The directory is initialized via configure from toplevel.
5494
5495 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5496
5497         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5498         the spilllocations to be compared correctly
5499
5500 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5501
5502         * src/SDCCast.c (decorateType): fixed bug introduced today
5503
5504 2004-01-12  Borut Razem <borut.razem AT siol.net>
5505
5506         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5507         doc/sdccman.lyx: upper case pragmas are deprecated
5508
5509 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5512         in simpler and even better code
5513
5514 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5515
5516         * src/SDCCicode.c (operandOperation): fixed bug #874819
5517         * src/SDCCast.c (decorateType): fixed
5518         char foo (unsigned long ul) { return ul > 0; }
5519
5520 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5521
5522         * doc/sdccman.lyx: Moved and added some sections, small changes
5523         all over. Telling LaTeX to be less strict with word spacing
5524         to better keep the right margin. Changed some notes about
5525         maintainance of the ports in section 3.2.1 - is it OK like this?
5526
5527 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5528
5529         SDCC source changes:
5530         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5531         convilong): modified to inform the pic16 port that builtin functions
5532         are external
5533
5534         PIC16 PORT specific changes:
5535         * src/pic16/device.c pic16_dump_equates() added,
5536         processor registers declared internally by the port are emitted in
5537         the translation as equates,
5538         * src/pic16/gen.c: inline code is passed unprocessed to the
5539         translation,
5540         * (pic16_popGetLit2): fnuction modified to take second operand as
5541         pCodeOp pointer and not as literal,
5542         * (popRegFromIdx): prefixed with pic16_,
5543         * (pic16_popCombine2): modified to receive already allocated pCode
5544         operands,
5545         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5546         * (genFunction): initializes local stack frame and pushes on stack
5547         all the registers used by this function,
5548         * (genEndFunction): restores all registers from stack and restores
5549         stack frame,
5550         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5551         improvements,
5552         * (pic16glue): changed the program startup sequence,
5553         * added new dbName code 'A' for functions placed in absolute section
5554         * src/pic16/main.c: added function attribute _naked,
5555         * added pragma 'code' to place a fnuction at an absolute address,
5556         * added command line arguments --debug-ralloc and --pcode-verbose,
5557         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5558         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5559         * (pic16_newpCodeOpLit2): modified to take the second operand as
5560         pCodeOp pointer,
5561         * (pic16_printpBlock): modified to emit each function in a separate
5562         section,
5563         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5564         UPPER for immediate operands,
5565         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5566         instruction,
5567         * src/pic16/peeph.def: all peepholes with movff are commented out,
5568         because there is a problem in the pcode peep optimizer,
5569         * src/pic16/ralloc.c: the register allocator can now reuse local
5570         function symbols for another function. This saves register usage.
5571         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5572
5573         Added file src/pic16/NOTES with information about program writing on
5574         the current port version.
5575
5576 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5577
5578         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5579         and peephole 252 (array access)
5580
5581 2004-01-09  Borut Razem <borut.razem AT siol.net>
5582
5583         * src/SDCCmain.c : fixed #872250: -l command line defined library
5584           files are scanned before standard library files
5585
5586 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/SDCCast.c (decorateType): fixed bug #874046
5589
5590 2004-01-09  Borut Razem <borut.razem AT siol.net>
5591
5592         * support/scripts/sdcc.nsi: remove previous installation
5593
5594 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5595
5596         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5597         bytes for last interrupt vector (mcs51)
5598         * sdcc.spec: fixed typo
5599
5600 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5601
5602         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5603         gen51Code): more efficient parameter receive for --model-large
5604         ("bug" #845294)
5605
5606 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5607
5608         * src/ds390/main.c,
5609         * src/z80/main.c: added missed needLinkerScript flags (more than
5610         one port structure defined in these file)
5611         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5612         bug #795325
5613
5614 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5615
5616         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5617         * src/port.h: added flag needLinkerScript in port->linker
5618         structure to inform whether to create a .lnk file or not,
5619         * src/avr/main.c,
5620         * src/ds390/main.c,
5621         * src/hc08/main.c,
5622         * src/mcs51/main.c,
5623         * src/pic/main.c,
5624         * src/pic16/main.c,
5625         * src/xa51/main.c,
5626         * src/z80/main.c: changed appropriately to configure
5627         needLinkerScript flag
5628         * src/pic/gen.c,
5629         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5630         * src/pic/glue.c: added variable udata_section_name to
5631         override default uninitialized data segment definition for
5632         devices only with SHAREBANK memory (reported from Erik Epetrich)
5633         * (pic14emitOverlay): modified to emit a commented overlay segment
5634         directive when no overlay data exist
5635         * (picglue): modified to emit uninitialized data segment
5636         according to udata_section_name
5637         * src/pic/main.c (_pic14_parseOptions): added command line
5638         options --udata-section-name=[name] to override default
5639         udata definition name
5640         * modified _linkCmd and _asmCmd to include compiler passed
5641         arguments via -W option
5642         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5643         object file from '.rel' to '.o' in port->linker structure,
5644         changed size of fptr from 2 to 3 in port structure
5645
5646 2004-01-07  Borut Razem <borut.razem AT siol.net>
5647
5648         * support/scripts/sdcc.nsi: update PATH
5649         * support/scripts/sdcc.ico: craeted
5650
5651 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5652
5653         * device/include/Makefile.in: fix install
5654         * doc/Makefile: fix install
5655
5656 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5657
5658         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5659         in bug #860505
5660         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5661         how the function variable allocation summary is displayed; also
5662         include information about variables allocated to the overlay
5663         segment
5664
5665 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5666
5667         * as/mcs51/lkmain.c: Help about -Y option
5668         * as/mcs51/lkarea.c: Fixed gcc warnings
5669
5670 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5671
5672         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5673         fixed warning
5674         * support/valdiag/tests/overflow.c: added
5675         * src/SDCCast.c (decorateType),
5676         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5677         LEFT_OP (left shift)
5678
5679 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5680
5681         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5682         (default behaviour).
5683
5684 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5685
5686         A python script to validate compiler diagnostic messages. It can be
5687         used to verify that sdcc complains about bad c source code and
5688         gives a good location of the error.
5689         * support/valdiag/Makefile,
5690         * support/valdiag/valdiag.py,
5691         * support/valdiag/tests/*
5692
5693 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5694
5695         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5696         * src/SDCCsymt.c (newEnumType),
5697         * src/SDCCsymt.h
5698         * support/Util/SDCCerr.c,
5699         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5700         enum related bugs.
5701         * support/regression/tests/enum.c: added test for enum values that
5702         require at least 2 bytes of storage.
5703
5704 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5705
5706         * src/common.h: added ifndef/define/endif macros
5707         around the header file.
5708         Bug reported from Jesus Calvino-Fraga
5709
5710 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5711
5712         * sdcc.spec: updated
5713         * device/include/Makefile.in: don't install CVS directories
5714         * device/lib/Makefile.in: added removal of CVS directories after install
5715         * doc/Makefile: fixed install, added local_icons
5716         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5717         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5718         * src/ds390/gen.c (genRightShift): fixed bug #870788
5719         * src/SDCCast.c (decorateType): fixed bug #870781
5720
5721 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5722
5723         PIC16 port related changes:
5724         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5725         added variable stackPos,
5726
5727         * gen.c: genCall, assignResultValue: added support for
5728         pushing/retrieving function parameters to/from stack,
5729         genFunction,genEndFunction: setup stack frame for the
5730         generated function,
5731         genAddrOf: will be changed according to bug 863624
5732
5733         * added files genutils.c and genutils.h which contain gen*
5734         debugged and optimised functions extracted from gen.c
5735
5736         * glue.c: added variable 'externs' which holds extern symbols,
5737         pic16emitRegularMap: is modified to properly handle relocatable
5738          symbols under the new scheme,
5739         pic16createInterruptVect: is modified
5740         pic16printPublics: is modified to emit 'global' assembler directives,
5741         added pic16_printExterns to print extern symbols,
5742         pic16glue: initializes stack/frame pointer in the beginning of
5743         the assembly output. Temporary hack, will be corrected later,
5744         because gplink yet does not support stack and SDCC does not
5745         yet support a type of crt0.o object to create the final binary.
5746
5747         * Removed many lines that contain 8051 legacy code.
5748         * The code is finally placed under a 'code' directive.
5749         * Added port specific options.
5750
5751         * _process_pragma: simplified since now we do not need *special*
5752         include file to define SFR registers. But a separate header
5753         will be needed. This will be developed later.
5754         * _pic16_parseOptions: added, parses port specific options:
5755         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5756         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5757         --preplace-udata-with=
5758
5759         * _pic16_setDefaultOptions: modified to initialize section names,
5760         but hack is temporarly out of order since it needs improvement.
5761         * _pic16_genAssemblerPreamble: configuration words are emitted by
5762         their address instead of their name. This part is incomplete and
5763         supports only the 18Fxx2 devices. Other devices will emit an error
5764         during assembly since they do not contain the same set of config
5765         registers
5766         * _pic16_genIVT: is modified,
5767
5768         * pcode.c: added definitions for some hardware registers that are needed
5769         for stack support
5770         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5771         All PCI entries are updated. Now LFSR is supported.
5772         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5773         * added pic16_newpCodeOpLit2 to support instructions with
5774         two literal arguments
5775         * pic16_pCode2str: corrected code that emits assembler instructions
5776         with two literal operands and those that have an access bit modifier
5777         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5778         this fixes a bug which caused some labels to be lost, when an
5779         assembler directive was added, i.e. banksel,
5780         * pic16_FixRegisterBanking: improved logic that causes the insertion
5781         of bank switching,
5782         * InlineFunction: functions that are called once, are not any more
5783         inlined. This can be a port option in the future,
5784
5785         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5786
5787         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5788         hold the corresponding uninitialized symbols,
5789         * pic16_allocProcessorRegister: registers have explicit marked the
5790         accessBank field,
5791         * pic16_allocInternalRegister: registers are explicit marked as
5792         not used,
5793         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5794         processing list, so bit registers were lost,
5795         *
5796
5797         * ralloc.h: added field 'accessBank' and original symbol operand
5798         in register definition,
5799         * removed the field isMapped from register definition,
5800
5801         ** Several functions have been removed from various sources:
5802         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5803         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5804         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5805         pic16_assignRelocatableRegisters
5806
5807         ** others have been introduced:
5808         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5809         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5810
5811 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5812
5813         * support/scripts/inc2h.pl: changed definition of BIT_AT
5814         to emit 'sbit at' instead of 'bit at'. This was a request.
5815
5816         PIC16 port related preliminary changes:
5817         * gen.c: prefixed function popRegFromString with
5818         pic16_ and all references to it corrected
5819         * pcode.c: all pic16_pc_* hardware registers prefixed
5820         with underscore (_),
5821         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5822         * ralloc.c: newReg(): when register is REG_SFR then
5823         set address to rIdx,
5824         pic16_allocProcessorRegister(): marks register wasUsed=0
5825         pic16_writeUsedRegs(): added a call to assign processor
5826         registers via pic16_assignFixedRegisters
5827
5828 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5829
5830         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5831         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5832         variables in unused register banks.  Also the SSEG is placed
5833         wherever there is enough space for it, and IDATA can be anywhere
5834         in internal RAM.  For now compile using -Wl-Y[stack_size].
5835         The mem file is different for this option as well, since it
5836         makes no sense of talking about DSEG lenght.
5837
5838 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5839
5840         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5841         in certain cases, e.g. when ROM assignment, patch provided
5842         from Albert den Haan.
5843
5844 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5845
5846         Many signedness and type propagation fixes:
5847         * src/SDCCicode.c: made geniCodeCast() static
5848         replaced SPEC_ by IS_ (cosmetic)
5849         (operandOperation): fixed div and mod operation
5850         (usualBinaryConversions): added support for promotion of char
5851         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5852         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5853         (geniCodeAdd): an array index will stay unsigned, even if promoted
5854         from char to int
5855         (geniCodeArray): ditto
5856         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5857         * src/SDCCsymt.c (computeType): added more support for char;
5858         promotion of char is selectable by promoteCharToInt, fixed signedness
5859         for all cases
5860         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5861         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5862         * src/SDCCval (val*): replaced signedness calculation by
5863         computeType()
5864         rearranged if-branches (cosmetic)
5865         (valShift): added warning W_SHIFT_CHANGED
5866         (valCompare): fixed problem with different types
5867         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5868         * support/regression/tests/literalop.c: added many cases
5869         * support/regression/tests/ast_constant_folding.c: changed finally to
5870         'unsigned int'
5871         * .version: new year, new version: 2.3.7
5872         * src/SDCCmain.c (main): applied patch #866468
5873         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5874         provided by Scott Bronson
5875         * doc/sdccman.lyx: updated documentation for sdcdb
5876         updated and added chapter tips
5877
5878 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCCsymt.h: missing from yesterday's commits
5881
5882 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCC.y (struct_or_union_specifier),
5885         * support/Util/SDCCerr.c,
5886         * support/Util/SDCCerr.h: verify that struct & union tags are used
5887         as declared.
5888
5889 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5890
5891         * src/SDCCglobl.h: missing from yesterday's commits
5892
5893 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5894
5895         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5896         sft_attributes, struct_declaration, parameter_declaration,
5897         type_name, start_block, declaration_list),
5898         * src/SDCC.lex (check_type): support redefinition of typedef names
5899
5900 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5901
5902         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5903         aligned xdata arrays. Erik helped me with the if clause.
5904
5905 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5906
5907         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5908         warning
5909
5910 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/SDCCast.h,
5913         * src/SDCCast.c (newAst_),
5914         * src/SDCCicode.h,
5915         * src/SDCCicode.c (ast2iCode, newiCode),
5916         * src/SDCCglobl.h,
5917         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5918         expr, statement, expression_statement, selection_statement,
5919         iteration_statement, expr_opt, jump_statement): foundation for tracking
5920         sequence points
5921         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5922         point code too)
5923
5924 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5925
5926         * support/Util/SDCCerr.c,
5927         * src/SDCCast.h,
5928         * src/SDCCast.c (createCase, createDefault, decorateType),
5929         * src/SDCClabel.c (labelUnreach),
5930         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5931         to error messages.
5932         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5933         (with thanks to Stas Sergeev)
5934         * device/include/time.h,
5935         * device/lib/time.c (CheckTime): suppress unreachable code warning
5936
5937 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5938
5939         * src/SDCCast.c (createIvalCharPtr),
5940         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5941         bug #753752)
5942         * support/regression/tests/nullstring.c: tests for these two bugs
5943
5944 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5945
5946         * support/Util/SDCCerr.h,
5947         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5948         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5949         about storage class and 'at' used inside struct or union
5950         * src/SDCCBBlock.c (iCodeFromeBBlock),
5951         * src/SDCCcse.c (ifxOptimize),
5952         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5953         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5954         printIval, emitStaticSeg, emitOverlay),
5955         * src/SDCClabel.c (deleteIfx),
5956         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5957         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5958         gatherAutoInit, processParms),
5959         * support/Util/SDCCerr.h,
5960         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5961         reporting for post-parse errors.
5962
5963 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5964
5965         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5966         implicit casts via union; they don't work on big endian systems
5967         (possible fix for bug #861138)
5968
5969 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5970
5971         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5972         * src/mcs51/main.c: fixed the fix for bug #737001
5973
5974 2003-12-15  Borut Razem <borut.razem AT siol.net>
5975
5976         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5977
5978 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5979
5980         * support/makebin/makebin.c: put output in binary mode
5981
5982 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5983
5984         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5985         xdata and data memory on startup. Set the environment variable
5986         SDCC_NOGENRAMCLEAR to disable this.
5987         * src/mcs51/peephole.def,
5988         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5989         (allows non-interrupt and interrupt code to safely compete for a resource
5990         without the non-interrupt code having to disable interrupts)
5991
5992 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5993
5994         * src/SDCCicode.c (geniCodeAdd),
5995         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5996         with valFromType if type might be a pointer and host is big endian).
5997         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5998         types, not just integer types.
5999         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6000         multiply defined with mismatching "at" address.
6001
6002 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6003
6004         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6005         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6006         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6007         with embedded nulls (fixed bug #753752)
6008
6009 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6010
6011         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6012         Apparently this did not see much testing (endless loop)
6013
6014 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6015
6016         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6017
6018 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6019
6020         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6021         gracefully handle NULL memmap pointers
6022
6023 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6024
6025         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6026         instead of deleting the iCode when an operand is volatile
6027         * src/z80/gen.c (genDummyRead),
6028         * src/mcs51/gen.c (genDummyRead),
6029         * src/ds390/gen.c (genDummyRead),
6030         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6031         not just IC_RIGHT
6032         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6033         * src/SDCC.y: fixed bug #850420
6034
6035 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6036
6037         Applied z80 i/o port patch from Peter Townson and fixed some operators
6038         to better handle operands in A register.
6039         * device/include/z180.h
6040         * src/SDCC.y
6041         * src/SDCCglue.c
6042         * src/z80/gen.c
6043         * src/z80/gen.h
6044         * src/z80/main.c
6045         * src/z80/peeph-z80.def
6046         * src/z80/peeph.def
6047         * src/z80/z80.h
6048
6049 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6052
6053 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6054
6055         * device/lib/hc08/_mullong.c: Removed extra #endif
6056
6057 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * sim/ucsim/hc08.src/inst.cc,
6060         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6061         carries from x to h
6062         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6063         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6064         * device/include/stdarg.h: fixed varargs for hc08
6065         * device/lib/Makefile.in,
6066         * device/lib/hc08/Makefile,
6067         * device/lib/hc08/_mulint.c,
6068         * device/lib/hc08/_mullong.c: fixed some endian problems
6069
6070 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6071
6072         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6073         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6074         * device/lib/_gptrget.c,
6075         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6076
6077 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6078
6079         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6080         * src/SDCCast.c (astErrors): fixed bug #846007
6081         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6082
6083 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * src/SDCCast.c (decorateType): disabled a transformation I added in
6086         revision 1.188 (access to fields of a structure at an absolute address);
6087         it breaks with bitfields, extern declarations, and gcse analysis.
6088         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6089         could be assigned through a pointer, so don't complain.
6090         * src/SDCCast.c (astErrors),
6091         * src/SDCCast.h,
6092         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6093
6094 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6095
6096         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6097         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6098         output of __config directives, since gpasm now supports them
6099         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6100         pre-processor macro, i.e. -DMCU=p18f452
6101         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6102         and modified to handle 'cast' icode similarly to '=' icode
6103         * src/pic16/device.h (typedef struct PIC_device): added field
6104         'extMIface' to indicate that chip has external memory interface
6105         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6106         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6107         18F8720
6108
6109 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * src/SDCC.y (pointer): fixed bug #846006
6112         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6113         * src/SDCCast.c (decorateType): fixed bug #846009
6114         * src/ds390/peeph.def,
6115         * src/ds390/gen.c (genAnd, genOr),
6116         * src/mcs51/peeph.def,
6117         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6118
6119 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6120
6121         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6122         * src/SDCCdflow.c
6123         * src/SDCCcse.c
6124         * src/SDCCcse.h
6125         * src/SDCCBBlock.h
6126         * src/SDCCBBlock.c
6127
6128 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6129
6130         fixed bug #845089
6131         * src/SDCCbitv.h,
6132         * src/SDCCbitv.c: added function to free a bitvector
6133         * src/SDCClrange.h,
6134         * src/SDCClrange.c: added function to recompute the liveranges
6135         * src/avr/ralloc.c,
6136         * src/ds390/ralloc.c,
6137         * src/hc08/ralloc.c,
6138         * src/mcs51/ralloc.c,
6139         * src/pic/ralloc.c,
6140         * src/pic16/ralloc.c,
6141         * src/xa51/ralloc.c,
6142         * src/z80/ralloc.c: recompute the liveranges after register packing
6143
6144 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6145
6146         * src/SDCCloop.c (newInduction): fixed bug #845630
6147
6148 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6151         inadvertantly left behind from my 2003-11-12 change
6152
6153 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         Updated headers I neglected to commit yesterday.
6156         * src/SDCClrange.h,
6157         * src/SDCCicode.h
6158
6159 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6160
6161         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6162         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6163         * src/SDCCopt.c (eBBlockFromiCode),
6164         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6165         the creation of the key hash table from the sequencing so it can be used
6166         earlier (for some GCSE bug fixes still pending)
6167
6168 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6169
6170         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6171         * support/regression/tests/addsub.c: testing genPlus shortcut
6172
6173 2003-11-15  Borut Razem <borut.razem AT siol.net>
6174
6175         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6176
6177 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6178
6179         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6180         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6181         ordering is immaterial.
6182         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6183
6184 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6187         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6188         (SIGSEV) of bug #840381
6189         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6190         unlink new file before rename if new and old filenames are the same)
6191
6192 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6193
6194         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6195         uninitialized variables) for the mcs51. Set environment variable
6196         SDCC_GENRAMCLEAR to test.
6197         xdata initialization slightly shorter
6198
6199 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/SDCCsymt.h,
6202         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6203         #838241 & 780691 (basicly the same bug)
6204         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6205         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6206
6207 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6208
6209         * src/SDCCmain.c (linkEdit): "fix" #834252
6210
6211 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6212
6213         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6214         * src/SDCCast.h,
6215         * src/SDCC.y: fixed bug #819403
6216
6217 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6218
6219         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6220         the reentrant attribute.
6221         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6222         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6223         simulation
6224         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6225         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6226         erroneously reduced to a literal.
6227         * src/hc08/ralloc.c (packRegisters, rematStr),
6228         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6229         some cases
6230
6231 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6232
6233         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6234         * doc/sdccman.lyx: changed from 'article' to 'book'
6235         * doc/Makefile: readded test_suite_spec and cdbfileformat
6236
6237 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6238
6239         * device/include/stdlib.h: include malloc.h to comply with ANSI
6240         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6241
6242 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6243
6244         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6245         * doc/clean.mk: also remove *.out files
6246         * doc/sdccman.lyx: some additions, larger top/bottom margins
6247
6248 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         * src/SDCC.y: fixed bug #837365
6251         * support/regression/tests/bitopcse.c
6252         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6253         a symbol (might be valop instead)
6254         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6255         * device/lib/clean.mk: added hc08 to the cleaning list
6256
6257 2003-11-04  Borut Razem <borut.razem AT siol.net>
6258
6259         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6260           made 2003-11-04
6261         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6262           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6263           malloc is declared in standard stdlib.h
6264
6265 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         * device/lib/hc08/Makefile: need to clean .rel not .o files
6268         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6269
6270 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6271
6272         * src/port.h,
6273         * src/hc08/main.c,
6274         * src/mcs51/main.c,
6275         * src/ds390/main.c,
6276         * src/z80/main.c,
6277         * src/avr/main.c,
6278         * src/pic/main.c,
6279         * src/pic16/main.c,
6280         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6281         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6282         tests (which uses the port's oclsExpense function)
6283         * src/SDCC.y,
6284         * src/SDCCast.c,
6285         * src/SDCCicode.c,
6286         * src/hc08/gen.c,
6287         * src/ds390/gen.c,
6288         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6289
6290 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * src/SDCCcse.c (ifxOptimize),
6293         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6294         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6295         deleting the IFX iCode.
6296         * src/hc08/ralloc.c: reduced unneeded slocs
6297         * src/hc08/gen.c: fixed bug in asmopToBoolean
6298
6299 2003-11-04  Borut Razem <borut.razem AT siol.net>
6300
6301         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6302           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6303           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6304           transferred to configure
6305
6306 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         Use headers defined in the C[++] standards:
6309         * sim/ucsim/gui.src/serio.src/fileio.cc
6310         * sim/ucsim/gui.src/serio.src/frontend.cc
6311         * sim/ucsim/gui.src/serio.src/main.cc
6312         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6313         * support/Util/NewAlloc.c
6314         * as/hc08/lklibr.c
6315         * as/mcs51/lklibr.c
6316         * as/z80/aslist.c
6317         * as/z80/assym.c
6318
6319 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6320
6321         * Added MSVC projects for hc08 assembler and linker:
6322         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6323         /as/hc08/link_hc08.dsp
6324
6325 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6326
6327         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6328
6329 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6330
6331         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6332
6333 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6334
6335         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6336
6337 2003-10-31  Borut Razem <borut.razem AT siol.net>
6338
6339         * support/cpp2/cpplib.h,
6340           support/cpp2/cpplib.c,
6341           support/cpp2/cpplex.c,
6342           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6343           to switch _asm block preprocessing on / off. Default is
6344           #pragma preproc_asm +
6345
6346 2003-10-31  Borut Razem <borut.razem AT siol.net>
6347
6348         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6349           when outputting comment blocks (when executed with -C option) and
6350           _asm (SDCPP specific) blocks
6351
6352 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6353
6354         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6355
6356 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6357
6358         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6359
6360 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6361
6362         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6363         * src/SDCCast.c (decorateType): fixed bug #832664
6364
6365 2003-10-31  Borut Razem <borut.razem AT siol.net>
6366
6367         * support\cpp2\cpplex.c: fixed for SDCPP:
6368           comments(when executed with -C option) and _asm blocks
6369           were included even if they where in skipped #if block.
6370           Applied solution from GCC cpp 3.3.2
6371
6372 2003-10-31  Borut Razem <borut.razem AT siol.net>
6373
6374         * src/SDCC.lex: sdcc now understands both formats:
6375           '# <line_number> <file_name>' and
6376           '#line <line_number> <file_name>'
6377         * support/cpp2/cppmain.c: sdcpp now generates the standard
6378           '# <line_number> <file_name>' instead of former
6379           '#line <line_number> <file_name>'
6380
6381 2003-10-30  Borut Razem <borut.razem AT siol.net>
6382
6383         * support/cpp2/cpphash.h,
6384         * support/cpp2/cpplib.h
6385         * support/cpp2/cpplex.c,
6386         * support/cpp2/cppmain.c,
6387         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6388
6389 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6390
6391         Fixed a number of problems revealed by bug #827883.
6392         * src/SDCCloop.c (loopInvariants): Spill location of the
6393         result operand should be recomputed if extracted from
6394         a loop. Also, don't extract assignments of an iTemp
6395         from a literal.
6396         * src/SDCCast.c (isConformingBody): loop reversal should
6397         not occur if the control variable is involved with a
6398         relational operator.
6399
6400 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6401
6402         * .version: bumped to 2.3.6 to reflect the big improvements
6403         made by Erik and Klaus. Thanks!
6404
6405 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6406
6407         Replaced the livrange code.
6408         * src/SDCClrange.c: added new LR code
6409         * src/SDCCloop.c,
6410         * src/SDCCBBlock.h: removed remainig parts from old LR code
6411         * src/ds390/ralloc.c,
6412         * src/ds390/gen.c: minor fixes to make it work with new code
6413
6414 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6415
6416         * as/hc08/asm.h,
6417         * as/hc08/lkrloc.c,
6418         * src/hc08/gen.c,
6419         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6420         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6421         (tweaked fix for bug #818696)
6422
6423 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6424
6425         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6426
6427 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6428
6429         * src/SDCCmain.c,
6430         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6431         * src/mcs51/gen.c (gencjneshort),
6432         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6433         more efficient (per Scott Bronson's suggestion)
6434
6435 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6436
6437         Extended the semantics of the critical keyword to include
6438         individual statements. See RFE #827755 and #799831
6439         * src/SDCC.y
6440         * src/SDCCicode.c
6441         * src/SDCCopt.c
6442         * src/SDCCast.c
6443         * support/Util/SDCCerr.c
6444         * support/Util/SDCCerr.h
6445         * src/mcs51/gen.c
6446         * src/ds390/gen.c
6447         * src/hc08/gen.c
6448
6449 2003-10-19  Borut Razem <borut.razem AT siol.net>
6450
6451         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6452
6453 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6456         Fixed bug #818696
6457         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6458         and predecrement operand is displayed
6459
6460 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6461
6462         * src/SDCCval.c (valMinus): fixed bug #826041
6463
6464 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6465
6466         Some hc08 related updates that I missed earlier
6467         * sim/ucsim/stypes.h
6468         * support/regression/ports/hc08/spec.mk
6469
6470 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6471
6472         New target "hc08" for the Motorola 68hc08 family of micros
6473
6474         * configure
6475         * configure.in
6476         * Makefile
6477         * src/hc08/*
6478         * src/SDCCmain.c
6479         * src/port.h
6480         * sim/ucsim/hc08.src/*
6481         * sim/ucsim/configure.in
6482         * src/ucsim/configure
6483         * sim/ucsim/packages_in.mk
6484         * as/hc08/*
6485         * as/Makefile
6486         * device/include/mc68hc908qy.h
6487         * device/lib/hc08/*
6488         * device/lib/Makefile.in
6489         * support/regression/ports/hc08/*
6490         * support/regression/Makefile
6491
6492 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6493
6494         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6495         regression test
6496         * src/ds390/gen.c (genCast): fixed bug #821957
6497
6498 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6499
6500         * device/lib/logf.c: "fixed" overlay bug
6501         * support/regression/ports/host/spec.mk: added m library
6502         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6503         * support/regression/tests/float_trans: added (for Eric)
6504
6505 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6506
6507         * src/mcs51/gen.c (genCpl): fixed bug
6508         http://sf.net/mailarchive/message.php?msg_id=6263915
6509
6510 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6511
6512         * src/SDCCast.c (decorateType): added extended constant folding
6513         * src/SDCCsymt.c (computeType): cleanup
6514         * src/SDCCval.c (valShift): minor optimization
6515         * support/regression/tests/ast_constant_folding.c: added
6516
6517 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/SDCCmain.c: removed some unintended changes
6520
6521 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6522
6523         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6524         * src/z80/gen.c: fixed part of bug #817589
6525         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6526
6527 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6528
6529         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6530         * src/SDCCcflow.c
6531         * src/SDCCcse.c
6532         * src/SDCCdflow.c
6533         * src/SDCClabel.c
6534         * src/SDCClrange.c
6535         * src/SDCCmem.c
6536         * src/SDCCopt.c
6537         * src/SDCCpeeph.c
6538         * src/SDCCset.c
6539         * src/avr/ralloc.c
6540         * src/ds390/ralloc.c
6541         * src/izt/ralloc.c
6542         * src/mcs51/ralloc.c
6543         * src/pic/ralloc.c
6544         * src/pic16/ralloc.c
6545         * src/xa51/ralloc.c
6546         * src/z80/ralloc.c
6547         * src/z80/gen.c: removed unused label "release:"
6548
6549 2003-10-06  Borut Razem <borut.razem AT siol.net>
6550
6551         * src/SDCC.lex: removed definition of unused variables
6552           save_optimize and save_options
6553
6554 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6555
6556         * clean.mk: removed '=' in "-maxdepth=1"
6557         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6558         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6559
6560 2003-10-06  Borut Razem <borut.razem AT siol.net>
6561
6562         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6563           my_unput() replaced by unput()
6564
6565 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6566
6567         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6568         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6569         type-punned pointer will break strict-aliasing rules"
6570         Old LR behaviour is again default; Klaus' LR can be choosen by
6571         defining the environment variable LRKLAUS
6572         * src/SDCCBBlock.h
6573         * src/SDCCloop.c
6574         * src/SDCClrange.c
6575         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6576         * clean.mk: fixed removal of files in bin/CVS/
6577         * device/lib/clean.mk: fixed removal of directories small and large
6578         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6579         * src/SDCCicode.c,
6580         * src/SDCCval.c: removed superflous test for pedantic
6581
6582 2003-10-05  Borut Razem <borut.razem AT siol.net>
6583
6584         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6585           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6586           message "unmatched #pragma SAVE and #pragma RESTORE"
6587
6588 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6589
6590         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6591           assembly, critical functions, atomic, nojtbound)
6592
6593 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6594
6595         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6596         * src/SDCCBBlock.h
6597         * src/SDCCloop.c
6598         * src/SDCCloop.h
6599         * src/SDCClrange.c
6600
6601 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6602
6603         * src/z80/gen.h,
6604         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6605         * src/mcs51/gen.h
6606         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6607         * src/ds390/gen.h
6608         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6609         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6610         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6611
6612 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/z80/gen.c (genRet): fixed bug #524753
6615         * src/z80/gen.c (genCast): fixed internal error on cast from
6616         pointer to long
6617         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6618         fix for bug #477835 to the z80
6619         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6620         for tracking iCodes in the peephole optimizer for z80
6621
6622 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6623
6624         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6625         the other part of bug #814548
6626         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6627
6628 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6629
6630         * src/SDCCcse.c: fixed part of bug #814548
6631
6632 2003-09-28  Borut Razem <borut.razem AT siol.net>
6633
6634         * src/asm.c: rewrite of printILine() to use temporary file instead
6635           a pipe
6636         * src/xa51/main.c: commented out declaration of int rewinds
6637
6638 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6641
6642 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6643
6644         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6645         * src/asm.c (printILine): Fixed bug #811015
6646
6647 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6648
6649         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6650         freeing.
6651
6652 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6653
6654         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6655         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6656         to correctly handle general case of AOP_PAIRPTR
6657         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6658
6659 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6660
6661         * src/mcs51/ralloc.c (fillGaps),
6662         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6663         register positioning bug)
6664
6665 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6666
6667         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6668
6669 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6670
6671         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6672         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6673         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6674         (ralloc doesn't intentionally do this now, but perhaps later)
6675         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6676         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6677         register positioning bugs (Fixed bug #762602 and #795325)
6678         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6679         (Fixed bug #808779)
6680         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6681         lines that --i-code-in-asm generates
6682
6683 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6684
6685         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6686         trying to fclose a FILE* that was already closed.
6687
6688 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6689
6690         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6691         of const struct should be treated as if const themselves)
6692
6693 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6694
6695         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6696
6697 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6698
6699         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6700         Unix (/n) and DOS (/r/n) line terminations.
6701
6702 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6703
6704         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6705         bug #613775
6706
6707 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6708
6709         * src/mcs51/gen.c (genFunction, genEndFunction),
6710         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6711         and restore of EA so that stack offsets to parameters are
6712         correct when using both critical and reentrant/stack-auto.
6713         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6714         size (can be triggered in error if sloc is shared between
6715         different sized objects)
6716         * device/include/float.h: fixed macros to explicitly use
6717         unsigned long where needed
6718
6719 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6720
6721         Feature req. 799831: added code to allow nesting of critical functions
6722         * src/mcs51/gen.c (genFunction, genEndFunction)
6723         * src/ds390/gen.c (genFunction, genEndFunction)
6724
6725 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6726
6727         * src/SDCCsymt.c (sclsFromPtr),
6728         * src/SDCCsymt.h,
6729         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6730         support for standard C idiom of memory mapped variables; for
6731         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6732         to xdata int at 0x1234 tempvar = 1.
6733         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6734         provided by Akiya ISHIDA
6735
6736 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6737
6738         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6739         * src/SDCCval.c (constVal): added reduction from int to char
6740         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6741         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6742         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6743         to ignore the sign
6744         * support/regression/tests/shifts.c: fixed
6745
6746 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6747
6748         * src/z80/gen.c (genXor): Fixed bug #805445
6749
6750 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         Fixed bug #621531 (const & volatile confusion in the type chain).
6753         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6754         refer to the const or volatile state of the pointer itself.
6755
6756         * src/SDCCast.c
6757         * src/SDCCglue.c
6758         * src/SDCCicode.c
6759         * src/SDCCsymt.c
6760         * src/SDCCval.c
6761         * src/SDCC.y
6762         * src/SDCCsymt.h
6763         * src/pic/gen.c
6764         * src/pic/ralloc.c
6765         * src/pic16/gen.c
6766         * src/pic16/ralloc.c
6767         * support/regression/tests/const.c
6768
6769 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6770
6771         When checking for duplicated modules, use absolute paths
6772         instead of relative paths.  Files changed:
6773
6774         * as/mcs51/lklib.c
6775         * link/z80/lklib.c
6776
6777 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6778
6779         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6780
6781 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6782
6783         * device/include/string.h: added size_t typedef, changed
6784         prototypes to use size_t, eliminated separate reentrant and
6785         non-reentrant declarations, added _memmove declaration
6786         * device/lib/_memcpy.c: changed to use size_t instead of int,
6787         changed /4 to >>2 to avoid division library call
6788         * device/lib/_memcmp.c,
6789         * device/lib/_memset.c,
6790         * device/lib/_strncat.c,
6791         * device/lib/_strncpy.c,
6792         * device/lib/_strncmp.c: changed to use size_t instead of int
6793         * device/lib/_memmove.c: new file (fixed bug #772294)
6794         * device/lib/Makefile.in: added _memmove.c
6795         * device/lib/z80/asm_strings.s: fixed bug #772290
6796         * support/regression/tests/bitfields.c: attempt to fix host assertion
6797         failure on amd64-unknown-linux2.2
6798
6799 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6800
6801         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6802         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6803         * as/z80/asmain.c (main): fixed bug #801766
6804
6805 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6806
6807         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6808         compilers
6809
6810 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6811
6812         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6813         reported in bug #800609
6814
6815 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6816
6817         * Top header beautifications in src/pic16 directory:
6818           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6819           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6820           pcoderegs.h, ralloc.c, ralloc.h
6821         * main.c: added top header and GPL license notice
6822         * pcode.c: fixed the if-conditional warning
6823
6824 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6825
6826         * device/lib/_mullong.c: replaced int by short for gcc
6827
6828 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6829
6830         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6831         and JUMPTABLE iCodes properly now (worked by accident before)
6832         * src/mcs51/gen.c (leftRightUseAcc),
6833         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6834         iCode properly now. Use getSize instead of nRegs since a & b
6835         aren't part of the nRegs tally.
6836
6837 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6838
6839         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6840         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6841           before instructions that use the _STATUS register
6842
6843 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6846         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6847         fetching of the pointer
6848         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6849         copied from genNearPointerSet()
6850         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6851         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6852         If they pop r0/r1 they must be called in the opposite order than aopOp().
6853         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6854         (resp. --stack-auto), prepared for --xstack
6855
6856 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6857
6858         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6859
6860 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6861
6862         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6863         these ports have their own __sdcc_external_start()
6864
6865 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6868         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6869         type for bits was changed. It resulted in bit variables becoming
6870         global, which is not permitted in PIC 14 assembly output.
6871
6872 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6873
6874         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6875
6876 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6877
6878         Z80 and MCS51 linkers complaint if a public symbol is defined
6879         in more than one library module:
6880
6881         * as/mcs51/lklib.c
6882         * link/z80/lklib.c
6883         * as/mcs51/Makefile.in
6884
6885 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6886
6887         A few small changes that speed up the peephole optimizer.
6888
6889         * src/SDCCpeeph.c
6890
6891 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6892
6893         Try to make the peephole optimizer smarter by maintaining
6894         an association between the assembly source code and the
6895         iCodes that originated them. Put this information to use
6896         with a new peephole rule condition "notVolatile" so that
6897         the rules can be aggressive yet still safe.
6898
6899         * src/SDCCpeeph.c
6900         * src/SDCCpeeph.h
6901         * src/mcs51/gen.c
6902         * src/mcs51/peeph.def
6903
6904 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6905
6906         Fixed bug #741761
6907
6908         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6909         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6910         if the left or right operand symbols have the accuse flag set.
6911
6912 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6913
6914         Changed the type of the result of the ! (NOT) operator to char;
6915         previously it returned the same type as the source. This allows
6916         us to eliminate all the genFloatNot functions (all of its target
6917         implementations were very buggy) since !float can use the same
6918         code as !long now.
6919
6920         * src/SDCCicode.c (ast2iCode): ! returns char
6921         * src/mcs51/gen.c (genNot, genNotFloat),
6922         * src/ds390/gen.c (genNot, genNotFloat),
6923         * src/z80/gen.c (genNot, genNotFloat),
6924         * src/pic/gen.c (genNot, genNotFloat),
6925         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6926
6927 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6928
6929         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6930         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6931            during interrupts. Ensure WSAVE is located at a shared bank address.
6932         2. Fixed page selection in some places
6933         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6934            the registers name strings.
6935         4. Fixed "signed / unsigned compare" compiler warnings.
6936         5. The PIC port manages its own allocation of the general purpose
6937            registers, but makes no attempt to reuse them. As a result when
6938            compiling it soon runs out of general purpose registers. Some
6939            additional code was added to the files pcode.c and device.c to walk
6940            through the function call tree and rename the registers so that they
6941            get reused.
6942
6943         * src/pic/device.c
6944         * src/pic/gen.c
6945         * src/pic/glue.c
6946         * src/pic/pcode.c
6947         * src/pic/pcode.h
6948         * src/pic/ralloc.c
6949         * src/pic/ralloc.h
6950         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6951         genPlus() & genMinus() when the result is the same as left or right
6952
6953 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6954
6955         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6956
6957 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6958
6959         Made bitfield a distinct type from bit so that bitfields
6960         convert as per ANSI C and bits retain their traditional
6961         boolean style behaviour. Implemented bitfield support in
6962         the z80 port.
6963
6964         * src/SDCCsymt.h,
6965         * src/SDCCsymt.c,
6966         * src/SDCCast.c,
6967         * src/cdbFile.c,
6968         * src/mcs51/gen.c,
6969         * src/ds390/gen.c: bit v bitfield split
6970         * src/z80/gen.c: New support for bitfields
6971         * support/regression/tests/bitfields.c: reenabled z80,
6972         added more tests
6973
6974 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6975
6976         Rules 246.x, 247.x relate to bitfields, the others speed up
6977         access to xdata mapped I/O devices.
6978
6979         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6980
6981 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6982
6983         Cleaned up genPackBits and genUnpackBits and added two helper
6984         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6985         for literal assignments in genPackBits (thanks to Frieder for
6986         reminding me).
6987
6988         * src/mcs51/gen.c
6989         * src/ds390/gen.c
6990
6991 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6992
6993         Fixed bug #748310 (pointer to function type mishandled when the
6994         function name is omitted). Also fixed a SIGSEGV when a function
6995         attribute (reentrant, etc) is used on a non-function or on a
6996         function but misplaced before the parameter list.
6997
6998         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6999         bug #748310
7000         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7001         * support/Util/SDCCerr.h,
7002         * support/Util/SDCCerr.c: Added func attr misuse error msg
7003
7004 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         Fixed bug #787649 by anonymous
7007         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7008         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7009
7010 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7011
7012         Fixed numerous bitfield problems.
7013
7014         * src/SDCC.y: More bitfield related error checking
7015         * src/SDCCsymt.h,
7016         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7017         * support/Util/SDCCerr.h,
7018         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7019         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7020         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7021         * support/regression/tests/bitfields.c: tests added
7022
7023 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7024
7025         Made the constant following the "interrupt" keyword optional. If
7026         omitted, the function will not automatically be given an entry
7027         in the interrupt vector table (similar to #pragma NOIV, but
7028         less syntacticly kludgy). The interrupt number is also now
7029         range checked. Also fixed a bug in the high order bit example
7030         in the manual.
7031
7032         * src/SDCC.y
7033         * src/SDCCmem.c
7034         * src/SDCCglue.c
7035         * src/SDCCsymt.h
7036         * support/Util/SDCCerr.c
7037         * support/Util/SDCCerr.h
7038         * doc/sdccman.lyx
7039
7040 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7041
7042         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7043         * src/SDCCicode.c (operandOperation): rewritten some ops
7044         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7045         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7046         other type
7047         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7048         be re-activated by defining REDUCE_LITERALS)
7049         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7050         unsigned, but are signed by default
7051         * src/SDCCval.c (constVal): rearranged
7052         * src/SDCCval.c (valMod): preliminary fix
7053         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7054         * support/regression/literalop.c: added, work in progress
7055
7056 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7057
7058         Generate warnings for useless declarations like "char data;"
7059         that don't do what new users expect.
7060
7061         * src/SDCC.y
7062         * support/Util/SDCCerr.h
7063         * support/Util/SDCCerr.c
7064
7065 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7066
7067         * src/SDCCval.c (valMult): fix overflow detection of negative int
7068
7069 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7070
7071         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7072
7073         Changes to support big endian targets:
7074
7075         * src/ports.h
7076         * src/SDCCglue.c
7077         * src/avr/main.c
7078         * src/ds390/main.c
7079         * src/izt/i186.c
7080         * src/mcs51/main.c
7081         * src/pic/main.c
7082         * src/pic16/main.c
7083         * src/xa51/main.c
7084         * src/z80/main.c
7085
7086 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7087
7088         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7089         * device/lib/time.c: fixed warning "integer overflow in expression"
7090
7091 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7092
7093         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7094         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7095         constants are unsigned; added recognition of "u" flag for unsigned
7096         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7097         * src/SDCCval.c (valDiv, valMod): fixed signdness
7098         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7099         signedness of modulo, left and right shift
7100         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7101         * support/Util/SDCCerr.h: added warning W_INT_OVL
7102         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7103         * src/SDCCast.c (ast_print): improved output of constants
7104
7105 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7106
7107         Fixed some warnings when building with MSVC:
7108
7109         * as\mcs51\asdata.c
7110         * as\z80\asdata.c
7111         * as\mcs51\asm.h
7112         * as\z80\asm.h
7113         * link\z80\aslink.h
7114         * link\z80\lkdata.c
7115         * link\z80\lkeval.c
7116         * link\z80\lkgb.c
7117         * link\z80\lkihx.c
7118         * link\z80\lks19.c
7119         * link\z80\lksym.c
7120         * support\cpp2\cpplib.c
7121         * src\ds390\gen.c
7122         * src\mcs51\gen.c
7123
7124 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7125
7126         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7127
7128 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7129
7130         * support\librarian\clean.mk: Do not remove Makefile.
7131         * support\librarian\Makefile: added.
7132
7133 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7134
7135         Added librarian to MSVC build:
7136         * all.dsp
7137         * sdcc.dsw
7138         * support\librarian\librarian.dsp
7139
7140         'configure' not needed for librarian, removed:
7141         * support\librarian\configure
7142         * support\librarian\configure.in
7143         * support\librarian\config_in.h
7144         * support\librarian\Makefile.in
7145
7146         Hopefully these ones built the librarian and the rest of sdcc properly:
7147         * Makefile
7148         * Makefile.common.in
7149
7150         Messed up 'configure', so revert to previous version:
7151         * configure
7152         * configure.in
7153
7154 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7155
7156         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7157         there, while the mantissa of a double is "only" 53 bits wide.
7158
7159 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7160
7161         Adding sdcclib to the build.  MSVC project coming soon.
7162         Files added/changed:
7163
7164         * support\librarian\clean.mk
7165         * support\librarian\configure
7166         * support\librarian\configure.in
7167         * support\librarian\config_in.h
7168         * support\librarian\Makefile.bcc
7169         * support\librarian\Makefile.in
7170         * support\librarian\sdcclib.c
7171         * Makefile.bcc
7172         * Makefile
7173         * Makefile.common.in
7174         * configure
7175         * configure.in
7176
7177 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7178
7179         Linker now complaints if linked modules have conflicting options, for
7180         example, one compiled using --model-large and another one compiled with
7181         --model-small.  The following files were modified:
7182
7183         * as\mcs51\asdata.c
7184         * as\mcs51\aslink.h
7185         * as\mcs51\asm.h
7186         * as\mcs51\asmain.c
7187         * as\mcs51\asout.c
7188         * as\mcs51\i51pst.c
7189         * as\mcs51\lkdata.c
7190         * as\mcs51\lklibr.c
7191         * as\mcs51\lkmain.c
7192         * as\z80\asdata.c
7193         * as\z80\asm.h
7194         * as\z80\asmain.c
7195         * as\z80\asout.c
7196         * as\z80\z80pst.c
7197         * link\z80\aslink.h
7198         * link\z80\lkdata.c
7199         * link\z80\lklibr.c
7200         * link\z80\lkmain.c
7201         * src\SDCCglue.c
7202
7203 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7204
7205         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7206         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7207
7208 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7209
7210         * src/z80/mappings.i: fix _mul[us][int,long] entries
7211
7212 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7213
7214         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7215
7216 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7217
7218         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7219         * support/regression/tests/bitopcse.c: added
7220         fixed warning:
7221         * src/avr/gen.c:
7222         * src/pic/gen.c:
7223         * src/pic16/gen.c:
7224         * src/z80/gen.c:
7225         * src/xa51/gen.c:
7226
7227 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7228
7229         added support for new library format to z80, gbz80 linkers:
7230         *link/z80/aslink.h
7231         *link/z80/lklex.c
7232         *link/z80/lklib.c
7233         *link/z80/lklist.c
7234
7235 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7236
7237         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7238         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7239
7240 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7241
7242         added DUMMY_READ_VOLATILE:
7243         * src/SDCC.y:
7244         * src/avr/gen.c:
7245         * src/xa51/gen.c:
7246         * src/z80/gen.c:
7247         * src/pic/gen.c:
7248         * src/pic16/gen.c:
7249         * src/mcs51/gen.c:
7250         * src/ds390/gen.c:
7251         * src/SDCCcse.c (algebraicOpts): many improvements
7252         * src/SDCCcse.h: removed algebraicOpts()
7253         * src/SDCCicode.c (picDummyRead): added
7254
7255 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7256
7257         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7258         "Insufficient space in data memory".
7259
7260 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7261
7262         * src/mcs51/gen.c: fixed bug #771358
7263         * src/z80/gen.c: fixed bug #759087
7264
7265 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * src/pic16/glue.c: minor cleanup by Vangelis
7268
7269 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7270
7271         * device/include/regc515c.h: fixed #758477
7272         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7273         * device/lib/_gptrput.c: saved a few bytes
7274         * my tab spacing is 8, yours too?)
7275         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7276         * device/lib/serial.c: process RX bytes earlier than TX bytes
7277         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7278
7279 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7280
7281         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7282
7283 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7284
7285     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7286
7287 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7288
7289         * device/lib/Makefile.in: bad fix, reverted to 1.43
7290
7291 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7292
7293         * device/lib/Makefile.in: added missing z80 object files
7294
7295 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7296
7297         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7298         pic16 progress by Vangelis:
7299         * src/SDCCglobl.h:
7300         * src/SDCCmain.c:
7301         * src/pic/Makefile:
7302         * src/pic:
7303         * pic/Makefile:
7304         * pic16/device.c:
7305         * pic16/device.h:
7306         * pic16/gen.c:
7307         * pic16/gen.h:
7308         * pic16/genarith.c:
7309         * pic16/glue.c:
7310         * pic16/main.c:
7311         * pic16/pcode.c:
7312         * pic16/pcode.h:
7313         * pic16/pcodepeep.c:
7314         * pic16/peeph.def:
7315
7316 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7317
7318     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7319
7320 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7321
7322     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7323     added gbz80 build to MSVC project.
7324     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7325     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7326     from 8051 stuff and setup so it links using a .lnk file.
7327
7328 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7329
7330     * support/librarian/sdcclib.c: sdcc librarian.
7331     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7332     with sdcclib.
7333
7334 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7335
7336     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7337
7338 2003-07-02  Borut Razem <borut.razem AT siol.net>
7339
7340         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7341         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7342         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7343         src/xa51/main.c, src/z80/main.c:
7344         virtualization of glue() function: each port has it's own glue function,
7345         which is accessed by do_glue function pointer in PORT.general structure
7346
7347 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7348
7349         * DS800C400 fun, improved ROM interface and tinibios.
7350
7351 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7352
7353         * More support for DS80C400. Now includes beginning of interface to ROM.
7354
7355 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7358
7359 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7360
7361         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7362
7363 2003-06-19  Borut Razem <borut.razem AT siol.net>
7364
7365         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7366
7367 2003-06-19  Borut Razem <borut.razem AT siol.net>
7368
7369         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7370         fixed Z80 port - crt0.o: cannot open.
7371
7372 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7373
7374         * support/Util/MySystem.c (merge_command): revert bad fix
7375
7376 2003-06-18  Borut Razem <borut.razem AT siol.net>
7377
7378         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7379
7380 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7381
7382         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7383         option --use-stdout sends errors to stdout instead of stderr.
7384
7385 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7386
7387         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7388
7389 2003-06-15  Borut Razem <borut.razem AT siol.net>
7390
7391         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7392         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7393         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7394         fixed width array of pointers replaced with sets;
7395         multiple include and lib paths ared transferred to preprocessor and linker
7396         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7397         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7398         fixed width array of pointers
7399         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7400         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7401         fixupPath(), getPathDifference()
7402         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7403         fixed width array of pointers
7404
7405 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7406
7407         * src/pic16/ralloc.c: fix warnings
7408         * src/pic16/pcode.c: fix warning
7409
7410 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7411
7412          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7413         know all the details, but essentially this set of changes enable
7414         the pic16 port to generate movff instructions and generate assembler
7415         directives,
7416         * src/SDCCmain.c:
7417         * src/pic16/gen.c:
7418         * src/pic16/glue.c:
7419         * src/pic16/pcode.c:
7420         * src/pic16/device.c:
7421         * src/pic16/main.c:
7422         * src/pic16/pcode.h:
7423         * src/pic16/pcoderegs.c:
7424         * src/pic16/ralloc.c:
7425         * src/pic16/ralloc.h:
7426
7427 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7428
7429         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7430         added option --vc, so sdcc errors and warnings are compatible with
7431         Microsoft Visual Studio.
7432
7433 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7434
7435         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7436           device/lib/libfloat.lib: added atof function.
7437
7438 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7439
7440         * doc/sdccman.lyx: updated to Lyx 1.3
7441         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7442         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7443         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7444
7445 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7446
7447         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7448
7449 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7450
7451         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7452           additions to the "related tools/documentation" section
7453
7454 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7455
7456         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7457
7458 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7461         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7462
7463 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7464
7465         * doc/sdccman.lyx: fix double dash and other minor things
7466         * doc/Makefile: fix double dash
7467
7468 2003-05-28  Karl Bongers(patches from Martin Helmling)
7469         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7470           condition and ignore commands.
7471
7472 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7473
7474         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7475           is in parts still quite out of date, I did changes as far as I felt makes sense
7476           for a non-native english speaker.
7477           Please feel free to add to the manual or to correct my changes.
7478         * doc/Makefile: undid touching the date of intermediate tex files.
7479
7480 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7481
7482         * doc/sdccman.lyx: Manual has an index now
7483
7484 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7485
7486         Finalize muluint/mulsint and mululong/mulslong merging:
7487         * device/lib/_mulint.c
7488         * device/lib/_mullong.c
7489         * device/lib/gbz80/mul.s
7490         * device/lib/gbz80/stubs.s
7491         * device/lib/z80/mul.s
7492         * device/lib/z80/stubs.s
7493         * src/SDCCsymt.c (initCSupport)
7494
7495 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7496
7497         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7498         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7499           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7500           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7501           instead of /Zm500.
7502
7503 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7504
7505         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7506           the regression tests I'm not brave enough to enable 245.b, 245.c
7507         * doc/sdccman.lyx: added latex preamble for hyperref package.
7508           Using pdflatex this will give you a hyperlinked pdf file with
7509           bookmarks. (prepend '%' before /usepackage if this breaks something)
7510
7511 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7512
7513          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7514
7515 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7516
7517         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7518
7519 2003-05-21    <johan AT balder>
7520
7521         * src/SDCCglue.c (printIval): fixed bug #739934
7522
7523 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7524
7525         Applied patch from bug 737905 (renamed yylineo to mylineno):
7526         * src/altlex.c
7527         * src/SDCCast.c
7528         * src/SDCglobl.h
7529         * src/SDCC.lex
7530         * src/SDCCsymt.c
7531         * src/SDCCval.c
7532         * src/pic16/pcode.c: Cleaned warnings
7533         * src/pic16/pcodeflow.c: Cleaned warnings
7534         * src/pic16/pcoderegs.c: Cleaned warnings
7535
7536 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7537
7538         * src/pic16/pcode.c: Cleaned warnings
7539         * src/pic16/pcodepeep.c: Cleaned warnings
7540         * src/pic16/ralloc.c: Cleaned warnings
7541
7542 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7543
7544         * doc/sdccman.lyx: fixed bug 739745
7545         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7546
7547 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7548
7549         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7550         it can be defined with CFLAGS when running configure
7551         * src/SDCCmain.c: fixed compiling + linking with object files
7552
7553 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7554
7555         * configure.in: configure for pic16 port,
7556             added --disable-pic16-port
7557         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7558         * src/SDCCmain.c: linkOptions is changed to set *,
7559             added if/endif conditional macros to remove options help
7560             messages from optionsTable when a port is not configured, added
7561             support for the PIc16 port in the ports table, when executing
7562             the compiler with no port specified on command line, a default
7563             port is selected with the new macro DEFAULT_PORT which is
7564             defined in port.h, in setDefaultOptions() linkOptions is removed
7565             from initialization assignment, since now it is a set,
7566             parseCmdLine uses setParseWithComma for linkOptions, in
7567             linkEdit() linkOptions are accessed with new function indexSet()
7568             which returns the i'th item of a set variable. See SDCCset.c, in
7569             linkEdit() when calling buildCmdLine(), added linkOptions as
7570             last argument. Now users can pass arguments to gplink via the
7571             -Wl option, main() uses pic16glue() to glue up pic16 programs
7572         * src/SDCCpeeph.c: various changes to support pic16
7573         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7574             return the i'th item of the set
7575         * src/SDCCset.h: added function prototype for indexSet()
7576         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7577         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7578         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7579             added macro DEFAULT_PORT
7580         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7581         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7582             generated
7583         * src/pic16/glue.c: commented out some error producing lines
7584         * src/pic16/main.c: __config directives are commented out to stop
7585             gpasm complaining and test the linkage with gplink, _linkCmd and
7586             _asmCmd changed to be more gplink and gpasm friendly
7587         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7588             produced an error when parsed, peep rule 12 is added to utilize
7589             movff, but it is commented out since the pCode does not support
7590             yet a command with 2 address arguments
7591
7592 2003-05-18    <johan AT balder>
7593
7594         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7595         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7596 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7597
7598         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7599   Added feature to script commands from file.
7600
7601 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7602
7603         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7604         * src/SDCCutil.c: include ctype.h for win32
7605
7606 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7607
7608         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7609
7610 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7611
7612         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7613   Fixed so you can set breakpoints prior to run, run does not stop
7614   on entry now.  Add tbreak.  Other enhancements and fixes for use
7615   with ddd.
7616
7617 2003-05-12  Borut Razem <borut.razem AT siol.net>
7618
7619         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7620
7621 2003-05-11  Borut Razem <borut.razem AT siol.net>
7622
7623         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7624         the path of bin directory, so that PATH is the only env. variable, which has to be set
7625         in case of standard installation.
7626         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7627         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7628         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7629
7630 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7631
7632         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7633         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7634         temp files are in the port dir; clean the gen/test directory when
7635         generating new test.c
7636         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7637         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7638         * support/regression/tests/zeropad.c: added
7639
7640 2003-05-09    <johan AT balder>
7641
7642         * src/SDCCglue.c: fixed bug #597940
7643
7644 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7645
7646         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7647   cache sfr, optimize next,step, fix off by one sourceline,
7648   support ddd list function.
7649         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7650
7651 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7652
7653         * support/regression/HTMLgen.py: added compare_s2f()
7654         * support/regression/Makefile: redo 1.27
7655         * support/regression/generate-cases.py: redo 1.5
7656
7657 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7658
7659         * support/regression/tests/float.c: workaround 33 bit hex constant
7660         * support/regression/tests/simplefloat.c: fix division for host
7661
7662 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7663
7664         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7665         that tame's the PIC's over-aggressive optimizer.
7666
7667 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7668
7669          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7670          support for MSVC.
7671
7672 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7673
7674         Initial support for DS80C400. "Hello world" runs on TINIm400
7675         (with polled I/O).
7676
7677 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7678
7679          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7680          * Some notes on ddd usage added in debugger/README
7681          Martin Helmling adding more features and fixes for ddd GUI debugger.
7682          Code added for nexti, stepi, up, down, and other adjustments.
7683
7684 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7685
7686         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7687         * src/pic/peeph.def Added two rules to optimize carry manipulation
7688         * src/pic/* removed debug printfs
7689
7690 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7691
7692         * debugger/mcs51/cmd.c: added header newalloc.h
7693
7694 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7695
7696         * as/Makefile: new EXEEXT
7697         * as/z80/Makefile: remove trailing slash of BUILDIR
7698         * as/z80/clean.mk: new EXEEXT
7699         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7700         * support/cpp2/Makefile.in: new EXEEXT
7701         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7702
7703 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7704
7705         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7706         EXEEXT was introduced to fix all related problems with targets
7707         "clean", "install" and "uninstall"; a couple of further flaws
7708         especially with "clean" have been fixed too
7709         * as/mcs51/Makefile.in
7710         * as/mcs51/clean.mk
7711         * as/z80/Makefile
7712         * Makefile
7713         * clean.mk
7714         * debugger/mcs51/Makefile.in
7715         * debugger/mcs51/clean.mk
7716         * link/z80/Makefile
7717         * link/z80/Makefile.in
7718         * link/z80/clean.mk
7719         * link/Makefile
7720         * packihx/Makefile.in
7721         * packihx/clean.mk
7722         * sim/ucsim/Makefile
7723         * sim/ucsim/clean.mk
7724         * sim/ucsim/avr.src/Makefile.in
7725         * sim/ucsim/avr.src/clean.mk
7726         * sim/ucsim/s51.src/Makefile.in
7727         * sim/ucsim/s51.src/clean.mk
7728         * sim/ucsim/xa.src/Makefile.in
7729         * sim/ucsim/xa.src/clean.mk
7730         * sim/ucsim/z80.src/Makefile.in
7731         * sim/ucsim/z80.src/clean.mk
7732         * sim/ucsim/main_in.mk
7733         * sim/ucsim/packages_in.mk
7734         * sim/ucsim/gui.src/Makefile.in
7735         * sim/ucsim/gui.src/serio.src/Makefile.in
7736         * sim/ucsim/gui.src/serio.src/clean.mk
7737         * src/Makefile.in
7738         * src/clean.mk
7739         * support/cpp2/Makefile.in
7740         * support/cpp2/clean.mk
7741         * support/makebin/Makefile
7742         * support/makebin/clean.mk
7743         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7744         * doc/sdccman.lyx: --program-suffix no longer needed
7745
7746 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7747
7748          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7749          Martin Helmling added support for ddd GUI debugger.
7750          Code added to display assembly, set variables, and other commands
7751          to interface to ddd.
7752
7753 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7754
7755         * as/Makefile: fix target clean
7756         * as/clean.mk: fix target clean
7757         * as/z80/clean.mk: fix target clean
7758
7759 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7760
7761         * Makefile.common.in: added  AT EXEEXT AT
7762         * configure.in: removed all mingw32 stuff
7763         * configure: rebuilt from configure.in
7764         * doc/sdccman.lyx: updated section "installation"
7765         * support/scripts/sdcc_mingw32: adapted to configure
7766         * support/scripts/sdcc_cygwin_mingw32: added
7767
7768 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7769
7770         * src/pic Added object file support for the PIC port
7771         * src/pic Applied patch from Craig Franklin (this started the object file support)
7772         * src/regression Updated the PIC regression tests for object files
7773
7774 2003-04-20  Borut Razem <borut.razem AT siol.net>
7775
7776         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7777           lklex.c: In function `getfid':
7778           lklex.c:203: warning: array subscript has type `char'
7779         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7780           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7781         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7782           stack handling macros
7783
7784 2003-04-19  Borut Razem <borut.razem AT siol.net>
7785
7786         * "handling space characters in file path" task:
7787         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7788         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7789         * support/Util/MySystem.h: make it self-sufficient
7790         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7791           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7792           handling space characters in file path
7793         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7794           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7795         * support/Util/MySystem.c: handling space characters in executable's path
7796
7797 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7798
7799         * as/z80/Makefile: fix permanent rebuild of z80
7800         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7801         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7802
7803 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7804
7805         * src/SDCCopt.c: add special case optimization to replace modulo by
7806           a power of two with a bitwise AND.
7807
7808 2003-04-18    <johan AT balder>
7809
7810         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7811
7812 2003-04-17    <johan AT balder>
7813
7814         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7815         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7816
7817 2003-04-13  Borut Razem <borut.razem AT siol.net>
7818
7819         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7820         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7821           fixed mingw problem in adl_NORMALIZE_PATH
7822
7823 2003-04-12  Borut Razem <borut.razem AT siol.net>
7824
7825         * fixed "#pragma SAVE/RESTORE can not be nested":
7826         * src/SDCC.lex: reworked pragma handling functions
7827         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7828         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7829
7830 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7831
7832         * src/SDCCutil.c (pathEquivalent): defined but not used
7833         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7834         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7835         * configure: rebuilt from configure.in
7836         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7837         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7838         * device/include/Makefile.in: replace sdcc_datadir
7839         * device/lib/Makefile.in: replace sdcc_datadir
7840         * Makefile.common.in: add LDFLAGS from configure
7841         * packihx/Makefile.in: use LDFLAGS
7842         * src/Makefile.in: use LDFLAGS
7843         * support/cpp2/Makefile.in: add LDFLAGS from configure
7844         * support/makebin/Makefile: use LDFLAGS
7845         * .version: bumped version number to 2.3.5
7846
7847 2003-04-12  Borut Razem <borut.razem AT siol.net>
7848
7849         * completed "different paths" task:
7850         * src/SDCCmacro.c: fixed bug in handling quotes
7851         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7852         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7853
7854 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7855
7856         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7857
7858 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7859
7860         * ds390/gen.c ds390/peeph.def: fix bug 706781
7861
7862 2003-04-11  Borut Razem <borut.razem AT siol.net>
7863
7864         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7865
7866 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7867
7868         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7869         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7870          set - this bit used to not be set...).
7871         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7872           bad code in PIC Port
7873         * src/regression/and2.c added to test bug 609268
7874         * src/regression/Makefile added and2.c to regression test
7875
7876
7877 2003-04-08    <johan AT CP255758-A>
7878
7879         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7880         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7881         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7882
7883 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7884
7885         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7886         fix bug #487815
7887         * support/cpp2/Makefile.in: fix bug #487815
7888         * configure: rebuilt from configure.in
7889         * Makefile.common.in: docdir changed, new path suffixes
7890         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7891         * sdcc_vc_in.h: reflect changes from sdccconf.h
7892         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7893         * src/SDCCutil.h: remove BINDIR hack
7894         * doc/sdccman.lyx: update new path hierarchy
7895
7896 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7897
7898         * src/SDCCpeeph.c: added okToRemoveSLOC test
7899
7900 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7901
7902         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7903
7904 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7905
7906         * src/SDCCpeeph.c: added labelIsReturnOnly test
7907         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7908
7909 2003-04-05    <johan AT balder>
7910
7911         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7912         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7913         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7914         * src/SDCCast.c: fixed a warning
7915         * src/SDCCast.h: fixed a warning
7916         * src/SDCCicode.c (operandFromAst): fixed a warning
7917
7918 2003-04-04    <johan AT balder>
7919
7920         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7921         * src/SDCCast.c (decorateType): fixed bug #715076
7922         * src/SDCC.y: fixed bug #702907
7923
7924 2003-04-03    <johan AT balder>
7925
7926         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7927         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7928         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7929         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7930         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7931
7932 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7933
7934         * _decdptr.c: fix return values
7935         * _gptrget.c: fix return values
7936         * _gptrgetc.c: fix return values
7937         * _gptrput.c: fix return values
7938         * _mulint.c: fix return values
7939         * as/z80/Makefile: fix 'make -j' problem
7940
7941 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7942
7943         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7944         * configure.in: big cleanup, updated to autoconf 2.5x
7945         * configure: rebuilt from configure.in
7946         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7947         * sdcc_vc_in.h: reflect changes from sdccconf.h
7948         * doc/Makefile: fixed a flaw in "make install"
7949
7950 2003-04-02    <johan AT balder>
7951
7952         * src/ds390/gen.c (genCmp): no comments
7953         * src/mcs51/gen.c (genCmp): no comments
7954         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7955         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7956
7957 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7958
7959         * support/regression/generate-cases.py: place generated file in given sub directory
7960         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7961         * support/regression/Makefile: improvements for 'make -j';
7962         side effect: it's simpler and faster now
7963
7964 2003-03-31  Borut Razem <borut.razem AT siol.net>
7965
7966         * src/z80/main.c: link-{port} and as-{port} defined without path
7967         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7968
7969 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7970
7971         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7972
7973 2003-03-30  Borut Razem <borut.razem AT siol.net>
7974
7975         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7976           changed type of list parameter to set
7977         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7978         * src/port.h: changed type of do_assemble() parameter to set
7979         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7980           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7981           definition of "cppoutfilename" macro with NULL value in preProcess()
7982         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7983         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7984         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7985           replaced with set *binPathSet
7986         * shash_add() deallocates the item, if allready exsists, before adding the new one
7987         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7988
7989 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7990
7991         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7992           a nested for loop bug in the PIC port
7993         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7994           for loops
7995
7996 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7997
7998         * support/Util/dbuf.h: remove C++ stuff to make it portable
7999
8000 2003-03-28  Borut Razem <borut.razem AT siol.net>
8001
8002         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8003           literal strings in stringLiteral()
8004         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8005         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8006           to the project
8007
8008 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8009
8010         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8011
8012 2003-03-26    <johan AT balder>
8013
8014         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8015         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8016         * src/SDCCast.c (decorateType): fixed " -v < 3"
8017
8018 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8021         Added Lenny Story's debug infrastructure changes:
8022         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8023         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8024         * src/cdbFile.c: added
8025         * src/SDCCdebug.c: added
8026         * src/SDCCdebug.h: added
8027         * src/SDCCast.c (createFunction)
8028         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8029         * src/SDCCmain.c (parseCmdLine, main)
8030         * src/SDCCmem.c (redoStackOffsets)
8031         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8032         * src/SDCCsymt.h
8033         * src/common.h
8034         * src/avr/gen.c (genAVRCode)
8035         * src/ds390/gen.c (gen390Code)
8036         * src/mcs51/gen.c (gen51Code)
8037         * src/pic/gen.c (genpic14Code)
8038         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8039         * src/xa51/gen.c (genXA51Code)
8040         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8041
8042 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8043
8044         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8045         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8046
8047 2003-03-22    <johan AT balder>
8048
8049         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8050
8051 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8052
8053         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8054         * doc/cdbfileformat.lyx: added, written by Lenny Story
8055         * doc/Makefile: added cdbfileformat.lyx
8056         * doc/clean.mk: added cdbfileformat.lyx
8057
8058 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8059
8060         * src/mcs51/peeph.def: fix bug #705773
8061
8062 2003-03-20    <johan AT balder>
8063
8064         An sfr/sbit can have an "at #" AND an initializer
8065         * src/SDCCsymt.c (checkSClass):
8066         * src/SDCCmem.c (allocGlobal):
8067         * src/SDCCmem.c (allocLocal):
8068         * src/SDCCast.c (createBlock):
8069
8070 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8071
8072         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8073
8074 2003-03-16    <johan AT balder>
8075
8076         Undid the hackup of const and volatile, the problem is much bigger
8077         * src/SDCC.y:1.65
8078         * src/SDCCast.c:1.171
8079         * src/SDCCglue.c:1.138
8080         * src/SDCCicode.c:1.146
8081         * src/SDCCsymt.c:1.150
8082         * src/SDCCval.c:1.65
8083
8084 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8087         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8088
8089 2003-03-13    <johan AT balder>
8090
8091         Hackup const and volatile modifiers in type chains a bit:
8092         * src/SDCC.y:1.63
8093         * src/SDCCast.c:1.169
8094         * src/SDCCglue.c:1.136
8095         * src/SDCCicode.c:1.143
8096         * src/SDCCsymt.c1.146
8097         * src/SDCCsymt.h1.59
8098         * src/SDCCval.c:1.63
8099
8100 2003-03-12    <johan AT balder>
8101
8102         * src/SDCCBBlock.h: more LRH debugging junk
8103         * src/SDCCcflow.h: more LRH debugging junk
8104         * src/SDCCloop.c: more LRH debugging junk
8105         * src/SDCC.y (struct_declaration): fixed bug #697590
8106         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8107         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8108         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8109
8110 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8111         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8112         test function names must now match exactly).
8113         * src/SDCCcse.c: added special case in findCheaperOp to allow
8114         extending a short integer. Makes less awful code for bug 700121 test case.
8115
8116 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8117
8118         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8119         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8120
8121 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8122
8123         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8124         actually called (operandsNotEqual() was called for all
8125         operandsNotEqualX tests).
8126
8127 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8128
8129         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8130         with shorter literals. Fixes bug 700121.
8131
8132 2003-03-11    <johan AT balder>
8133
8134         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8135
8136 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8137
8138         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8139         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8140
8141 2003-03-10  Borut Razem <borut.razem AT siol.net>
8142
8143         * src/SDCCmain.c: pipe preprocessor's output
8144         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8145         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8146         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8147         which closes all pipes in pipeSet set
8148         * src/SDCCset.c: free deleted item in function deleteSetItem()
8149         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8150         moved from z80 to src subproject
8151         * .version: increased version number to 2.3.4
8152
8153 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8156         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8157         * support/regression/ports/xa51/spec.mk: fix typo
8158
8159 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8160
8161         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8162
8163 2003-03-09  Borut Razem <borut.razem AT siol.net>
8164
8165         * src/SDCCmain.c: pipe preprocessor's output
8166         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8167         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8168         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8169         which closes all pipes in pipeSet set
8170         * src/SDCCset.c: free deleted item in function deleteSetItem()
8171         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8172         moved from z80 to src subproject
8173
8174 2003-03-09  Borut Razem <borut.razem AT siol.net>
8175
8176         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8177         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8178         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8179         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8180         * src/SDCCglobl.h: unification of WIN32 native definitions
8181
8182 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8183
8184         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8185
8186 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8187
8188         * src/configure.in:   check for endianess (even while cross-compiling)
8189         * src/configure:      check for endianess (even while cross-compiling)
8190         * src/configure_in.h: check for endianess (even while cross-compiling)
8191         * src/avr/gen.c:        remove old endianess stuff
8192         * src/mcs51/gen.c:      remove old endianess stuff
8193         * src/ds390/gen.c:      remove old endianess stuff
8194         * src/pic/gen.c:        remove old endianess stuff
8195         * src/pic/genarith.c:   remove old endianess stuff
8196         * src/pic/glue.c:       fix endianess check
8197         * src/pic16/gen.c:      remove old endianess stuff
8198         * src/pic16/genarith.c: remove old endianess stuff
8199         * src/pic16/glue.c:     fix endianess check
8200         * src/xa51/gen.c:       remove old endianess stuff
8201         * src/z80/gen.c:        fix endianess check
8202         * src/SDCCglue.c:       fix endianess check
8203         * src/ds390/peeph.def: fix bug 700036
8204
8205 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8206
8207         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8208         * src/configure: find appropriate data-types on host for SDCC's int and long
8209         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8210         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8211         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8212
8213 2003-03-07    <johan AT balder>
8214
8215         Just a big NOOP:
8216                 some minor cleanups before the big shot
8217                 OP_DEFS and OP_USES now use Kevin's protection
8218                 new option --nolabelopt
8219
8220         * src/SDCCBBlock.c:
8221         * src/SDCCast.c,:
8222         * src/SDCCcflow.c:
8223         * src/SDCCcse.c:
8224         * src/SDCCicode.c:
8225         * src/SDCCicode.h:
8226         * src/SDCClabel.c:
8227         * src/SDCCloop.c:
8228         * src/SDCCmain.c:
8229         * src/ds390/ralloc.c:
8230         * src/mcs51/ralloc.c:
8231         * src/pic/ralloc.c:
8232         * src/xa51/ralloc.c:
8233         * src/z80/ralloc.c:
8234
8235 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8236
8237         * src/pic/pcode.c (get_op): fix 64 bit warnings
8238         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8239         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8240         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8241         * support/regression/tests/malloc.c: fix 64 bit warnings
8242
8243 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * src/mcs51/gen.c (genMinus): fixed bug 696436
8246
8247 2003-03-02  Borut Razem <borut.razem AT siol.net>
8248
8249         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8250
8251 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8252
8253         * configure.in: test for mkstemp
8254         * sdccconf_in.h: add HAVE_MKSTEMP
8255
8256 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8257
8258         * device/include/ctype.h: removed warning while using --stack-auto
8259         * device/include/malloc.h: removed warning while using --stack-auto
8260         * device/include/string.h: removed warning while using --stack-auto
8261
8262 2003-02-23  Borut Razem <borut.razem AT siol.net>
8263
8264         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8265         because NDEBUG is defined (see man assert)
8266         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8267
8268 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8269
8270         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8271         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8272
8273 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8274
8275         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8276         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8277
8278 2003-02-18    <johan AT balder>
8279
8280         * as/mcs51/asmain.c (asmbl): module can start with a digit
8281         * as/z80/asmain.c (asmbl): module can start with a digit
8282
8283 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8284
8285         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8286         * src/asm.c: fix pipe() for Mingw32
8287
8288 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8289
8290         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8291         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8292         make -V work again; --c1mode reads now from stdin
8293         * doc/sdccman.lyx: added --c1mode
8294         * support/Util/SDCCerr.c: new messages for c1 mode
8295         * support/Util/SDCCerr.h: new messages for c1 mode
8296         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8297
8298 2003-02-15    <johan AT balder>
8299
8300         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8301
8302 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * doc/sdccman.lyx: Environment variables, -o and other minor things
8305
8306 2003-02-14    <johan AT balder>
8307
8308         * src/xa51/main.c: before anyone really tries to use it :)
8309
8310         * Install doc's in share/sdcc/doc
8311         * removed some obsolete files
8312         * Do a proper make distclean and uninstall
8313         M Makefile.common.in
8314         R sdccbuild.sh
8315         M as/Makefile
8316         M device/include/Makefile.in
8317         M device/lib/Makefile.in
8318         M doc/sdccman.lyx
8319         M link/Makefile
8320         M sim/ucsim/doc/Makefile.in
8321         M src/clean.mk
8322         R src/avr/peeph.rul
8323         R src/xa51/peeph.rul
8324         M support/cpp2/Makefile.in
8325         M support/makebin/Makefile
8326
8327
8328 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8329
8330         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8331
8332 2003-02-10  Borut Razem <borut.razem AT siol.net>
8333
8334         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8335         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8336         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8337         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8338         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8339         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8340         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8341         src/z80/Makefile.bcc: Borland Makefile cleanup
8342         * as/z80/Makefile.bcc: Added Borland Makefile
8343         * support/cpp2/borland.h: Removed
8344
8345 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8346
8347         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8348         * src/SDCC.lex: new pragma NOIV
8349         * src/SDCCglobl.h: new pragma NOIV
8350         * src/SDCCmem.c: new pragma NOIV
8351
8352 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8353
8354         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8355
8356 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * src/SDCCmain.c: signal handling is switched off by --debug
8359         * doc/Makefile: small fix for install; use clean.mk again
8360         * doc/clean.mk: clean *.pdf and *.html too
8361
8362 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8363
8364         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8365         * device/lib/printfl.c: fix a ds390 bug by making it portable
8366         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8367         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8368         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8369         * debugger/mcs51/cmd.c: converted multi-line string literals
8370         * sim/ucsim/globals.cc: converted multi-line string literals
8371         * src/SDCCmain.c: introduced signal handler to remove temp files
8372         * doc/Makefile: small tweaks, implement clean
8373         * doc: removed generated files
8374
8375 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8376
8377         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8378         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8379         Address Record is not correctly generated for DS390."
8380
8381 2003-02-02  Borut Razem <borut.razem AT siol.net>
8382
8383         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8384         * as/mcs51/asm.h: fixed compilation with Borland C
8385         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8386         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8387         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8388         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8389         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8390         src/z80/Makefile.bcc: delete $(LIB) only if exist
8391         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8392
8393 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * device/include/malloc.h: introduced NULL
8396         * device/include/string.h: introduced NULL
8397         * device/include/stdlib.h: introduced NULL
8398         * device/lib/_memcpy.c: removed NULL
8399         * device/lib/_strcat.c: removed NULL
8400         * device/lib/_strchr.c: removed NULL
8401         * device/lib/_strcmp.c: removed NULL
8402         * device/lib/_strcpy.c: removed NULL
8403         * device/lib/_strcspn.c: removed NULL
8404         * device/lib/_strlen.c: removed NULL
8405         * device/lib/_strncat.c: removed NULL
8406         * device/lib/_strncmp.c: removed NULL
8407         * device/lib/_strncpy.c: removed NULL
8408         * device/lib/_strpbrk.c: removed NULL
8409         * device/lib/_strrchr.c: removed NULL
8410         * device/lib/_strspn.c: removed NULL
8411         * device/lib/_strstr.c: removed NULL
8412         * device/lib/_strtok.c: removed NULL
8413         * device/lib/malloc.c: removed NULL, include own header
8414
8415 2003-02-02    <johan AT balder>
8416
8417         * 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
8418         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8419         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8420         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8421         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8422         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8423
8424 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8425
8426         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8427         area 'DATA'"
8428
8429 2003-02-01    <johan AT balder>
8430
8431         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8432
8433 2003-01-31    <johan AT CP255758-A>
8434
8435         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8436
8437 2003-01-30    <johan AT balder>
8438
8439         * src/SDCCBBlock.c: automatic bug detection
8440         * src/SDCCicode.c: automatic bug detection
8441
8442 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8443
8444         * src/SDCCglobl.h:   now --xram-size 0 works
8445         * src/SDCCmain.c:    now --xram-size 0 works
8446
8447 2003-01-29    <johan AT balder>
8448
8449         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8450
8451 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8452
8453         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8454         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8455         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8456         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8457         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8458         * src/SDCCmain.c:    Added options --xram-size and --code-size
8459
8460 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8461
8462         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8463         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8464
8465 2003-01-27    <johan AT balder>
8466
8467         * src/SDCC.y: fixed bug #613764
8468
8469 2003-01-26    <johan AT balder>
8470
8471         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8472         * src/SDCCsymt.h: fixed bug #673374
8473         * src/SDCCglue.c: fixed bug #661910
8474         * src/SDCCast.c: fixed bug #458099 and 673374
8475
8476 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8479         * as/mcs51/strcmpi.h: added
8480         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8481         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8482         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8483         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8484         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8485         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8486         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8487         * as/mcs51/Makefile.aslink: new module strcmpi
8488         * as/mcs51/Makefile.asx8051: new module strcmpi
8489         * as/mcs51/Makefil.bcc: new module strcmpi
8490         * as/mcs51/Makefile.in: new module strcmpi
8491         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8492
8493 2003-01-26    <johan AT balder>
8494
8495         * src/SDCCglue.c: reverted back to 1.124
8496         * src/SDCCast.c: reverted back to 1.156
8497         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8498
8499 2003-01-25    <johan AT balder>
8500
8501         * src/SDCCglue.c: A better fix for bug #661910
8502         * src/SDCCast.c: A better fix for bug #661910
8503         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8504
8505 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8506
8507         * src/Makefile.in: remove spawn.o
8508         * src/SDCCmain.c: remove spawn.h
8509         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8510         * src/spawn.c: removed
8511         * src/spawn.h: removed
8512         * support/regression/ports/ds390/spec.mk: link with -r
8513
8514 2003-01-24    <johan AT CP255758-A>
8515
8516         * src/ds390/gen.c (aopOp): fixed bug #667458
8517         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8518         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8519         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8520
8521 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8522
8523         * src/mcs51/peeph.def: better assembler identation by Frieder
8524         * src/mcs51/gen.c: better assembler identation by Frieder
8525
8526 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8527
8528         * as/z80/string.h: removed for gcc 3.2
8529         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8530         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8531
8532 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8535         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8536         * support/regression/Makefile: separate temp files for ports
8537         * support/regression/generate-cases.py: separate temp files for ports
8538         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8539         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8540
8541 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8542
8543         * moved tinitalk to device/examples/ds390
8544
8545 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8546
8547         * as/mcs51/lkmem.c: rflag is for DS390
8548         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8549         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8550                          (linkEdit): move mem- and map-files the same way as ihx-files
8551         * src/z80/main.c (_setDefaultOptions): removed --generic
8552         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8553         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8554         * src/pic/glue.c (picglue): --c1mode works again
8555         * src/pic16/glue.c (pic16glue): --c1mode works again
8556         * src/asm.c (printCLine): fix #660034
8557
8558 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8559
8560         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8561         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8562         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8563         * as/mcs51/lkmem (summary): better fix for sp problem
8564         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8565         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8566         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8567                                               remove --stack-after-data
8568
8569 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8570
8571         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8572         * src/SDCCutil.c (join): ugly bug: missing '\0'
8573         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8574
8575 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8578         * src/port.h: typo
8579         * src/pic/main.c (_asmCmd): gpasm supports -o
8580         * src/z80/main.c: more general macros
8581         * device/lib/Makefile.in: remove intermediate files
8582
8583 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8584
8585         * .version: Bumped version number to 2.3.3
8586         * src/SDCCBBlock.c: new option -o
8587         * src/SDCCglobl.h: new option -o
8588         * src/SDCCglue.c: new option -o
8589         * src/SDCCmain.c: new option -o
8590         * src/asm.c: new option -o
8591         * src/ds390/main.c: new option -o
8592         * src/pic/glue.c: new option -o
8593         * src/pic/pcode.c: new option -o
8594         * src/pic/ralloc.c: new option -o
8595         * src/pic16/glue.c: new option -o
8596         * src/pic16/pcode.c: new option -o
8597         * src/pic16/ralloc.c: new option -o
8598         * src/z80/main.c: new option -o
8599         * device/lib/Makefile.in: use -o
8600         * support/regression/ports/ds390/spec.mk: use -o
8601         * support/regression/ports/gbz80/spec.mk: use -o
8602         * support/regression/ports/mcs51/spec.mk: use -o
8603         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8604         * support/regression/ports/z80/spec.mk: use -o
8605         * support/regression/ports/ucz80/spec.mk: use -o
8606         * support/regression/ports/xa51/spec.mk: use -o
8607         * support/regression/fwk/lib/timeout.c: fix usage string
8608
8609 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8610         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8611
8612 2003-01-07    <johan AT balder>
8613
8614         * src/SDCCast.c (decorateType): fixed bug #600035
8615
8616 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8617         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8618         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8619         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8620         * src/pic/pcode.c: outcommented unused variable to remove warnings
8621         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8622
8623 2003-01-06    <karl AT turbobit.com>
8624         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8625    regression tests.
8626
8627 2003-01-06    <johan AT balder>
8628
8629         * src/SDCCicode.c: fixed array add
8630
8631 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8632         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8633         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8634
8635 2003-01-04    <johan AT balder>
8636
8637         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8638
8639 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8640         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8641
8642 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8643         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8644         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8645
8646 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8647         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8648
8649 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8650         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8651
8652 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8653         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8654
8655 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8656
8657     * in \sdcc\as\mcs51\ changed these files in order to create an
8658     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8659     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8660     following files to include the previous two files: aslink.dsp,
8661     Makefile.aslink, Makefile.bcc, and Makefile.in.
8662
8663     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8664     .adb instead of .cdb
8665
8666 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8667
8668         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8669         value from option --iram-size.
8670
8671 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8672
8673         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8674         dram[] array.
8675
8676 2002-09-18    <wiml AT hhhh.org>
8677
8678         * SDCClrange.h: exposed setFromRange() and setToRange()
8679         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8680           packRegsForAccUse() (bug 542397)
8681         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8682           multiple times and emitting the fetch operations more than once
8683           added aopGetUsesAcc() function to allow binary operators to
8684           fetch their operands in the correct order; made genMinus() emit
8685           compact code for X = LITERAL - Y
8686
8687 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8688         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8689         sprintf() in line 1267.
8690
8691 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8692         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8693         like ports.
8694
8695 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8696         Changes to aslink (All the changes are marked with 'JCF'):
8697
8698         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8699         summary().
8700
8701         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8702         area BSEG.  Also moves, if possible, the DATA area down into the internal
8703         ram so more space is available.
8704
8705         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8706         sflag.
8707
8708         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8709         not bytes.  Function summary() which creates a memory usage summary
8710         file with extension .mem.  Reports of overlaping stack and small stack
8711         size.  If the space for the stack is less than 16 bytes aslink trows a
8712         warning.
8713
8714         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8715         the 8051.  Option 'y' for memory summary output file.
8716
8717         Changes to sdcc (All the changes are marked with 'JCF'):
8718
8719         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8720
8721         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8722         overlaying area for it (uses RegBankUsed[4]).
8723
8724         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8725         bank zero as used by default.  By default aslink locates the stack
8726         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8727         the creation of the .mem file.  Delegates the allocation of data area
8728         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8729         the begining of the stack area to aslink.
8730
8731         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8732         glue() in SDCCglue.c creates an area for it.
8733
8734 2002-09-03  Borut Razem <borut.razem AT siol.net>
8735         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8736         sdcc/src/pic/glue.c:
8737         introduced atexit() handler for teporay files removal in case of
8738         errors, assertions, ...
8739
8740 2002-08-29  Borut Razem <borut.razem AT siol.net>
8741         * sdcc/support/cpp2/auto-host_vc_in.h:
8742         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8743         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8744         Maybe there is a similar problem with BORLANDC? It should be checked!
8745
8746         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8747         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8748         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8749         was not executed, and the compiler (cl) launched a warning:
8750         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8751
8752 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8753         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8754
8755 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8756         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8757
8758         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8759           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8760           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8761           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8762           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8763           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8764           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8765         - added Release configuration in VS projects
8766         - review of compiler an linker options
8767         - VC .exe files are generated in bin_vc directory, not to interfere
8768           with binaries generated from other projects (cygwin, mingw, bcc ...)
8769
8770         * sdcc/src/yacc.dsp: added
8771
8772         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8773         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8774         and insert the version number definitions from .version
8775
8776         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8777
8778         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8779         added - genarate auto-host.h using auto-host_vc_in.h as template
8780
8781         * sdcc/sdcc_vc.h,
8782         removed from CVS, generated automatically
8783
8784 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8785         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8786
8787 2002-08-11  Borut Razem <borut.razem AT siol.net>
8788         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8789
8790 2002-08-10  Borut Razem <borut.razem AT siol.net>
8791         * src/SDCCmain.c (main):
8792         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8793         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8794         The consequence was that some temporary files were not removed.
8795
8796         * src/SDCCglue.c:
8797         unification of code in functions tempfilename() and tempfile():
8798         function tempnam() is defined in Visual Studio 6.0 and .NET
8799
8800         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8801
8802         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8803           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8804         - removed compiler command line option /WX: Treats all warnings as errors
8805         - update a list of source files, included into the project
8806
8807         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8808           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8809         changed project type to Generic Project so that can be correcly converted to VS.NET project
8810
8811         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8812
8813         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8814
8815         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8816
8817         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8818         added return 0 statements after assert() to make compiler happy
8819
8820         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8821         added newline in the def file to keep MSC compiler satisfied
8822
8823         * sdcc/src/z80/gen.c:
8824         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8825           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8826         - solved MSC error in function aopDump()
8827
8828         * sdcc_vc.h: define PREFIX as "\\sdcc"
8829
8830 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8831         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8832
8833 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8834         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8835         - Rewrote the register banking algorithm.
8836         - Added pCode live-range analysis to registers (for now, only non-used and
8837         singly-used registers optimized away)
8838
8839         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8840
8841         * 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.
8842
8843 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8844         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8845
8846 2002-04-22  Michael Hope  <michaelh AT vroom>
8847
8848         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8849
8850         * configure.in (DD_COPT): Added include support required for gbdk.
8851
8852         * .version: Bumped version number just to increase it.
8853
8854         * src/SDCCmain.c: Added -nostdinc to the default options.
8855
8856 2002-04-15  Michael Hope  <michaelh AT vroom>
8857
8858         * device/lib/z80/printf.c (sprintf): Added.
8859
8860         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8861
8862         * src/z80/peeph.def: Added transpose redundent load rule.
8863
8864         * src/z80/main.c: Added force callee saves for jaune.
8865
8866         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8867
8868         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8869
8870 2002-03-28  Johan Knol  <johan AT balder>
8871
8872         * src/SDCCval.c: fixed bug #532436
8873
8874 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8875         * /src/port.h:
8876         Added "char *Processor" field to the port structure.
8877
8878         * /src/SDCCmain.c:
8879         Added -p option. Allows port dependent processor to be specified.
8880
8881         * all ports:
8882         Initialized the new field char *Processor field to NULL in all ports
8883
8884         * /src/pic/*:
8885         Compiler generated registers for interrupt context saving
8886         were not getting allocated.
8887
8888 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8889
8890         * /src/SDCCast.c:
8891         Fixed left shift. Will promote the left side of a left shift
8892         if a) left shifting more than size of operand or b) when assigned
8893         to something size > size of left side
8894
8895 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8896         * src/pic/*
8897         tons of changes. Register allocation has been
8898         rewritten. Added customization for the various PICs. Flow
8899         analysis is restructured. ...
8900
8901         * src/pic/device.h:
8902         Added
8903
8904         * src/pic/device.c:
8905         Added. device.c is a PIC port hack to accomodate variations
8906         in PIC devices.
8907
8908 2002-03-13  Michael Hope  <michaelh AT vroom>
8909
8910         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8911
8912 2002-03-04  johanknol  <johanknol AT manik>
8913
8914         * /src/SDCCval.c: fixed
8915
8916         const unsigned char arr[][2] = { { 0, 1 } };
8917         t18.c:1: error: Initializer element is not constant
8918
8919 2002-03-04  bela  <bela AT manik>
8920
8921         * /device/include/mcs51reg.h:
8922         ds89c420 register definition update
8923
8924 2002-03-03    <johan AT FRIJA>
8925
8926         * support/Util/SDCCerr.c: did something, but don't no why anymore
8927
8928         * support/regression/tests/bug-524691.c: made it a little less shy
8929
8930         * src/SDCCast.c (decorateType): fixed bug #524697
8931
8932         * src/SDCCast.c: made some lineno improvements
8933
8934         * src/SDCCval.c (getNelements): changed warning to error
8935
8936         * src/SDCCglue.c (printIvalArray): changed warning to error
8937
8938         * src/SDCCicode.c: fixed a warning for mingw
8939
8940         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8941
8942         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8943
8944 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8945
8946         * src/ds390/peeph.def:
8947         Added some more peephole rules
8948
8949         * src/ds390/gen.c: Various fixes & enhancements
8950
8951         * src/SDCClrange.c, src/SDCClrange.h:
8952         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8953
8954         * src/ds390/ralloc.c:
8955         various fixes & enhancements (ds390) specific
8956
8957         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8958         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8959         from rallocs.
8960
8961         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8962
8963 2002-03-02    <johan AT FRIJA>
8964
8965         * src/SDCCast.c (decorateType): fixed bug #524708
8966
8967         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8968
8969         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8970
8971 2002-03-01  Michael Hope  <michaelh AT vroom>
8972
8973         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8974
8975         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8976
8977 2002-03-01    <johan AT FRIJA>
8978
8979         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8980
8981         * src/SDCCast.c (decorateType): fixed bug #524209
8982
8983         * src/SDCCval.c (valNot): fixed bug #524195
8984
8985 2002-02-26    <johan AT balder>
8986
8987         * src/xa51/gen.c: fixed a warning
8988
8989         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8990
8991         * src/SDCCast.c (decorateType): fixed bug #522534
8992
8993 2002-02-23    <johan AT balder>
8994
8995         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8996
8997 2002-02-22    <johan AT balder>
8998
8999         * src/SDCCast.c: fixed bug #514865
9000
9001         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9002
9003 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9004
9005         * sdcc/src/SDCCloop.c:
9006         Previous fix was not good. basic blocks that have "break" or "return" are
9007         not really partof a loop , but live ranges used in these blocks should
9008         be live thru the entire loop, so set partOfLoop but don't add them to
9009         loop region
9010
9011 2002-02-21    <johan AT FRIJA>
9012
9013         * src/SDCCcse.c: fixed bug #514308
9014
9015 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9016
9017         * src/SDCCloop.c:
9018         Fixed BUG #519583. If a conditional block ended in a return/break
9019         statement inside a loop, it was not being considered part of the loop.
9020
9021         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9022
9023 2002-02-10  Karl Bongers <karl AT turbobit.com>
9024
9025         * debugger/*:
9026         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9027         with lots of comments and notes.
9028
9029         * device/examples/test2.c:
9030         Fix bug, "red" variable not being initialized(compiler complained).
9031
9032         * device/examples/Makefile, examples/test3.c:
9033         Add Makefile in device/examples folder, compiles test3.c
9034         for use as a multiple module SDCDB test case.
9035
9036         * sim/ucsim/cmd.src/cmdset.cc:
9037         Took out debug printfs in ucsim "next" command.
9038
9039         * sim/ucsim/xa.src:
9040         Karl and Johan start ucsim XA support.  Most dissassembly working,
9041         about 75% emulation done(plenty of work remaining).
9042
9043         * sim/ucsim/z80.src:
9044         Add Z80 support to ucsim, add test-ucz80 regression test,
9045         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9046         Notice z80 compiler fails on examples/test3.c/crc code.
9047
9048 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9049
9050         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9051         Added support for --parms-in-bank1
9052
9053         * src/ds390/peeph.def:
9054         added a few more peephole optimzations
9055
9056         * src/ds390/main.c:
9057         1) added __builtin_inp & __builtin_outp used to read in data of given length
9058            from a memory mapped port
9059         2) added __builtin_memcmp
9060         3) added __builtin_swapw swap bytes of a short
9061
9062         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9063         1) handle multiple send & receives from register bank1
9064         2) ralloc can now allocate DPTR1 to some liveRanges
9065
9066         * src/SDCCsymt.c, src/SDCCsymt.h:
9067         changes to handle multiple sends & receives
9068
9069         * src/SDCCptropt.h:
9070         added some pointer arithmetic optimization
9071
9072         * src/SDCCptropt.c:
9073         added some pointer arithmetic optimizations but not stable yet so not
9074         called from anywhere (will get this working shortly)
9075
9076         * src/SDCCopt.c: fixed for multiple sends & receives
9077
9078         * src/SDCCmain.c:
9079         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9080         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9081            set preprocessor defines (depending on options)
9082
9083         * src/SDCCicode.c, src/SDCCicode.h:
9084         changes made to handle multiple sends & receives
9085
9086         * src/SDCCglobl.h:
9087         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9088
9089         * src/SDCCcse.c, src/SDCCcse.h:
9090         added function findbackward def (to be used in upcoming optimization)
9091
9092         * src/SDCCcflow.c, src/SDCCcflow.h:
9093         added function returnAtEnd - to determine if a basic block terminates with
9094         a RETURN iCode
9095
9096         * src/SDCCast.c, src/SDCCast.h:
9097         added option parms-in-bank1
9098
9099         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9100         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9101         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9102         adjusted for --parms-in-bank1 option
9103
9104         * device/include/string.h:
9105         donot redefine "reentrant" keyword
9106
9107         * device/include/ds80c390.h: Added some more SFRs
9108
9109 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9110
9111         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9112
9113 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9114
9115         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9116
9117 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9118
9119         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9120
9121 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9122
9123         * Added --xram-movc option
9124
9125 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9126
9127         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9128
9129 2002-01-11  Johan Knol
9130
9131         * Added math lib of Jesus Calvino-Fraga
9132
9133 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9134
9135         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9136         * support/regression/Makefile: new target test-mcs51-stack-auto
9137         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9138
9139 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9140
9141         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9142
9143 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9144
9145         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9146
9147 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9148
9149         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9150
9151         * src/SDCCglue.h: add definition for printIvalChar()
9152
9153 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9154
9155         * src/SDCCast.c: fix #498138 by Johan
9156
9157         * src/SDCCglue.c: fix #498138 by Johan
9158
9159 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9160
9161         * support/regression/Makefile: fix clean
9162
9163         * support/regression/ports/ds390/support.c: fix transmission of last character
9164
9165 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9166
9167         * /sdcc/src/ds390/gen.c:
9168         a) improved computing address of stack variable
9169         b) took out some #if 0 code
9170         c) improved parmBytes adjustment
9171         d) improved genPlusIncr & genMinusIncr
9172         e) genCmp could generate bad code (when left assigned to DPTR)
9173         f) Fixed bug in hasInc
9174
9175         * /sdcc/src/ds390/ralloc.c:
9176         a) packRegsForSupport could mess up live information (Fixed)
9177         b) packRegsDPTRuse could be incorrect for left & right shift
9178
9179         * /sdcc/src/mcs51/ralloc.c:
9180         packRegsForSupport could mess up the live information (Fixed)
9181
9182         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9183
9184         * /sdcc/src/SDCCast.c:
9185         can reverse a loop even if function call is present as long
9186         as the loop control variable is local & is not passed as parameter
9187
9188 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9189
9190         * /sdcc/ChangeLog: *** empty log message ***
9191
9192         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9193         More builtin function additions for TININative
9194
9195         * /sdcc/src/ds390/ralloc.c:
9196         Had broken the regression testsuite
9197
9198         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9199
9200         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9201         Added funcattr hasStackParms will be set for reentrant functions when there
9202         are paramteres on the stack, this helps in minimizing frame pointer generation
9203         typeFromStr can handle function pointers now
9204
9205         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9206         *** empty log message ***
9207
9208 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9209
9210         * /src/ds390/gen.c, /src/ds390/main.c:
9211         More builtin function additions for TININative
9212
9213         * /src/ds390/ralloc.c:
9214         Had broken the regression testsuite
9215
9216         * /src/SDCCast.c: Fixed a bug in dumptree
9217
9218         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9219         Added funcattr hasStackParms will be set for reentrant functions when there
9220         are paramteres on the stack, this helps in minimizing frame pointer generation
9221         typeFromStr can handle function pointers now
9222
9223         * /doc/builtins.txt, /doc/TININative.txt:
9224         *** empty log message ***
9225
9226
9227 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9228
9229         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9230         ALPHA version for -mTININative
9231
9232         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9233         updated to reflect changes in the port structure
9234
9235         * /src/port.h:
9236         added function do_assemble (similar to do_link) if non-null this function
9237         will be called to do assembly (-mTININative) requires a multi command
9238         assembly
9239         added function genAssemblerEnd will be called to generate assembler Epilogue
9240
9241         * /src/SDCCsymt.c:
9242         added _JavaNative to debug info printing
9243
9244         * /src/SDCCmain.c: added option --tini-libid
9245         added port->do_assemble function (-mTININative) has a multi command assemble
9246
9247         * /src/SDCCglue.c: Disabled "constExpr" check
9248         added port->genAssemblerEnd function
9249
9250         * /src/SDCCglobl.h: Added option --tini-libid value
9251
9252         * /src/SDCCast.h:
9253         tookout optimizeCompare from the header (has no external references)
9254
9255         * /src/SDCCast.c: made one more function "static"
9256
9257 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9258
9259         * src/z80/mappings.i: Added z80asm support.
9260
9261         * src/z80/main.c: Added z80asm support on --asm=z80asm
9262
9263         * src/z80/gen.c: Fixed asm portability issues.
9264
9265         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9266
9267         * src/SDCCglue.c (printExterns): Added global/extern split.
9268
9269 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9270
9271         * support/regression/Makefile: added test for mcs51 model large
9272
9273         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9274
9275         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9276
9277 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9278
9279         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9280
9281 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9282
9283         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9284
9285         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9286
9287 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9288
9289         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9290
9291         * support/regression/tests/simplefloat.c: Port to mcs51.
9292
9293 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9294         * support/regression/tests/bug-485362.c: Added.
9295
9296         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9297
9298         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9299
9300         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9301
9302         * src/z80/gen.c (aopDump): Added a dump function.
9303
9304 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9305         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9306
9307         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9308
9309         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9310
9311         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9312
9313         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9314
9315         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9316
9317         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9318
9319         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9320
9321         * support/regression/ports/ds390/support.c: Use tinibios.
9322
9323         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9324
9325 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9326
9327         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9328         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9329
9330         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9331
9332         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9333
9334 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9335
9336         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9337
9338         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9339         (packRegsForIYUse): Created and optimised.
9340
9341 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9342
9343         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9344 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9345
9346         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9347
9348         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9349
9350         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9351
9352 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9353
9354         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9355
9356         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9357
9358 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9359
9360         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9361
9362         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9363
9364         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9365
9366 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9367
9368         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9369         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9370         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9371
9372         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9373
9374         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9375         (genNotFloat): Added.
9376         (genUminusFloat): Added.
9377
9378         * device/lib/z80/Makefile: Added floating pt stubs.
9379
9380         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9381
9382         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9383
9384         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9385
9386 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9387
9388         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9389
9390         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9391
9392         * sdcc/support/regression/Makefile: Add port ds390.
9393
9394         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9395
9396         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9397
9398         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9399
9400         * sdcc/support/regression/ports/ds390/support.c: Added.
9401
9402         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9403
9404         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9405
9406         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9407
9408 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9409
9410         * device/include/malloc.h: Added z80 and gbz80 support.
9411
9412         * device/lib/gbz80/heap.s: Added.
9413
9414         * device/lib/z80/heap.s: Added.
9415
9416         * device/lib/malloc.c: Added z80 and gbz80 support.
9417
9418         * support/regression/tests/malloc.c (testMalloc): Added.
9419
9420         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9421
9422         * support/regression/tests/bug-478094.c: Added.
9423
9424         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9425
9426 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9427
9428         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9429
9430         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9431
9432         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9433
9434         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9435
9436         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9437
9438 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9439
9440         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9441
9442 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9443
9444         * support/regression/tests/bug-477927.c: Added.
9445
9446         * src/z80/peeph.def: Added minor rules.
9447
9448         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9449
9450         * src/z80/peeph.def: Added jump optimisation modification.
9451
9452 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9453
9454         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9455
9456 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9457
9458         * support/regression/tests/funptrs.c: Added.
9459
9460 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9461
9462         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9463
9464 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9465
9466         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9467
9468         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9469
9470         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9471         (movLeft2ResultLong): Created.
9472
9473         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9474         (joinPushes): Added.  Joins two char pushes into a word push.
9475
9476 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9477
9478         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9479
9480         * support/makebin/Makefile (install): Added creation of dest dir.
9481
9482 2001-10-24 Karl Bongers <karl AT turbobit.com>
9483
9484         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9485
9486 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9487
9488         * src/z80/ralloc.c: Turned off faulty pack for one use.
9489
9490         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9491
9492         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9493
9494 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9495
9496         * support/regression/Makefile: Improved clean
9497
9498         * support/regression/ports/gbz80/spec.mk: Added clean
9499
9500         * support/regression/ports/host/spec.mk: Added clean
9501
9502         * support/regression/ports/z80/spec.mk: Added clean
9503
9504         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9505
9506         * support/regression/ports/mcs51/timeout.c: little improvements
9507
9508 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9509
9510         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9511
9512         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9513
9514         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9515
9516 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9517
9518         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9519
9520         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9521
9522 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9523         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9524
9525         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9526
9527         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9528
9529         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9530
9531         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9532
9533         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9534
9535         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9536
9537         * support/regression/tests/longor.c: Added.
9538
9539 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9540
9541         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9542
9543         * as/mcs51/aslink.h: define PATH_MAX
9544
9545         * as/mcs51/asm.h: define PATH_MAX
9546
9547         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9548
9549         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9550
9551         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9552
9553         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9554
9555         * src/SDCCglobl.h: define PATH_MAX
9556
9557         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9558
9559         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9560
9561 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9562
9563         * src/z80/gen.c (gencjneshort): Fixed
9564
9565         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9566
9567 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9568
9569         * support/regression/tests/bug-469671.c: Added.
9570
9571         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9572
9573 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9574
9575         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9576
9577         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9578
9579 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9580
9581         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9582
9583         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9584
9585         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9586
9587         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9588
9589         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9590
9591         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9592
9593         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9594
9595 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9596
9597         * 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.
9598
9599         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9600
9601         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9602
9603 2001-10-07    <johan AT FRIJA>
9604
9605         * device/lib/gets.c (gets): fixed the return value.
9606
9607 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9608         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9609
9610         * 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.
9611
9612         * 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.
9613
9614         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9615
9616         * src/pic/gen.c: Removed Safe_strdup.
9617
9618         * configure.in: Added option to enable libgc support.
9619
9620         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9621         (bitVectUnion): Optimised.
9622         (bitVectIntersect): Optimised.
9623         (bitVectBitsInCommon): Optimised.
9624         (bitVectCplAnd): Optimised.
9625
9626         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9627
9628 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9629
9630         * src/SDCCmain.c: distinguish between assembler debug and plain options
9631
9632         * src/avr/main.c:   remove standard assembler options
9633
9634         * src/ds390/main.c: remove standard assembler options
9635
9636         * src/mcs51/main.c: remove standard assembler options
9637
9638         * src/port.h: removed "PENDING" comment
9639
9640 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9641
9642         * src/device/lib/_mulint.c  : new, with assember functions
9643
9644         * src/device/lib/_mullong.c : new, with assember functions
9645
9646         * src/device/lib/_divuint.c : with assember functions
9647
9648         * src/device/lib/_divsint.c : with assember functions
9649
9650         * src/device/lib/_divulong.c: with assember functions
9651
9652         * src/device/lib/_divslong.c: with assember functions
9653
9654         * src/device/lib/_moduint.c : with assember functions
9655
9656         * src/device/lib/_modsint.c : with assember functions
9657
9658         * src/device/lib/_modulong.c: with assember functions
9659
9660         * src/device/lib/_modslong.c: with assember functions
9661
9662         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9663
9664         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9665
9666         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9667                                       replaced _mululong.c and _mulslong.c by _mullong.c
9668
9669 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9670
9671         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9672
9673 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9674
9675         * src/SDCCglue.c: test, if win32api is available for MINGW
9676
9677 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9678
9679         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9680         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9681         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9682         * support/regression/ports/host/spec.mk: removed GENERIC
9683         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9684         * support/regression/ports/z80/spec.mk: removed GENERIC
9685
9686 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9687
9688         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9689
9690         * support/regression/tests/bug-467035.c: Created.
9691
9692 2001-10-01    <johan AT FRIJA>
9693
9694         * src/SDCC.y: fixed bug #466586 part 1
9695
9696 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9697
9698         * SDCCicode.c: z80 has no generic pointers
9699         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9700
9701 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9702
9703         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9704
9705 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9706
9707         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9708
9709         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9710
9711 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9712
9713         * configure.in: Fixed up so that ucsim is only configured once.
9714
9715         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9716
9717         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9718         (getPathDifference): As above.
9719
9720         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9721
9722         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9723
9724 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9725         * .version: Updated to 2.3.1
9726
9727         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9728         Added copyright header.
9729
9730         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9731         (assemble): Added support for macro based assembler commands.
9732         (linkEdit): Added support for macro based linker commands.
9733         (preProcess): Changed the pre-processor to use macros.
9734         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9735         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9736
9737         * device/lib/z80/crt0.s: Added module name for debugging.
9738
9739 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9740
9741         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9742
9743         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9744
9745         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9746
9747         * src/Makefile.in: Added SDCCmacro and SDCCutil
9748
9749 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9750
9751         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9752
9753 2001-09-16    <johan AT FRIJA>
9754
9755         * 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.
9756
9757 2001-09-15    <johan AT FRIJA>
9758
9759         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9760         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9761
9762 2001-09-11    <johan AT FRIJA>
9763
9764         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9765
9766 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9767
9768         * support/regression/tests/bug-460444.c: Added test case.
9769
9770         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9771         (genCast): Added justification for all of the asserts.
9772
9773 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9774
9775         * support/regression/support.c: _xdata replaced by xdata
9776
9777         * support/regression/spec.mk: removed _generic
9778
9779 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9780
9781         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9782
9783         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9784         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9785
9786         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9787
9788         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9789
9790         * support/regression/tests/bug-460010.c: Added test case.
9791
9792         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9793
9794 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9795
9796         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9797
9798         * support/regression/testfwk.c: removed workaround for bug #436344
9799
9800         * support/regression/tests/bp.c: use less memory with mcs51
9801
9802         * support/regression/tests/bug-441448.c: use less memory
9803
9804         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9805
9806         * support/regression/collate-results.py: typo
9807
9808 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9809
9810         * support/regression/tests/fetchoverlap.c: Added new test case.
9811
9812         * support/regression/tests/bp.c: Added new test case.
9813
9814         * support/regression/tests/bug-448984.c: Added new test case.
9815
9816         * support/regression/tests/pow2shifts.c: Added new test case.
9817
9818         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9819         (genlshTwo): Fixed right shift for count > 8.
9820
9821         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9822
9823 2001-09-08    <johan AT FRIJA>
9824
9825         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9826
9827 2001-09-07    <johan AT FRIJA>
9828
9829         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9830
9831         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9832
9833 2001-09-06    <johan AT FRIJA>
9834
9835         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9836         * bernhard noted me at this: "() equals to (void)" (1.38)
9837
9838 2001-09-05    <johan AT FRIJA>
9839
9840         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9841
9842 2001-09-04    <johan AT FRIJA>
9843
9844         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9845
9846
9847 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9848
9849         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9850
9851 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9852
9853         * link/z80/aslink.h: Fixed path for PATH_MAX
9854
9855 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9856
9857         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9858
9859         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9860
9861         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9862
9863         * 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.
9864
9865 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9866
9867         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9868         (genCmp): Fixed up genCmp for the GB with longs.
9869
9870         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9871
9872         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9873
9874         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9875
9876         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9877
9878 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9879
9880         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9881
9882 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9883
9884         * 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.
9885
9886         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9887
9888 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9889
9890         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9891
9892         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9893
9894 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9895
9896   * sim/ucsim/configure:    little improvement of Cygwin-detection
9897   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9898   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9899   * support/regression/tests/bug-221100.c: small changes for mcs51
9900   * support/regression/tests/bug-221168.c: small changes for mcs51
9901   * support/regression/tests/bug-227710.c: small changes for mcs51
9902   * support/regression/tests/staticinit.c: small changes for mcs51
9903   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9904   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9905   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9906
9907 $Revision$