* src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction, carry must...
[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
8 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
9
10         * src/SDCCast.c (addCast): added promotion for bit variables
11         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
12         promotion casts + optimisation
13         (optimizeGetWord): fix warning 'i' might be used uninitialized
14         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
15         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
16
17 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
18
19         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
20         all chars are promoted to int; promotion should be handled in SDCCast.c
21
22 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
23
24         * device/lib/_strcmp.c: Fixed bug 1326457
25
26 2005-10-11 Raphael Neider <rneider AT web.de>
27
28         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
29         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
30
31 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
32
33         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
34         * support/regression/tests/sfr16.c: added test for the sfr32 bug
35
36 2005-10-04 Raphael Neider <rneider AT web.de>
37
38         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
39           device/lib/pic16/pics.all: added pic18f1320
40         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
41
42 2005-09-30 Raphael Neider <rneider AT web.de>
43
44         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
45         * src/pic16/devices.inc: NEW, provides device descriptions
46         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
47
48 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
49
50         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
51           GETHBIT
52
53 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
54
55         * doc/sdccman.lyx: updated Highest Order Bit documentation,
56           documented Any Order Bit, Higher Order Byte and Higher Order Word
57         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
58         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
59           (optimizeGetAbit): new, to get any bit, not only the high bit,
60           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
61           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
62           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
63           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
64             RIGHT_OP: also try GETBYTE, GETWORD optimization,
65             GETABIT, GETBYTE, GETWORD: decorate them,
66           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
67           (ast_print): added GETABIT, GETBYTE, GETWORD
68         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
69         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
70           (geniCodeBinary): new generic binary icode,
71           (ast2iCode): added GETABIT, GETBYTE, GETWORD
72         * src/port.h: updated comment for PORT.hasExtBitOp
73         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
74           (genGetByte): new, to get a single byte,
75           (genGetWord): new, to get a word from a long,
76           (gen51Code): added GETABIT, GETBYTE, GETWORD
77         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
78
79 2005-09-23 Raphael Neider <rneider AT web.de>
80
81         * configure.in, configure: have device/lib/pic configured
82         * device/lib/Makefile.in: added model-pic14
83         * device/lib/clean.mk: added pic/ to clean rule
84         * device/lib/pic: added rudimentary pic14 library providing support
85           functions for multiplication/division/generic pointer access
86         * src/SDCCopt.c (convilong): mark support functions as extern
87           for pic14 port as well
88         * src/pic/gen.c (genMult): added assertions,
89           (genpic14Code): emit warning on unhandled iCodes
90         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
91         * src/pic/pcode.c (pCodeOpCopy),
92         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
93           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
94           SFR_REGISTER}), made safe for future extensions
95         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
96           instructions even if preceeded by SKIP instructions (also remove
97           them); removed unused code
98         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
99           prevents leaving parts of the structure uninitialized after copying
100
101 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
102
103         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
104           ago by me
105         * support/regression/tests/addsub.c: added test for the bug
106
107 2005-09-21 Raphael Neider <rneider AT web.de>
108
109         * device/include/pic16/pic18f1220.h,
110           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
111         * device/lib/pic16/Makefile.rules: added missing opening paren
112         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
113           are provided in genutils.c,
114           (genUminusFloat,genUminus,genCmpEq): added asserts on different
115           operand/result sizes,
116           (genCmp): assert on NULL pointers first, then check deref'ed values
117         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
118           result size
119
120 2005-09-18 Raphael Neider <rneider AT web.de>
121
122         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
123           as these are now unused,
124           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
125         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
126           local, avoids uninitialized pointer dereference on r->name
127         * src/pic16/ralloc.c (newReg): fixed indentation
128
129 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
130
131         * src/SDCCval.c (constVal): fixed bug 730366
132         * support/Util/SDCCerr.c,
133         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
134
135 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
136
137         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
138
139 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
140
141         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
142
143 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
144
145         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
146           (hex2dec): made hex_digit unsigned char, removed ascii dependance
147         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
148           (hex2dec): made hex_digit unsigned char, removed ascii dependance
149         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
150         * packihx/packihx.c (hexDigit): made c unsigned char
151         * as/mcs51/lklibr.c (fndsym),
152         * link/z80/lkgb.c (gb),
153         * link/z80/lklibr.c (fndsym),
154         * link/z80/lkrloc.c (relr),
155         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
156         * src/SDCC.lex (checkCurrFile, process_pragma),
157         * src/SDCCglue.c (spacesToUnderscores),
158         * src/SDCCmain.c (setParseWithComma, processFile),
159         * src/asm.c (tvsprintf, printCLine),
160         * src/avr/gen.c (emitcode, aopPut),
161         * src/ds390/gen.c (emitcode),
162         * src/hc08/gen.c (emitcode, emitinline),
163         * src/mcs51/gen.c (emitcode, genInline),
164         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
165           tokenizeLineNode),
166         * src/pic/ralloc.c (debugLog),
167         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
168           tokenizeLineNode),
169         * src/pic16/ralloc.c (debugLog),
170         * src/z80/main.c (_process_pragma):
171            made all ctype.h function calls safe
172         * src/SDCCopt.c: include math.h for fabs
173         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
174           and used them throughout the code to make ctype.h function calls safe
175         * src/ds390/main.c (asmLineNodeFromLineNode),
176         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
177         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
178            unsigned char*
179         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
180           (newpCodeAsmDir): made ctype.h function calls safe
181         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
182           pic16_emitcode):  made lbp unsigned char*
183         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
184           (pic16_newpCodeAsmDir): made ctype.h function calls safe
185         * src/xa51/gen.c (emitcode),
186         * src/z80/gen.c (_emit2): made lbp unsigned char*
187         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
188            char*
189
190 2005-09-05 Raphael Neider <rneider AT web.de>
191
192         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
193           access bank splitpoint
194
195 2005-09-05 Raphael Neider <rneider AT web.de>
196
197         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
198
199 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
200
201         * .version: changed to version 2.5.3
202         * doc/sdccman.lyx: changed version to 2.5.3,
203           documented --codeseg and --constseg and pragma codeseg and constseg,
204           documented bit parameters (reentrant) and bit returning
205         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
206            currFunc->recvSize, but is this ok for all ports?
207           (ast2iCode): result of ~ on unsigned char must be cast to int for
208            bool to work
209         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
210           function pointers in bit space
211         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
212           (processFuncArgs): call port.reg_parm() with reentrancy info
213         * src/port.h,
214         * src/avr/main.c,
215         * src/ds390/main.c,
216         * src/hc08/main.c,
217         * src/pic/main.c,
218         * src/pic16/main.c,
219         * src/xa51/main.c,
220         * src/z80/main.c: port.reg_parm prototype extended with
221           "bool reentrant" parameter
222         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
223           options.stackAuto for allocating bit register parameters
224         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
225           (genSend): set BitBankUsed if it is,
226           (selectRegBank): factored out of genCall for use in genPcall,
227           (genCall): removed redundant dtype assignmen, use selectRegBank,
228           (genPcall): handle returning in Carry properly, save in F0 if needed,
229           (genReceive): handle bit register parameters
230         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
231           (mcs51_assignRegisters): enable bit registers for all reentrant
232            functions and don't set BitBankUsed unconditionally
233         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
234         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
235         * support/regression/tests/funptrs.c: added tests for BOOL and for return
236
237 2005-08-27 Borut Razem <borut.razem AT siol.net>
238
239         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
240         ppc-osx (Darwin) does not support -u option. It seems that it is
241         supported only on Linux - GNU cp
242
243 2005-08-25 Borut Razem <borut.razem AT siol.net>
244
245         * sim/ucsim/gui.src/serio.src/Makefile.in,
246           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
247           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
248           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
249           install and strip, since the strip at /usr/ccs/bin should be used
250           on solaris
251
252 2005-08-24 Borut Razem <borut.razem AT siol.net>
253
254         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
255
256 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
257
258         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
259         ffffffffu
260
261 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
262
263         * as/mcs51/aslink.h: completed lkrloc.c prototypes
264         * as/mcs51/lkmain.c (link_main): fixed warning
265         * device/include/stdbool.h: ds390 has no advanced bit support yet
266         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
267         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
268         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
269           and updated their macros
270         * src/SDCCval.c (constVal): updated comment for renamed b_long
271
272 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
273
274         * as/mcs51/asdata.c: changed ctype['['] to BINOP
275         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
276           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
277           (oprio): set priority for '['
278         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
279            and adb_24_bit
280         * as/mcs51/asm.h: added defines R_BIT and S_BIT
281         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
282         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
283         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
284           added overlayable BIT_BANK area
285         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
286           (summary2): explain 'T' in legenda
287         * as/mcs51/lkrloc.c: replaced old K&R style,
288           (relr): added R_BIT processing,
289           (errmsg): added "Bit-addressable relocation error",
290           (adb_bit): added for converting from byte- to bit-addressable space,
291           (adb_24_bit): added for converting from byte- to bit-addressable space
292         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
293            used in reentrant functions now even as return value
294         * device/lib/_gptrput.c (_gptrput): removed obsolete code
295         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
296           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
297         * src/SDCCglobl.h: added indicator BitBankUsed
298         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
299            the bit registers b0-b7
300         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
301           (geniCodeCast): fixed bug 1263853,
302           (geniCodeLogicAndOr): put result in bool or char,
303           (geniCodeReceive): added parameter func for accessing the return type,
304           (geniCodeFunctionBody): pass func to geniCodeReceive
305         * src/SDCCmain.c: added indicator BitBankUsed
306         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
307         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
308           (checkSClass): don't put automatic bool/bit on stack,
309           (checkFunction): removed check on function cannot return bit
310         * src/SDCCsymt.h: added newBoolLink prototype
311         * src/mcs51/gen.c (rb1regs): added bit registers,
312           (movc): created for assigning to carry,
313           (pushReg, popReg): created for pushing registers,
314           (sameRegs): check both AOP_REG and AOP_CRY types,
315           (aopOp): handle bit registers,
316           (aopPut): optimization no self-assign,
317           (saveRegisters): push reg->base (bits) only once for bit registers,
318            and use pushReg,
319           (unsaveRegisters): pop reg->base only once and use popReg,
320           (assignResultValue): added parameter func and return in carry for bits,
321           (genIpush): optimization no reload in A if not changed,
322           (genSend): bit parameters in reentrant functions are passed in bit
323            registers by first assigning to bits in B, then save registers and
324            copy B to bits,
325           (genCall): handle returning in Carry properly, save it in F0 if needed,
326           (genPcall): updated assignResultValue call, this is not safe yet for bit
327            returning function !!!
328           (genFunction): don't generate equ's for bit registers and use pushReg,
329           (genEndFunction): take care of bit returning functions and use popReg,
330           (genRet): return bit in Carry,
331           (genIfx): optimize bit registers and other directly addressable bits,
332           (genReceive): updated assignResultValue call
333         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
334           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
335            registers when using stack-auto
336         * src/mcs51/ralloc.c (_G): added allBitregs,
337           (regs8051): added the bit registers,
338           (createStackSpil): use macro IS_BIT,
339           (getRegBit): added to allocate a bit register, else spill,
340           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
341           (updateRegUsage): factored out to ease stepping while debugging,
342           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
343            also allocate bit registers,
344           (fillGaps): handle bit registers,
345           (findAllBitregs): added to create bit vector with all bit registers,
346           (mcs51_allBitregs): returns this bit vector,
347           (mcs51_assignRegisters): when using stack-auto use bit registers for
348            passing parameters and creating local variables
349         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
350
351 2005-08-22 Borut Razem <borut.razem AT siol.net>
352
353         * device/lib/Makefile.in: replaced find option -or with -o
354           to make it run on solaris
355
356 2005-08-22 Raphael Neider <rneider AT web.de>
357
358         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
359           fixes #1265442 (crash on Solaris)
360
361 2005-08-20 Borut Razem <borut.razem AT siol.net>
362
363         * configure, configure.in: added tests for libsocket and libnsl libraries,
364           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
365           from support/regression/Makefile.in
366         * support/regression/Makefile.in: added
367         * device/lib/pic16/Makefile.common.in: force make to use bash shell
368         * sim/ucsim/libtool: regenerated on sparc-solaris
369         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
370           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
371           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
372           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
373           sparc-solaris, which doesn't use GNU ld linker
374         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
375         * as/Makefile: find on sparc-solaris does not support -maxdepth option
376
377 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
378
379         * src/mcs51/peeph.def: updated comments
380
381 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
382
383         * device/lib/_gptrget.c,
384         * device/lib/_gptrput.c: slightly shorter
385         * doc/sdccman.lyx: incremented version
386         * src/mcs51/peeph.def: moved peephole comments to the line of first
387           change to better keep line correlation, reanimated 186.e
388         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
389
390 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
391
392         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
393           David Saxton with quotes around file name.
394
395 2005-08-15 Borut Razem <borut.razem AT siol.net>
396
397         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
398           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
399           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
400           make tests run on x86_64 platform
401
402 2005-08-13 Raphael Neider <rneider AT web.de>
403
404         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
405           as it might be executed DURING a build (parallel make is wonderful)
406
407 2005-08-13 Raphael Neider <rneider AT web.de>
408
409         * device/lib/Makefile.in (port-specific-objects-pic16):
410           revert to cp $(PORT)/bin/*.* $(PORTDIR)
411         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
412           dependency
413         * device/lib/pic16/Makefile.rules: build subdirs before creating
414           the library, removed builddir rule, create $(builddir) early in
415           recurse rule, use empty recurse rule for leaf directories
416         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
417           mkdir errors (race condition), removed duplicate suffix "hex"
418           from clean rules
419         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
420         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
421           prevents mkdir -p from aborting on Alpha
422
423 2005-08-12 Raphael Neider <rneider AT web.de>
424
425         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
426           db-statements in order to allow for arrays of pointers in code
427           sections to be placed without interspersed 0-padding, fixes
428           bug #1256215
429         * (emitStatistics): fixed division by zero for pic18f1220
430         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
431           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
432         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
433         * (pic16_pCodeConstString): keep track of already emitted string
434           literals to prevent "duplicate definitions of symbol _str_NR"
435         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
436           debug message
437         * device/lib/Makefile.in: ignore failing PIC16 library builds
438         * device/lib/pic16/Makefile: do not build if gputils are missing
439         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
440
441 2005-08-10 Raphael Neider <rneider AT web.de>
442
443         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
444           my last commit)
445
446 2005-08-10 Raphael Neider <rneider AT web.de>
447
448         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
449           Rokas' patch to add the new fixed point type "__fixed16x16"
450         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
451           functions for __fixed16x16 arithmetics
452         * device/lib/pic16: reimplemented the build system to support
453           a separate build directory, better handling of libio (create
454           the library in a separate subdir for each architecture) and
455           easier configuration (centralized in Makefile.common)
456
457 2005-08-07 Raphael Neider <rneider AT web.de>
458
459         * src/pic16/gen.c (genrshTwo): fixed sign extension
460         * src/pic16/device.c: added pic18f2320, 4220 and 4320
461         * device/include/pic16/pic18f2220.h: changed some bit definitions,
462           added T0CONbits
463         * device/include/pic16/pic18f4220.h: NEW, header for
464           pic18f4220 and pic18f4320
465         * device/include/pic16/pic18fregs.h: added new devices,
466           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
467         * device/include/pic16/signal.h: resolved name clashes
468           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
469           to also allow testing for interrupt enable bits, added
470           comments on how to use the macros
471         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
472         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
473           register definitions for the devices
474         * device/lib/pic16/pics.all: added new devices
475         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
476           allocated memory
477         * device/lib/pic16/libc/stdlib/memfree: do not count
478           the block header as free memory
479         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
480           simplified and added missing end-of-blocklist-marker
481           (reported by Peter Onion, fixes #1252814)
482         * (_mergeHeapBlock): fixed loop condition
483         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
484           len==0, restructured code
485         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
486           up a bit, reduced bitfield accesses, prevent endless loops
487           in case of heap corruption
488         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
489           "unreferenced arguments/must return a value" warnings
490         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
491           replaced BAUDREG with SPBRG
492         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
493           device/lib/pic16/debug/gstack/gstack.c: replaced
494           _naked, _asm, _endasm with __naked, __asm, __endasm
495
496 2005-08-05 Raphael Neider <rneider AT web.de>
497
498         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
499           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
500
501 2005-08-05 Borut Razem <borut.razem AT siol.net>
502
503         * device/lib/Makefile.in: added missing ';'
504         * configure: removed ^M characters
505
506 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
507
508         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
509           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
510           License
511
512 2005-08-04 Borut Razem <borut.razem AT siol.net>
513
514         * configure.in: pic16 libraries build 2nd try - enable running
515           configure in device/lib/pic16
516         * configure: regenerated from configure.in
517         * device/lib/Makefile.in: create $(PORT)/bin directory
518
519 2005-08-03 Raphael Neider <rneider AT web.de>
520
521         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
522           to get/set values via pointers
523         * (genUnpackBits,genPackBits): changed detection of
524           ptr->bitfield vs. sym.bitfield, fixed access via generic
525           pointers, removed dead (wrong) code for multibyte bitfields
526         * (genNearPointerGet, genGenPointerGet): removed useless code,
527           fixed bitfield detection, fixes #1250594
528         * (genNearPointerSet): removed useless code
529         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
530           and introduced macro pic16_emitpcode that conditionally emits
531           the origin of the following pCode (useful for debugging SDCC)
532         * src/pic16/pcode.c: changed (and disabled) some debug outputs
533         * (createDefmap): fixed handling of LFSR for --optimize-df
534
535 2005-08-02 Borut Razem <borut.razem AT siol.net>
536
537         * device/lib/Makefile.in: pic16 libraries build enabled since
538           gputils-0.13.2 are now localy installed at sourceforge's compile farm
539
540 2005-08-02 Raphael Neider <rneider AT web.de>
541
542         * src/pic16/gen.c (genPackBits): removed deprecated warning
543         * (genGenPointerSet): fixed bitfield detection
544
545 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
546
547         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
548
549 2005-07-31 Raphael Neider <rneider AT web.de>
550
551         * device/lib/pic16/libdev/pic18f458.c,
552           device/include/pic16/pic18f458.h: added missing T0CONbits
553
554 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
555
556         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
557
558 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
559
560         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
561
562 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
563
564         * device/include/mcs51/at89c51ed2.h: added.
565
566 2005-07-23 Raphael Neider <rneider AT web.de>
567
568         * src/pic/gen.h: added emitpcode macro for debugging
569         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
570           and replace by macro adding debug information on demand
571         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
572         * (gencjne): tried to fix; replaced with correct (slower) code
573         * (gen{Unp,P}ackBits): fixed single bit access
574         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
575         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
576           previous instruction
577         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
578           register has to be handled with care (forbidding movement
579           of assignments/uses, removing assignments completely, ...)
580         * (pCodeOptime2pCodes): make use of regIsSpecial
581         * added lots of debugging output (commented out)
582         * src/pic/rallloc.c (deassignLRs): prevent operand registers
583           from being reused as result UNLESS it is known to work
584
585 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
586
587         * support/Util/dbuf.h: include <stddef.h> for size_t
588         * .version: changed to version 2.5.2
589
590 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
591
592         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
593
594 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
595
596         * src/hc08/gen.c (genMinus): fixed bug #1241835,
597           (genModOneByte): removed needless psha/pula
598
599 2005-07-22 Raphael Neider <rneider AT web.de>
600
601         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
602           have PIC14 handled like PIC16, fixes broken pic14 linker calls
603         * src/pic/gen.c (resolveIfx): do not "invent" labels
604         * (genSkipc): changed to positive logic
605         * (genSkipCond): removed as no longer needed
606         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
607           backport from PIC16
608         * (genLeftShift): check operands are in different registers
609         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
610           INCF does not update CARRY...
611         * src/pic/main.c: fixed _linkCmd
612         * src/pic/pcode.c (unlinkpCode): added inactive code
613         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
614           alive (do not assign result and operand overlapping registers)
615
616 2005-07-22 Raphael Neider <rneider AT web.de>
617
618         * src/pic/device.c (dump_sfr): replaced register declaration with
619           call to emitSymbolToFile() to avoid duplicate symbols
620         * (assignRelocatableRegisters): do not declare external symbols
621         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
622           right (take size of type, not etype)
623         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
624         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
625         * (packRegsForAccUse): disabled assignment of WREG as
626           the result reg to prevent occurence of just fixed #1235003,
627           fixes #1242954
628         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
629           symbols (avoids duplicate symbols in .asm file)
630         * (pic14emitRegularMap): use emitSymbolToFile()
631         * src/pic/gen.c (aopOp): fixed spillLocation handling
632         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
633         * (genDataPointerSet): removed unneccessary variables/output
634
635 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
636
637         * as/mcs51/lkarea.c: enlarged codemap for banked memory
638         * device/lib/mcs51/crtbank.asm: added # to 0x0F
639
640 2005-07-21 Raphael Neider <rneider AT web.de>
641
642         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
643           architecture cannot handle them efficiently, fixes bug #1235003
644         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
645           check for empty sets before using them (fixes bug #1232190)
646
647 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
648
649         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
650           (lnksect2): generate warnings for memory overlap
651         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
652           constseg to set the name of these segments so you can instruct the linker
653           to place them in banks
654         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
655         * src/SDCCglobl.h: added MODEL_HUGE to enum,
656           added code_seg and const_seg to options
657         * src/SDCCglue.c (emitMaps): use options.const_seg,
658           (createInterruptVect): put interrupt vectors in segment HOME,
659           (glue): put HOME before static segment and put the main glue in HOME,
660           (glue): use options.code_seg
661         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
662         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
663           these segments so you can instruct the linker to place them in banks
664           (linkEdit): use code_loc for HOME segment which should be the first
665           segment in code memory now
666         * src/SDCCmem.c: fixed more stuff like bug 1238386
667         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
668           (changePointer): don't change function pointers to code pointers for
669           banked functions,
670           (compareType): added exceptional check for banked function pointers
671         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
672         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
673           after static in code memory
674         * src/mcs51/gen.c: added aopLiteralLong prototype,
675           (aopForSym): use getSize for functions,
676           (genCall): generate banked calls over one trampoline __sdcc_banked_call
677           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
678           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
679           the segment,
680           (genPcall): use call for literal function pointers and generate banked
681           calls over the one trampoline so there's only one place for the user to
682           modify according to his/hers hardware,
683           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
684           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
685         * src/mcs51/main.c: added keyword banked,
686           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
687         * support/Util/SDCCerr.c,
688         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
689           needed for passing the bank and address to the trampoline
690         * device/lib/mcs51/crtbank.asm: added for bankswitching
691         * device/lib/mcs51/Makefile: added crtbank
692
693 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
694
695         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
696           for fields at offset 0 of a struct or union as reported
697           on 2005-07-07 in the developer mailing list.
698
699 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
700
701         * src/SDCCmem.c: fixed bug 1238386
702
703 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
704
705         * src/mcs51/peeph.def: added labelrefcounting for peepholes
706           (patch #1144962), added peephole 300, enabled 259.x
707         * doc/sdccman.lyx: removed screenshot and provided link instead
708
709 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
710
711         * doc/sdccman.lyx: added section about debugging with ddd
712         * doc/figures/ddd_example.eps: screenshot of debugging session
713
714 2005-07-04 Raphael Neider <rneider AT web.de>
715
716         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
717           like CODE pointers, fixes #1115683
718         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
719           call, fixes bugs #1232211, #1228110,
720           fixed wrong casts to pCodeFlow from pCodeInstructions
721
722 2005-07-04 Raphael Neider <rneider AT web.de>
723
724         * src/pic/gen.c (popGet): changed assert to allow for
725           bit operands
726         * (popGetAddr): changed signature to provide
727           an additional index, patched all call sites
728         * (genCmpEq): handle literal-like operands correctly
729         * (genAddrOf): added sanity checks on __code/__data pointers
730         * (genAssign): added handling of symbols from __code section
731         * (gencjne): do not generate code for comparisons whose result
732           is neither stored nor used, fixes bug #1171114
733         * (AccLsh, AccRsh): operate on operand instead of WREG
734         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
735           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
736           by known count
737         * rewrote complete shift-by-literal logic, commented unused
738           functions out
739         * (genConstPointerGet): get multiple bytes (if result size > 1),
740           fixed handling of non-immediate addresses
741         * (genPointerGet): handle CODE pointers like CONST pointers
742         * (genpic14Code): insert C-SRC lines as Cource-pCodes
743         * ({aop,op}_isLitLike): NEW, single place to decide whether an
744           operand is to be treated as a literal or not
745         * (mov2w,genPcall,genCmpEq),
746           src/pic/genarith.c: use aop_isLitLike() to decide between
747           literal/register contents
748         * (addSign): added missing offset
749         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
750           only emit comment in debug-mode,
751           use {aop,op}_isLitLike throughout the file
752         * src/pic/glue.c: fix initializers for pointers (work in progress)
753         * src/pic/pcode.c (get_op): honor index on _const symbols
754         * ({reset,dump}pCodeStatistics): NEW, estimate code size
755         * (dumppBlock): added pCode size estimation
756         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
757           check for IS_SYMOP before OP_SYMBOL'ing
758         * fixed indentation, compacted switch-statements
759         * (allocReg): find free register and allocate it instead of
760           allocating new registers all the time
761         * (deassignLRs): prevent POINTER_GET's from being assigned the same
762           registers as its operands (necessary only for multibyte GETs)
763
764 2005-07-01 Raphael Neider <rneider AT web.de>
765
766         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
767           debugging .asm-output macros FENTRY + FEXIT
768         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
769           way... I wonder...
770         * (emitpComment): NEW, printf to pCode
771         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
772           offset handling
773         * (popGetAddr): NEW, variant of popGet to access an immediates
774           high(er) bytes instead of the n'th byte of memory they reference,
775           replaced popGet with popGetAddr where neccessary
776         * (genDataPointerGet): reactivated and fixed implementation
777         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
778           accesses
779         * (genDataPointerSet): fixed multibyte assignments
780         * (genpic14Code): fixed --i-code-in-asm handling
781         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
782         * (genPlus): fixed index-out-of-bounds error
783         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
784         * src/pic/ralloc.c: added debugging output macro FENTRY2
785         * (spillThis): fixed indentation, enbraced for-body for clarity
786         * (rematStr): commented out as now unused
787         * (regTypeNum): commented out special spill case (overwrites
788           arbitrary values)
789         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
790
791 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
792
793         * doc/sdccman.lyx: documented sfr16/sfr32,
794           added example for using storage class with function pointers
795         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
796
797 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
798
799         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
800         * device/lib/_itoa.c,
801         * device/lib/_ltoa.c: optimized codesize
802         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
803           but don't know how to suppress the double warning.
804         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
805         * support/Util/SDCCerr.c,
806         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
807
808 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
809
810         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
811           fixed old K&R prototypes
812         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
813         * device/lib/_gptrget.c,
814         * device/lib/_gptrgetc.c,
815         * device/lib/_gptrput.c: changed versions for new memory indicator values,
816           also new versions for small generic pointers and banked generic pointers
817         * src/port.h: added const_name
818         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
819         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
820         * src/SDCCcse.c (findPrevIc): check all associative operators
821         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
822         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
823         * src/SDCCmem.c: updated comments,
824           set far-space to 0 for pdata, results in optimized code
825         * src/SDCCmem.h: added macro CONST_NAME
826         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
827           moving the info into the highest bits, see also gptrget/gptrput
828         * src/src.dsp: added sdcc.ico to project files
829         * src/avr/gen.c (genCast): fixed bug 0x%d
830         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
831         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
832           relation between ptr_type and DCL_TYPE,
833           (genCast): fixed bug 0x%d
834         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
835           (CODE)" for const_name
836         * src/hc08/gen.c (genCast): fixed bug 0x%d
837         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
838           (hc08_port): added "CONST (CODE)" for const_name
839         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
840           (aopForRemat, adjustArithmeticResult): disconnected direct relation
841           between ptr_type and DCL_TYPE,
842           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
843           operand* and took AOP() inside function so sfr-ness can be checked,
844           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
845           new prototype,
846           (genFunction, genEndFunction): optimized stack setup,
847           (genMinus): optimized for literals with ending zeroes (in bytes),
848           (genCast): fixed bug 0x%d
849         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
850           (mcs51_port): added "CONST (CODE)" for const_name
851         * src/mcs51/peeph.def: made rule 226 more generic
852         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
853         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
854         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
855         * src/z80/main.c (z80_port): added NULL for const_name,
856           (gbz80_port): added NULL for const_name
857         * support/regression/tests/bug663539.c,
858         * support/regression/tests/sfr16.c: new tests
859
860 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
861
862         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
863
864 2005-06-24 Raphael Neider <rneider AT web.de>
865
866         * device/lib/pic16/libdev/pic18f[68][567]20.c:
867           corrected typos...
868         * device/include/pic16/signal.h: added USBIF
869           and SIG_USB
870
871 2005-06-24 Raphael Neider <rneider AT web.de>
872
873         * device/lib/pic16/libdev/pic18f2455.c,
874           device/include/pic16/pic18f2455.h: NEW
875         * device/include/pic16/pic18fregs.h,
876           device/lib/pic16/pics.all,
877           src/pic16/device.c: added 18f2455
878         * device/lib/pic16/libdev/pic18f[68][567]20.c,
879           device/include/pic16/{pic18f[68][567].h,usart.h}:
880           replaced MULTIPLE_USARTS define with more relaible
881           compatibility sfrs (for USART access)
882
883 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
884
885         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
886           and the output asm file line is printed on two lines.
887
888 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
889
890         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
891           BGT, BLE, BHI, and BLS instructions
892         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
893           genCmpEq): removed
894         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
895           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
896           fixes bug #1216342
897         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
898
899 2005-06-15 Raphael Neider <rneider AT web.de>
900
901         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
902         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
903         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
904           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
905           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
906
907 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
908
909         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
910           Marcel Telka in bug #1215704
911
912 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
913
914         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
915           located in shared memory bank.
916
917 2005-05-31 Raphael Neider <rneider AT web.de>
918
919         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
920           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
921           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
922
923 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
924
925         * device/lib/_strncpy.c: fixed the fix
926
927 2005-05-26 Raphael Neider <rneider AT web.de>
928
929         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
930           initializers with \0, bug #1208187
931         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
932           intializers with \0, bug #1208187
933
934 2005-05-26 Raphael Neider <rneider AT web.de>
935
936         * src/pic16/glue.c (pic16_printIvalChar): fixed string
937           initializers with \0, bug #1208187
938         * src/pic16/main.c (_process_pragma): added sanity checks
939           for stack position and size, emit warnings when appropriate
940
941 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
942
943         * device/lib/_strncpy.c: fixed not filling with \0
944
945 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
946
947         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
948           createFunction),
949         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
950           compound_statement),
951         * src/SDCCsymt.h,
952         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
953
954 2005-05-24 Raphael Neider <rneider AT web.de>
955
956         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
957
958 2005-05-24 Raphael Neider <rneider AT web.de>
959
960         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
961           TRISE definitions, closes bug #1162453
962
963 2005-05-22 Raphael Neider <rneider AT web.de>
964
965         * src/pic16/main.c (_process_pragma): check for missing
966           arguments to pragmas code and udata
967         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
968           consistency fixes to match other headers (thanks to Jim Paris)
969         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
970
971 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
972
973         * src/SDCCicode.c (isOperandEqual): fixed missing ;
974
975 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
976
977         * support/regression/tests/bug1198642.c: new test
978         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
979         * src/SDCCcse.c (findPrevIc): added comment, please have a look
980         * support/scripts/resource.h,
981         * support/scripts/resource.rc,
982         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
983         * support/scripts/sdcc.ico: added 32x32 icon
984
985 2005-05-18 Raphael Neider <rneider AT web.de>
986
987         * device/lib/pic16/libdev/pic18f*.c,
988         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
989           keywords to "__sfr" and "__at (X)"
990         * device/include/pic16/pic18fregs.h: added pic18f4520
991         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
992           #1203088 (MPLAB compatibility)
993
994 2005-05-17 Raphael Neider <rneider AT web.de>
995
996         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
997         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
998         * device/lib/pic16/pics.all: added new devices
999         * src/pic16/device.c: added support for pic18f4520
1000
1001 2005-05-16 Raphael Neider <rneider AT web.de>
1002         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1003         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1004         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1005           convenience function for bit access
1006
1007 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1008
1009         * device/lib/printf_large.c: fixed bug 1193299
1010         * support/regression/tests/bug1057979.c: added test %3.3s
1011
1012 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1013
1014         * device/include/mcs51/8051.h,
1015         * device/include/mcs51/8052.h: made parseable with lint
1016         * device/include/mcs51/lint.h: added include file for (sp)lint
1017         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1018         * doc/cdbfileformat.lyx,
1019         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1020
1021 2005-05-14 Raphael Neider <rneider AT web.de>
1022
1023         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1024         * device/lib/pic16/libc/stdlib/itoa.c (new)
1025         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1026         * device/lib/pic16/libio/Makefile: exclude subdir according to
1027           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1028         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1029         * src/pic16/gen.c (genFunction): prevent annoying warning
1030         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1031           nameclashes on BeOS
1032         * support/cpp2/cppmain.c (cpp_output_string): new
1033         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1034           fixes bug 1116802
1035
1036 2005-05-13 Borut Razem <borut.razem AT siol.net>
1037
1038         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1039
1040 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1041
1042         * .version: changed to version 2.5.1; back to bleeding edge development
1043
1044 2005-05-11 Borut Razem <borut.razem AT siol.net>
1045
1046         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1047           generate PDF version 1.3 documents
1048
1049 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1050
1051         * .version: changed to version 2.5.0
1052
1053 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1054
1055         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1056
1057 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1058
1059         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1060         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1061         well as many smaller updates.
1062         * .version: changed to version 2.5.0-pre1
1063
1064 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1065
1066         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1067
1068 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1069
1070         * support/regression/tests/bug1185672.c: added
1071         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1072           bug 1185672
1073         * src/mcs51/gen.c (genCall): added comments, made it look safer
1074         * src/mcs51/gen.c (genEndFunction): simplified
1075
1076 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1077
1078         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1079
1080 2005-04-14 Borut Razem <borut.razem AT siol.net>
1081
1082         * fixed bug 1045046 - SIGSEGV with really simple code?:
1083           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1084           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1085
1086 2005-04-14 Borut Razem <borut.razem AT siol.net>
1087
1088         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1089           src/pic16/device.h: temporarily disabled experimental #inline pragma
1090           for 2.5.0 release
1091
1092 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1093
1094         * device/include/z80/stdio.h,
1095         * device/include/z80/string.h: removed these highly incomplete files so
1096           SDCC can use the default ones in device/include/
1097
1098 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1099
1100         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1101         gcc warning.
1102         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1103         fix sdcpp warnings.
1104
1105 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1106
1107         * device/include/malloc.h: removed redundant __reentrant prototypes
1108         * device/lib/_mullong.c: added working xstack variant in asm (C version
1109           doesn't pass regression tests)
1110         * device/lib/bpx.c: used __data and made bpx char for mcs51
1111         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1112           (createFunction): fixed bug with xstackPtr
1113         * src/SDCCcse.c: corrected comments
1114         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1115           (killDeadCode, eBBlockFromiCode): removed unused code
1116         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1117           corrected comments
1118         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1119           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1120           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1121           (genModOneByte): fixed warning in MSVC
1122         * src/mcs51/main.c (): added comments
1123         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1124
1125 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1126
1127         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1128
1129 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1130
1131         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1132
1133 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1134
1135         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1136         characters arrays of larger size than the declared one.
1137
1138 2005-04-10 Borut Razem <borut.razem AT siol.net>
1139
1140         * src/pic/gen.c (genInline),
1141           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1142           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1143           (findNextInstruction), (findPrevInstruction),
1144           (findInstructionUsingLabel),
1145           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1146         * src/pic/pcode.c (findLabel): added missing '\n'
1147         * src/src.dsp: added SDCCdwarf2.c to the project
1148
1149 2005-04-09 Borut Razem <borut.razem AT siol.net>
1150
1151         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1152
1153 2005-04-08 Raphael Neider <rneider AT web.de>
1154
1155         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1156           into the chain after a given one) and mergeDefmapSymbols (combine
1157           defmap entries for each symbol per pcode)
1158         * (createDefmap): have defmap entries merged in the end
1159         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1160           a symbol before replacing one access type's symbol, merge symbols in
1161           the end (replacement symbol might already have an entry)
1162         * (assignValnums): keep reference to written WREG intact
1163
1164 2005-04-08 Raphael Neider <rneider AT web.de>
1165
1166         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1167           Alpha)
1168
1169 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1170
1171         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1172         bytes
1173
1174 2005-04-07 Raphael Neider <rneider AT web.de>
1175
1176         * device/include/pic16/usart.h: added compatibility defines for
1177           devices with more than one USART
1178         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1179
1180 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1181
1182         * device/lib/Makefile.in: updated for port specific include
1183
1184 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1185
1186         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1187
1188 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1189
1190         * device/include/8051.h,
1191         * device/include/8052.h,
1192         * device/include/at89S8252.h,
1193         * device/include/at89c55.h,
1194         * device/include/at89x051.h,
1195         * device/include/at89x51.h,
1196         * device/include/at89x52.h,
1197         * device/include/mcs51reg.h,
1198         * device/include/reg51.h,
1199         * device/include/reg764.h,
1200         * device/include/regc515c.h,
1201         * device/include/sab80515.h: (re)moved these 12 files
1202         * device/include/mcs51/8051.h,
1203         * device/include/mcs51/8052.h,
1204         * device/include/mcs51/at89S8252.h,
1205         * device/include/mcs51/at89c55.h,
1206         * device/include/mcs51/at89x051.h,
1207         * device/include/mcs51/at89x51.h,
1208         * device/include/mcs51/at89x52.h,
1209         * device/include/mcs51/mcs51reg.h,
1210         * device/include/mcs51/reg51.h,
1211         * device/include/mcs51/reg764.h,
1212         * device/include/mcs51/regc515c.h,
1213         * device/include/mcs51/sab80515.h: and added them here
1214
1215 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1216
1217         * device/include/stdarg.h: changed SDCC specific keywords to double
1218           underlined form.
1219         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1220           mcs51 and ds390.
1221         * device/include/hc08/mc68hc908gp32.h,
1222         * device/include/hc08/mc68hc908jb8.h,
1223         * device/include/hc08/mc68hc908jkjl.h,
1224         * device/include/hc08/mc68hc908qy.h: fixed comments
1225         * device/include/mcs51/README: updated
1226         * device/include/mcs51/c8051f120.h: added PINRSF
1227         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1228         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1229           amidst code. Also inline is not supported.
1230
1231 2005-04-06 Raphael Neider <rneider AT web.de>
1232
1233         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1234         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1235           callers stack/frame pointers
1236
1237 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1238
1239         * device/include/pic16/usart.h: added, missing in previous commit,
1240         * device/include/pic16/adc.h: fixed typo,
1241         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1242         commit,
1243         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1244         <p18fxxx.inc>
1245         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1246         uninitialized because a bug appears with gplink
1247         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1248         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1249         complains for unrecognised option
1250
1251 2005-04-05 Raphael Neider <rneider AT web.de>
1252
1253         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1254           structs as well (using memcpy)
1255         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1256           on ISRs (GOTO has no label)
1257         * src/pic16/device.h: added OF_OPTIMIZE_DF
1258         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1259           new data flow analysis/optimization
1260         * src/pic16/pcode.c: added (prototypes for and implementation of)
1261           dataflow analysis functions, fixed pCodeInstructions' inCond and
1262           outCond values, made RCALL a branch instruction
1263         * (pic16_unlinkpCode): keep C line if possible
1264         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1265           C line moved if possible
1266         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1267         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1268           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1269         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1270           new flow)
1271         * (pic16_getJumptabpCode): NEW, needed in...
1272         * (LinkFlow): fixed handling of jumptables, calls and conditional
1273           branches
1274         * (pic16_InsertCommentAfter): NEW
1275         * (pic16_pCodeReplace): made verbose and flow preserving
1276         * (AnalyzeFlow): added call to data flow analysis
1277         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1278         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1279         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1280
1281 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1282
1283         * src/SDCCast.c (decorateType): fixed bug #1105626
1284
1285 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1286
1287         * device/include/asm/pic16/features.h,
1288         * pic18f*.h headers,
1289         * device/include/pic16/adc.h,
1290         * device/include/pic16/delay.h,
1291         * device/include/pic16/i2c.h,
1292         * device/include/pic16/malloc.h,
1293         * device/include/pic16/stdio.h,
1294         * device/include/pic16/stdlib.h,
1295         * device/include/pic16/string.h,
1296         * device/lib/pic16/libc/stdio/printf_tiny.c,
1297         * device/lib/pic16/libc/stdio/printf_small.c,
1298         * device/lib/pic16/libc/stdio/strmgpsim.c,
1299         * device/lib/pic16/libc/stdio/strmmssp.c,
1300         * device/lib/pic16/libc/stdio/strmusart.c,
1301         * device/lib/pic16/libc/stdio/vfprintf.c,
1302         * device/lib/pic16/libc/stdlib/ltoa.c,
1303         * device/lib/pic16/libc/stdlib/putchar.c,
1304         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1305         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1306         * device/lib/pic16/libc/stdlib/memchrram.c,
1307         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1308         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1309         * device/lib/pic16/libio/adc/adcbusy.c,
1310         * device/lib/pic16/libio/adc/adcread.c,
1311         * device/lib/pic16/libio/adc/adcsetch.c,
1312         * device/lib/pic16/libio/usart/ubaud.c,
1313         * device/lib/pic16/libio/usart/ubusy.c,
1314         * device/lib/pic16/libio/usart/udrdy.c,
1315         * device/lib/pic16/libio/usart/uopen.c,
1316         * device/lib/pic16/libio/usart/uputc.c,
1317         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1318         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1319         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1320         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1321         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1322         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1323         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1324         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1325         specific keywords to double underlined form,
1326         * device/lib/pic16/libc/Makefile.rules,
1327         * device/lib/pic16/libsdcc/Makefile.rules,
1328         * device/lib/pic16/libm/Makefile,
1329         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1330         to compile with C standard set in Makefile.common
1331         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1332         rand.c and crc.c in compilation process,
1333         * device/lib/pic16/libsdcc/int/divuint.c,
1334         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1335         `c' from signed to unsigned,
1336         * device/lib/pic16/startup/crt0.c,
1337         * device/lib/pic16/startup/crt0i.c,
1338         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1339         keywords to double underlined form, bug fixes in _do_cinit function
1340         which prevented the correct initialization of the .idata segment,
1341         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1342         core to enter a infinite loop
1343         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1344
1345 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1346
1347         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1348
1349 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1350
1351         * device/include/Makefile.in: add support for hc08 subdirectory
1352         * device/include/hc08/: new subdirectory
1353         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1354         Lucas Loizaga, thanks!
1355         * device/include/hc08/mc68hc908qy.h,
1356         * device/include/hc08/mc68hc908gp32.h,
1357         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1358         their own directory. Changed internal macro names to use the compiler
1359         reserved namespace. Changed SDCC specific keywords to double
1360         underlined form.
1361         * device/include/math.h,
1362         * device/include/malloc.h,
1363         * device/include/stdarg.h,
1364         * device/include/stdbool.h
1365         * device/include/string.h,
1366         * device/include/tinibios.h,
1367         * device/include/ds400rom.h,
1368         * device/include/8051.h,
1369         * device/include/8052.h,
1370         * device/include/80c51xa.h,
1371         * device/include/at89c55.h,
1372         * device/include/at89S8252.h,
1373         * device/include/at89x51.h,
1374         * device/include/at89x52.h,
1375         * device/include/ds80c390.h,
1376         * device/include/reg764.h,
1377         * device/include/regc515c.h,
1378         * device/include/sab80515.h,
1379         * device/include/mcs51/c8051f000.h,
1380         * device/include/mcs51/c8051f018.h,
1381         * device/include/mcs51/c8051f020.h,
1382         * device/include/mcs51/c8051f040.h,
1383         * device/include/mcs51/c8051f060.h,
1384         * device/include/mcs51/c8051f120.h,
1385         * device/include/mcs51/c8051f300.h,
1386         * device/include/mcs51/c8051f310.h,
1387         * device/include/mcs51/c8051f320.h,
1388         * device/include/mcs51/c8051f330.h,
1389         * device/include/mcs51/c8051f350.h,
1390         * device/include/z180.h: Changed SDCC specific keywords to double
1391         underlined form.
1392
1393 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1394
1395         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1396         18F4455,
1397         * (pic16_assignConfigWordValue): disable testing of configuration
1398         register value with config mask,
1399         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1400         function with port->fun_prefix,
1401         * (genFunction): when generating a naked interrupt function never
1402         create an absolute segment placed in interrupt vector address, place
1403         the actual interrupt function at IVA instead, when an interrupt
1404         function is generated with unspecified interrupt then do not create
1405         the absolute section,
1406         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1407         code for generating a call to generic pointer get/put function with
1408         a call to function pic16_callGenericPointer(),
1409         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1410         the call to the generic pointer get/put functions with prefixing the
1411         function name with port->fun_prefix,
1412         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1413         * src/pic16/main.c (_process_pragma): prefix function with
1414         port->fun_prefix,
1415         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1416         calling assembler, old 18Fxxxx macro is deprecated,
1417         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1418         PC_ASMDIR in while condition,
1419         * (findInstruction): add PC_ASMDIR in while condition,
1420         * (buildCallTree): prefix main with port->fun_prefix,
1421         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1422         identifier for variable with banked access in instructions BTFSS,
1423         BTFSC, BCF, BSF, BTG
1424         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1425         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1426         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1427         perform optimization when enviroment variable NO_REG_OPT is set,
1428         * (insideLRBlock): NEW, return 1 if register is inside an
1429         INF_LOCALREGS block,
1430         * (RemoveRegFromLRBlock): remove a register that is completely
1431         eliminated by register optimization, but it is still left in local
1432         register store/restore in/from stack block,
1433         * (Remove2pcodes): after removing register, check to see if it
1434         should be removed from local register store/restore in/from stack
1435         block,
1436         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1437         DUMMY_READ_VOLATILE,
1438
1439         * device/include/pic16/adc.h: minor prototype modifications and
1440         update,
1441         * device/include/pic16/malloc.h: added GPL notice various
1442         modifications,
1443         * device/include/pic16/stdint.h: NEW, standard header for ints
1444         * device/include/pic16/delay.h: NEW, header for delay functions,
1445         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1446         delay1mtcy,
1447         * device/include/pic16/signal.h: NEW, header providing helper macros
1448         for implementing signal handlers,
1449         * device/include/pic16/stdio.h: added prototypes for functions,
1450         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1451         prototypes for stdin and stdout, added macro PUTCHAR to
1452         automatically implement putchar function prototype,
1453         * device/include/pic16/usart.h: modified and updated USART library,
1454         * device/lib/pic16/libio/adc/,
1455         * device/lib/pic16/libio/i2c: some modifications to improve library
1456         performance,
1457         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1458         family of functions,
1459         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1460         family of functions and other sources,
1461         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1462         of the PIC18Fxx[28] devices,
1463         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1464         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1465         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1466         _do_cinit function, because the previous failed when local variables
1467         where not placed in the same memory bank,
1468         * device/lib/pic16/libsdcc/char/: various modifications to improve
1469         library performance,
1470         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1471         information on the new functions of the c library and more...
1472
1473 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1474
1475         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1476
1477 2005-03-26 Raphael Neider <rneider AT web.de>
1478
1479         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1480           if condition == CARRY)
1481         * (genCmp): adapted to new genSkipc semantics
1482         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1483           on rIfx (genCmp was broken)
1484
1485 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1486
1487         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1488         * src/z80/main.c (_keywords[]),
1489         * src/SDCCglobal.h (struct options),
1490         * src/SDCC.y,
1491         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1492         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1493         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1494         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1495         always available in leading double underscore form. The C99 support is
1496         mostly missing, but it's a start.
1497         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1498         reserved identifier "__data".
1499
1500 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1501
1502         * src/mcs51/peeph.def: fixed bug 1170013
1503
1504 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1505
1506         * device/include/mcs51reg.h: fixed bug 842007
1507
1508 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1509
1510         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1511         last time.
1512
1513 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1514
1515         * src/port.h (struct PORT),
1516         * src/avr/ralloc.c (avr_assignRegisters),
1517         * src/avr/main.c,
1518         * src/ds390/ralloc.c (ds390_assignRegisters),
1519         * src/ds390/main.c,
1520         * src/hc08/ralloc.c (hc08_assignRegisters),
1521         * src/hc08/main.c,
1522         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1523         * src/mcs51/main.c,
1524         * src/pic/ralloc.c (pic14_assignRegisters),
1525         * src/pic/main.c,
1526         * src/pic16/ralloc.c (pic16_assignRegisters),
1527         * src/pic16/main.c,
1528         * src/xa51/ralloc.c (xa51_assignRegisters),
1529         * src/xa51/main.c,
1530         * src/z80/ralloc.c (z80_assignRegisters),
1531         * src/z80/ralloc.h,
1532         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1533         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1534         * src/SDCCcse.h,
1535         * src/SDCCdflow.c (computeDataFlow),
1536         * src/SDCCdflow.h,
1537         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1538         * src/SDCCloop.h,
1539         * src/SDCCcflow.c (*),
1540         * src/SDCCcflow.h,
1541         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1542         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1543         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1544         immedDom() returning wrong block; probably fixes bug #1160833)
1545
1546 2005-03-20 Borut Razem <borut.razem AT siol.net>
1547
1548         * support/scripts/inc2h.pl: WIN32 port
1549
1550 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * device/lib/makefile.in: added abs.c and labs.c
1553
1554 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1555
1556         * device/include/stdint.h: added
1557         * device/lib/abs.c: added
1558         * device/lib/labs.c: added
1559         * device/include/stdlib.h: added abs() and labs() prototypes
1560         * device/lib/libsdcc.lib: added abs and labs
1561         * device/include/float.h,
1562         * device/lib/_fsmul.c,
1563         * device/lib/printf_fast.c,
1564         * device/lib/printf_tiny.c: updated comments
1565
1566 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1567
1568         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1569         bug #1164313
1570
1571 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1572
1573         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1574         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1575
1576 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1577
1578         * device/lib/printf_large.c: removed inline assembly for portability and
1579           readability. Use printf_fast if speed or size are more important.
1580         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1581         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1582
1583 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1584
1585         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1586         prevent compiler warning
1587
1588 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1589
1590         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1591         moved to level 0 and declared as static. Also they are explicit
1592         placed in access bank. This was necessery because some times they
1593         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1594         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1595         optimizations. Currently only compare to unsigned char is implemented,
1596         * src/pic16/gen.c: added fReturnIdx array,
1597         * (struct resolvedIfx) is moved to gen.h and made public,
1598         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1599         * (aopForSym): added an optimization to directly store in stack of
1600         the operand of a SEND iCode,
1601         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1602         but as registers instead (AOP_REG) using the fReturnIdx array,
1603         * (pic16_freeAsmop): remove the freed register from the
1604         _G.sregsAlloc field,
1605         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1606         a compare of 'WREG',
1607         * (pic16_popGetTempRegCond): changed function prototype, now
1608         function takes also a bitVector argument v which holds the current
1609         set of registers that are allocated for stack access by aopForSym,
1610         registers allocated in aopForSym for accessing stack symbols are not
1611         any more part of the functions usedRegs field,
1612         * (genCall): some times aopOp is called for a stack variable to be
1613         send, aopForSym might perform the push, if this is true make sure
1614         that genCall doesn't push the variable twice by testing _G.resDirect,
1615         * (genFunction): changed testing for unspecified interrupt number
1616         from 256 to INTNO_UNSPEC,
1617         * modified selection scheme of frame pointer generation. Previously
1618         if function did use local registers a frame pointer was generated,
1619         now a frame pointer is generated only if function has arguments
1620         (that need PLUSW2 register access), or has stack arguments, or the
1621         compiler is not instructed to omit the frame pointer,
1622         * (genEndFunction): before restoring local registers that were saved
1623         in the function preamble, also restore the registers that *might*
1624         have been allocated for stack access,
1625         * (genRet): removed some old comments,
1626         * (genCmp, the active (RN's) version): added a call to the
1627         pic16_genCmp_special function to perform the compare with a more
1628         robust and optimized way,
1629         * (genInline): a feature has been added in inline code generation,
1630         which allows a wildcard variable substitution when writing inline
1631         assembly. Code is incomplete and experimental therefore undocumented,
1632         * (genCast): changed order of aopOp for result and right to allow
1633         aopForSym to directly load the result if possible,
1634         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1635         perform an optimized compare on some selected special occasions,
1636         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1637         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1638         generate an IVT any more,
1639         * src/pic16/main.c (pic16_optionsTable): added command line option
1640         --optimize-cmp,
1641         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1642         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1643         macros,
1644         * src/pic16/NOTES: Raphael Neider added in list of active developers
1645         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1646         jumptable_end to prevent bug #,
1647         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1648         inCond and outCond fields,
1649         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1650         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1651         turn off register spilling,
1652         * (packRegsForOneUse): synced with other ports' versions although it
1653         is not used currently,
1654         * (pic16_packRegisters): added an optimization while reading
1655         structure bitfields, some registers may be saved (malloc code is
1656         decreased by 80 bytes)
1657
1658 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1659
1660         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1661         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1662         this can be optimized more?
1663
1664 2005-03-10 Raphael Neider <rneider AT web.de>
1665
1666         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1667           genNearPointerGet): (hopefully) fixed access to bitfields via
1668           pointers (p->bitN = x; and x = p->bitN; failed)
1669
1670 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1671
1672         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1673
1674 2005-03-09 Raphael Neider <rneider AT web.de>
1675
1676         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1677
1678 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1679
1680         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1681         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1682           (regTypeNum): set REG_BIT type if necessary
1683         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1684         * support/regression/tests/critical.c: check bug 1144613
1685
1686 2005-03-02 Raphael Neider <rneider AT web.de>
1687
1688         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1689
1690 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1691
1692         * src/avr/ralloc.c (serialRegAssign),
1693         * src/ds390/ralloc.c (serialRegAssign),
1694         * src/hc08/ralloc.c (serialRegAssign),
1695         * src/mcs51/ralloc.c (serialRegAssign),
1696         * src/pic/ralloc.c (serialRegAssign),
1697         * src/pic16/ralloc.c (serialRegAssign),
1698         * src/xa51/ralloc.c (serialRegAssign),
1699         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1700
1701 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1702
1703         * src/SDCCast.c (decorateType): fixed bug 1124787
1704
1705 2005-02-20 Hubert Sack <sack AT digiplan.de>
1706         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1707
1708         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1709         patch #1121755
1710
1711 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1712
1713         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1714         to keep the correct label reference count when adding/removing references
1715         to labels. A peephole file using this is appended to patch #1144962.
1716
1717 2005-02-14 Raphael Neider <rneider AT web.de>
1718
1719         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1720         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1721         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1722           retrievals of result operand's value on assignment
1723
1724 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1725
1726         * device/include/pic16/string.h: modified prototype for memccpy()
1727         to memccpy(void *, void *, char, size_t)
1728         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1729         check whether to omit frame pointer or not,
1730         * (genInline): convert all occurences of "\n" to LF in inline
1731         assembler blocks, this helps formatting the inline text,
1732         * (pic16_loadFSR0): modified prototype,
1733         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1734         removed some 8051 legacy code,
1735         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1736         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1737         before allocating temporary registers in functions,
1738
1739 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1740
1741         * support/regression/tests/bitvars.c: corrected the "fix"
1742
1743 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1744
1745         * support/regression/tests/bitvars.c,
1746         * support/regression/tests/bitwise.c,
1747         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1748
1749 2005-02-10 Raphael Neider <rneider AT web.de>
1750
1751         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1752           different size for Alpha
1753         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1754
1755 2005-02-09 Raphael Neider <rneider AT web.de>
1756
1757         * src/SDCC.lex(doPragma) : save and restore warning options as well
1758           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1759         * have #pragma less_pedantic set the errorlevel to WARNING
1760           (fixes #1117001)
1761         * (cloneOptimize) : fixed wrong malloc's size
1762         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1763           facilitate correct handling of #pragma (save|restore)
1764
1765 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1766
1767         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1768
1769 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1770
1771         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1772
1773 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1774
1775         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1776
1777 2005-02-02 Raphael Neider <rneider AT web.de>
1778
1779         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1780         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1781         * (pic16_storeForReturn): fixed to allow returning function pointers
1782         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1783         * device/include/pic16/{stddef.h,stdbool.h}: added
1784
1785 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1786
1787         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1788
1789 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1790
1791         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1792         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1793          appeared to be required
1794
1795 2005-01-31 Borut Razem <borut.razem AT siol.net>
1796
1797         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1798           include/mcs51 and include/z80 directories to the package
1799
1800 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1801
1802         * src/hc08/gen.c (genFunction): fixed bug #1112752
1803
1804 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1805
1806         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1807
1808 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1809
1810         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1811
1812 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1813
1814         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1815
1816 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1817
1818         * device/include/c8051fxxx.h: removed these 6 files
1819         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1820
1821 2005-01-26 Raphael Neider <rneider AT web.de>
1822
1823         * src/pic16/gen.c (genAssign): fixed assignment from longs
1824           in codespace (were cut to three bytes)
1825         * (genDummyRead): implemented (except for CODESPACE...),
1826           fixed bug #1108575
1827         * src/pic16/glue.c (emitStatistics): beautified
1828         * device/lib/pic16/libm/Makefile: added include path
1829
1830 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1831
1832         * src/z80/gen.c (aopPut): fixed bug #1103902
1833
1834 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1835
1836         * device/lib/expf.c: fixed bug #1095792
1837
1838 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1839
1840         * device/lib/pic16/libm: added Math library sources
1841
1842 2005-01-24 Raphael Neider <rneider AT web.de>
1843
1844         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1845           to enable upcast to pCodeOpReg2 (there is no type tag to
1846           differenciate the two and pic16_popGet2p cast into PCOR2)
1847         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1848           (sizeof(sectNames) changed to sizeof(sectName))
1849           Both patches fix segfaults under MinGW.
1850
1851 2005-01-23 Raphael Neider <rneider AT web.de>
1852
1853         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1854           Safe_[mc]?alloc()'ed variables
1855         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1856           of (byte sized) temporaries (assign them to WREG for now)
1857         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1858           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1859           this might fix SIGSEGVs on MinGW...
1860         * src/SDCCopt.c (killDeadCode): restored original behaviour
1861           (volatile operands might get thrown away though)
1862
1863 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1864
1865         * src/pic16/gen.c: fixed bug #1106975,
1866         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1867         pointer update, INTCON is saved, global interrupts are disabled and
1868         restored after updateing TOS.
1869         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1870         * added function attribute 'shadowregs' to take advantage of shadow
1871         registers,
1872         * added function attribute 'wparam' as an alternative to the wparam
1873         pragma,
1874         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1875         user declares a non-ISR function as 'shadowregs',
1876         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1877
1878 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1879
1880         * .version: bumped version number to 2.4.8
1881         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1882         pic16 port,
1883         * device/lib/pic16/libio/i2c/: I2C module support library,
1884         * device/include/pic16/i2c.h: I2C support library header,
1885         * device/lib/pic16/libc/stdio/: standard IO support sources,
1886         * (printf_small.c): printf_small() source, supports float print,
1887         * (printf_tiny.c): printf_tiny() source, does not support floats,
1888         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1889         enable global optimizations for entire library source, other
1890         Makefiles in the source tree are also modified to reflect this,
1891         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1892         function,
1893         * doc/sdccman.lyx: updated to reflect new changes,
1894         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1895         sym->onStack if-case,
1896         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1897         sbit, idata, _idata, xdata, _xdata,
1898         * added pragma library, to link an external library, (see doc),
1899         * removed command line options, --pomit-config-words, --pomit-ivt,
1900         --pleave-reset-vector,
1901         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1902         when calling assembler to reflect memory model used, also define
1903         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1904         reflect stack model used,
1905         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1906         on stack return NULL,
1907
1908 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1909
1910         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1911           of the operands is volatile. Fixes #1020220
1912
1913 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1914
1915         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1916         * (OptimizeRegUsage): make sure that there is really no other flow where
1917           the first pCode is used
1918
1919 2005-01-22 Raphael Neider <rneider AT web.de>
1920
1921         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1922           to fix #1106967 (pCode->seq are not set up correctly)
1923
1924 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1925
1926         * src/SDCCglue.c (glue): make sure code area is declared before the
1927         static initialization area.
1928
1929 2005-01-21 Raphael Neider <rneider AT web.de>
1930
1931         * device/lib/Makefile.in: fixed test for pic16 install dir
1932         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1933           optimizations
1934         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1935           added --optimize-goto compiler switch and pragma wparam documentation
1936         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1937         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1938           and PRODH closing bug #1071770 (peephole optimizer)
1939
1940 2005-01-19 Raphael Neider <rneider AT web.de>
1941
1942         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1943           cmdLine buffers (used when calling sdcpp...) are large enough
1944           (MAX_PATH=256 truncates arguments leading to system halts when
1945           used in MinGW...)
1946         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1947         * (genUminus): rewritten to for efficiency
1948         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1949           used uninitialized in some cases)
1950         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1951           copy the third byte from the int -- now assumes 0x80 (data memory)
1952         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1953           operands (genAddLit expects the iCode's operands to swapped as
1954           well), fixed leftover bytes (crashed for short left operands)
1955         * (pic16_genMinusDec): performance improvements, removed false
1956           PIC14 emitSKPNCs
1957         * (pic16_genMinus): fixed to cope with differently sized operands
1958         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1959           for --obanksel > 1
1960         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1961         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1962           new banksel optimization
1963         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1964           analysis for temporary registers (segfaults...)
1965         * src/pic16/peeph.def: added rule
1966
1967 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1968
1969         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1970         which converts a float number to its ASCII representation
1971         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1972         functions to convert the fractional and integer part of a float to ASCII,
1973         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1974         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1975         ram
1976         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1977         _STATMEM macros,
1978         * device/include/pic16/adc.h: added GPL info,
1979         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1980         a pCodeOp as tested operand,
1981         * (genNearPointerGet): optimized bit testing, does not use
1982         intermediate register for bit value, test directly instead with
1983         BTFSS, BTFSC, works only for single bits,
1984         * (genpic16Code): dump the name of the iCode in the asm,
1985         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1986         renamed to pic16_decodeOp,
1987         * (serialRegAssign): do not allocate a temporary register for iCode
1988         sequences that test a single bit for 1/0
1989
1990 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1991
1992         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1993         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1994         access stack and frame pointers. They are initially assigned to
1995         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1996         accessing SFRs. Updated all occurences of modification of stack or
1997         frame pointer in gen.c and pcode.c,
1998         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1999         assigning of a literal value to pointers,
2000         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2001         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2002         selected
2003
2004 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2005
2006         * doc/sdccman.lyx: update documentation about stack pragma, added
2007         some info for stack memory models
2008
2009 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2010
2011         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2012
2013 2005-01-08 Raphael Neider <rneider AT web.de>
2014
2015         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2016           udata sections to fix bug #1097823
2017
2018 2005-01-05 Raphael Neider <rneider AT web.de>
2019
2020         * src/pic16/gen.c (genGenericShift): added handling of differently
2021           sized left operand and result
2022
2023 2005-01-04 Raphael Neider <rneider AT web.de>
2024
2025         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2026         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2027           to hold the condition bit)
2028         * added new version of genCmp (old code available via #define)
2029         * added new version of genShiftLeft/genShiftRight in a generic
2030           way, now supports shifting by negative values
2031         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2032           shiftCount (expected by genGenericShift)
2033         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2034         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2035           dump
2036         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2037           is an invalid literal too...)
2038
2039 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2040
2041         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2042         from Raphael Neider,
2043         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2044         for 8-bit literals. This fixes some literal operands which are sign
2045         extended to 16-bits ints when instruction needs only 8-bits.
2046
2047 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2048
2049         * device/lib/logf.c: added mcs51 assembly version
2050         * device/lib/expf.c: added mcs51 assembly version
2051         * device/lib/_logexpf.c: new shared asm code for expf and logf
2052         * device/include/math.h: add defines for assembly math library
2053         * device/lib/Makefile.in: build new _logexpf.c
2054         * device/lib/libfloat.lib: use new _logexpf.c
2055
2056 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2057
2058         * src/pic/device.c
2059         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2060           device types which have less than 0x7f registers.
2061
2062 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2063
2064         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2065
2066 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2067
2068         * device/lib/printf_fast.c: only build on supported arch.
2069         * device/lib/printf_tiny.c: only build on supported arch.
2070         * device/lib/printf_fast_f.c: only build if asm float lib
2071         * device/lib/_fsget1arg.c: only build if asm float lib
2072         * device/lib/_fsget2args.c: only build if asm float lib
2073         * device/lib/_fsnormalize.c: only build if asm float lib
2074         * device/lib/_fsreturnval.c: only build if asm float lib
2075         * device/lib/_fsrshift.c: only build if asm float lib
2076         * device/lib/_fsswapargs.c: only build if asm float lib
2077         * device/include/stdio.h: don't provide print_fast,
2078           print_fast_f, print_tiny prototypes if --xstack used
2079
2080 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2081
2082         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2083         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2084           to the SOURCES
2085
2086 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2087
2088         * device/lib/printf_fast_f.c: same as printf_fast, but
2089           with floating point enabled
2090         * device/lib/printf_fast.c: minor tweaks
2091         * device/include/stdio.h: add printf_fast_f
2092
2093 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2094
2095         * src/SDCCmain.c: make --float-reent default for mcs51
2096         * device/lib/_fsadd.c: added mcs51 assembly version
2097         * device/lib/_fssub.c: added mcs51 assembly version
2098         * device/lib/_fsmul.c: added mcs51 assembly version
2099         * device/lib/_fsdiv.c: added mcs51 assembly version
2100         * device/lib/_fseq.c: added mcs51 assembly version
2101         * device/lib/_fsneq.c: added mcs51 assembly version
2102         * device/lib/_fsgt.c: added mcs51 assembly version
2103         * device/lib/_fslt.c: added mcs51 assembly version
2104         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2105         * device/lib/Makefile.in: add _fscmp to build
2106         * device/lib/libfloat.lib: add _fscmp to build
2107
2108 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2109
2110         * device/lib/_fs2slong.c: added mcs51 assembly version
2111         * device/lib/_fs2sint.c: added mcs51 assembly version
2112         * device/lib/_fs2schar.c: added mcs51 assembly version
2113         * device/lib/_fs2ulong.c: added mcs51 assembly version
2114         * device/lib/_fs2uint.c: added mcs51 assembly version
2115         * device/lib/_fs2uchar.c: added mcs51 assembly version
2116         * device/lib/_slong2fs.c: added mcs51 assembly version
2117         * device/lib/_sint2fs.c: added mcs51 assembly version
2118         * device/lib/_schar2fs.c: added mcs51 assembly version
2119         * device/lib/_ulong2fs.c: added mcs51 assembly version
2120         * device/lib/_uint2fs.c: added mcs51 assembly version
2121         * device/lib/_uchar2fs.c: added mcs51 assembly version
2122         * device/include/float.h: added #define to select asm vs c
2123
2124 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2125
2126         * device/lib/printf_fast.c: improvements to float output
2127         * device/include/float.h: add defines for assembly float library
2128         * device/lib/_fsget1arg.c: receive 1 float arg
2129         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2130         * device/lib/_fsnormalize.c: normalize a float
2131         * device/lib/_fsreturnval.c: return float, various helper routines
2132         * device/lib/_fsrshift.c: right shift a float's mantissa
2133         * device/lib/_fsswapargs.c: swap 2 floats
2134         * device/lib/Makefile.in: build these 6 new files for mcs51
2135         * device/lib/libfloat.lib: add these 6 files to the library
2136
2137 2004-12-26 Borut Razem <borut.razem AT siol.net>
2138
2139         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2140           built by gcc 3.4.2
2141
2142 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2143
2144         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2145           and fully reentrant and register bank neutral.
2146         * device/lib/printf_fast.c: added float (not enabled by default),
2147           added compact/slower integer (also not enabled by default),
2148           improved size/speed of fast integer code, other minor changes
2149         * device/include/stdio.h, device/lib/Makefile.in,
2150           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2151
2152 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2153
2154         * src/pic16/pcode.c: declaring variables other than at the start of a
2155           block is not supported in C by VC6.
2156
2157 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2158
2159         * applied a previous patch from Raphael Neider that wasn't included
2160         in the previous commits, which fixes infinite loops within jumptable
2161         improvements,
2162         * made some fixes that previous patches introduced
2163
2164 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2165
2166         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2167         that fixes an issue with AOP_PCODE asmop's offset,
2168         * (pic16_popCopyReg): update instance field too,
2169         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2170         function of pic port,
2171         * (genCmp, genAnd, genAssign),
2172         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2173
2174 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2175
2176         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2177         variables initial values to idata section,
2178         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2179         variables in some functions. This utilizes parmBytes field of iCode
2180         structure to hold the offset of the variable in stack. (might be
2181         able to use the stack field too?)
2182         * applied patch from Raphael Neider # ### , # ###
2183         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2184         variable initial values in idata section,
2185         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2186         for static variables with initial value
2187         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2188         applied fix in while loop from Raphael Neider.
2189
2190 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2191
2192         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2193         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2194         * src/ds390/ralloc.c (serialRegAssign): spill bits
2195         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2196         * support/Util/SDCCerr.c,
2197         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2198         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2199         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2200
2201 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2202
2203         * device/include/sdcc-lib.h: inserted LGPL, added includes
2204           asm/ds390/features.h and asm/mcs51/features.h
2205         * device/include/asm/default/features.h,
2206         * device/include/asm/gbz80/features.h,
2207         * device/include/asm/z80/features.h: added empty _AUTOMEM
2208           and _STATMEM
2209         * device/include/asm/ds390/features.h,
2210         * device/include/asm/mcs51/features.h: added files with defines for
2211           _AUTOMEM and _STATMEM indicating automatic and static storage class
2212         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2213         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2214         * src/SDCCicode.c (geniCodeCast),
2215         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2216         * src/SDCCloop.c (loopInduction): removed unused variable lr
2217         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2218           to convertToFcall to include char modulo (RFE 1065037), added check
2219           if left operand is unsigned and use abs of literal value
2220         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2221           as it doesn't work after conversion from peephole.def to peephole.rul
2222         * src/mcs51/gen.c (toBoolean): added check for size,
2223           (genModOneByte): optimized code for signed char modulo a literal
2224           power of 2 (thanks to Hubert Sack),
2225           (genRRC): removed unnecessary "clr c",
2226           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2227         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2228           jump optimization,
2229           swapped rules 256.c and 256.d,
2230           extended 256.d by using new multiple checks (thanks Erik),
2231           added rules 256.e and 256.f,
2232           updated rule 261.a and 261.b to new generated code
2233         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2234
2235 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2236
2237         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2238           induction related bugs, including first part of bug #1074377
2239
2240 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2241
2242         * applied patch from bug-report #1076292,
2243         * applied patches for genAnd and Goto-optimizations for Raphael
2244         Neider,
2245         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2246         dump a less iCode information,
2247         * src/pic16/device.h (pic16_options_t): added field debgen,
2248         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2249         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2250         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2251         puclic,
2252         * (various functions): added macros FENTRY and FENTRY2 to functions,
2253         to emit function prologue,
2254         * (various functions): fixed indentation,
2255         * (genNearPointerGet): fixed loading of FSR0,
2256         * (genPackBits): applied patch from Raphael Neider to fix updating
2257         of FSR0 and touching only the modified bits,
2258         * src/pic16/genarith.c (various functions): added macros FENTRY to
2259         emit function prologue in comments,
2260         * src/pic16/pcode.h: added functions debugf2, debugf3,
2261         * src/pic16/ralloc.c: partial fix for packForPush caused
2262         segmentation fault,
2263
2264 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2265
2266         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2267           <stsp AT users.sourceforge.net> with reversed byte order
2268         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2269
2270 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2271
2272         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2273           bug #1074377
2274         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2275         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2276
2277 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2278
2279         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2280
2281 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2282
2283         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2284           conditions,
2285           (setFromConditionArgs): friendly operand parser for peephole rules,
2286           (operandBaseName, operandsNotRelated): new peephole condition
2287           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2288           architecture specific register naming into account, handles n-way
2289           comparisons, and supports quoted literals
2290         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2291
2292 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2293
2294         * src/mcs51/peeph.def: fixed bug #1076940
2295
2296 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2297
2298         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2299
2300 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2301
2302         Adding support for replacing ljmps with sjmps in jumptables
2303         generated for switch statements. For now you need to set the
2304         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2305         Now 4 algorithms for mcs51 jumptable generation are used:
2306         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2307         addresses loaded pc-relative for up to 112 cases and stack-pushing
2308         target addresses loaded with offset from dptr for up to 256 cases.
2309
2310         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2311         * src/mcs51/main.c: adapted constants for switch table generation
2312         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2313
2314 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2315
2316         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2317         * support/regression/tests/bug1057979.c: added test for bug 1073386
2318
2319 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2320
2321         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2322         compilers
2323
2324 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2325
2326         * src/pic16/device.h,
2327         * src/pic16/genarith.c,
2328         * src/pic16/glue.c,
2329         * src/pic16/main.c,
2330         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2331
2332 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2333
2334         Large cummulative patch for pic16 port.
2335         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2336         to call when a stack overflow occurs,
2337         * (malloc.h): added CVS Id tag,
2338         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2339         variable,
2340         * added libc directory. The current version of LibC contains string
2341         functions, ctype functions and macros and some functions of the
2342         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2343         be extensively tested in the future. Standard disclaimer here.
2344         Library is not automatically build yet. But one can build it by
2345         invoking 'make' inside the libc directory.
2346         * added ADC library under libio. Preliminary version yet.
2347
2348         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2349         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2350         aopForRemat() now and not by pic16_aopOp(),
2351         * (pic16_popGetTempReg): removed warning messgae when allocating
2352         temporary registers, its a buggy feature and will be removed,
2353         * (pic16_popGet): set register instance field in AOP_CRY,
2354         * (pic16_outBitC): fixed for results in size greater than 1,
2355         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2356         * (pic16_storeForReturn): optimized return of 0,
2357         * (genCmp): experimental code for new genCmp which uses PIC18's
2358         special compare&skip instructions. Initial tests fail some times
2359         with variables grater than 1 byte in size, so new code is disabled,
2360         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2361         a single bit,
2362         * (genCast): began a fix to optimize the casting of a bit to another
2363         bit, now assigning a bitfield to another bitfield will fail, sorry,
2364         * src/pic16/main.c: disabled the use of lr-support feature,
2365         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2366         * added some function prototypes, added function _debugf prototype,
2367         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2368         bits with offset (case PO_GPR_BIT),
2369         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2370         command line,
2371         * (isBankInstruction): modified to return 0 for no banking instruction,
2372         and 1 for banking instruction,
2373         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2374         caused stop processing pCodes after a inline assembly block,
2375         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2376         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2377         registers when it shouldn't,
2378         * src/pic16/ralloc.c (allocReg): add preliminary support for
2379         supporting a limited set of temporary registers,
2380
2381 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2382
2383         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2384           genDataPointerSet): ensure assignments always copy in MSB to LSB
2385           order,
2386           (loadRegFromAop): recognize CLRH optimization,
2387           (genFunction): optimize RECEIVE iCodes in reentrant functions
2388
2389 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2390
2391         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2392           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2393           selected.
2394         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2395         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2396           contiguous with data
2397
2398 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2399
2400         * device/lib/_gptrget.c (_gptrget),
2401         * device/lib/_gptrgetc.c (_gptrgetc),
2402         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2403           instead of sjmp to ret
2404         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2405           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2406
2407 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2408
2409         * .version: bumped version to 2.4.7
2410         * device/lib/_gptrget.c (_gptrget): is now _naked
2411         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2412         * device/lib/_gptrput.c (_gptrput): is now _naked
2413         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2414           (createFunction): fixed xstack
2415         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2416         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2417           or bit either,
2418           (geniCodeCritical): store original interrupt state in an iTemp bit
2419           var unless stack-auto
2420         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2421         * src/SDCCmain.c (setIncludePath): added include/target to search path
2422         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2423         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2424           prototype,
2425           (processFuncArgs): put bit vars in bit area
2426         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2427           unsaveRBank): fixed xstack,
2428           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2429           (genFunction, genEndFunction): fixed xstack,
2430           (genAssign): optimization don't walk backwards through mem
2431         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2432         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2433         * support/regression/Makefile: also make library (for stack-auto) when
2434           making "all" and added "test-mcs51-xstack-auto"
2435         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2436         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2437         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2438         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2439         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2440           make-library by MAKE_LIBRARY
2441         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2442           regression tests for xstack
2443         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2444         * support/regression/tests/critical.c: test for critical on mcs51
2445
2446 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2447
2448         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2449           built version of sdcc instead of installed version
2450
2451 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2452
2453         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2454         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2455           vprintf.c now
2456         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2457         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2458           WARNING: remove device/lib/build/z80/printf.o by hand when
2459           updating from previous build!
2460         * device/lib/z80/printf.c: updated comment
2461         * support/regression/tests/bug1057979.c: test all ports now
2462         * support/regression/tests/bug1065458.c: file added
2463
2464 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2465
2466         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2467           *_start and *_end symbols for static functions
2468
2469 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2470
2471         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2472           and search crt0.o in all library paths,
2473           (setIncludePath): proper handling of --nostdinc,
2474           (setLibPath): proper handling of --nostdlib
2475         * support/regression/Makefile,
2476         * support/regression/ports/ds390/spec.mk,
2477         * support/regression/ports/gbz80/spec.mk,
2478         * support/regression/ports/hc08/spec.mk,
2479         * support/regression/ports/mcs51/spec.mk,
2480         * support/regression/ports/mcs51-large/spec.mk,
2481         * support/regression/ports/mcs51-stack-auto/spec.mk,
2482         * support/regression/ports/z80/spec.mk: use include and lib files from
2483           built version of sdcc instead of installed version
2484         * doc/sdccman.lyx: fixed typo in --nostdinc
2485
2486 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2487
2488         * src/pic/pcode.c,
2489         * src/pic/device.c,
2490         * src/pic/ralloc.c,
2491         * src/pic/gen.c : added support to generate code for struct bit fields.
2492
2493 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2494
2495         * as/xa51/xa_version.h,
2496         * device/include/errno.h,
2497         * device/include/regc515c.h,
2498         * device/lib/_itoa.c,
2499         * device/lib/_ltoa.c,
2500         * device/lib/ser_ir_cts_rts.c,
2501         * sim/ucsim/xa.src/glob.cc,
2502         * sim/ucsim/xa.src/inst_gen.cc,
2503         * sim/ucsim/xa.src/xa_bit.cc,
2504         * sim/ucsim/xa.src/xa_sfr.cc,
2505         * sim/ucsim/z80.src/inst_dd.cc,
2506         * sim/ucsim/z80.src/inst_fdcb.cc,
2507         * support/scripts/keil2sdcc.pl,
2508         * src/pic16/pic16.dsp,
2509         * src/pic16/pic16a.dsp: corrected cvs line endings
2510         * device/lib/printf_large.c: fixed bug 1057979
2511         * src/pic16/gen.c: fixed non-C standard code
2512         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2513         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2514         * support/regression/ports/mcs51/support.c: reload T1 asap
2515         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2516           pdata use and clear idata startup behaviour
2517         * support/regression/tests/bug1057979.c: added
2518
2519 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2520
2521         * device/examples/ds390/ow390/ad26.h,
2522         * device/examples/ds390/ow390/cnt1d.h,
2523         * device/examples/ds390/ow390/crcutil.c,
2524         * device/examples/ds390/ow390/ownet.h,
2525         * device/examples/ds390/ow390/owsesu.c,
2526         * device/examples/ds390/ow390/swt12.h,
2527         * device/examples/ds390/ow390/swtoper.c,
2528         * device/examples/ds390/ow390/temp10.h,
2529         * device/examples/ds390/ow390/thermodl.c,
2530         * device/examples/ds390/tinitalk/tinitalk.dsp,
2531         * device/examples/ds390/tinitalk/tinitalk.dsw,
2532         * device/examples/mcs51/clock/hw.h,
2533         * device/examples/mcs51/simple2/go.bat,
2534         * device/examples/serialcomm/windows/serial.h,
2535         * device/examples/xa51/dummy.c,
2536         * device/examples/xa51/hello.c,
2537         * device/include/80c51xa.h,
2538         * device/include/at89x051.h: corrected cvs line endings
2539
2540 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2541
2542         * src/pic16/main.c (options): added command line --gstack, to trace
2543         stack over/under flows,
2544         * added pragma 'wparam' to allow passing first byte of function
2545         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2546         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2547         call to __gstack_test function and sets up the symbol as extern,
2548         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2549         * popaop): added call to pic16_testStackOverflow,
2550         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2551         wparamList list,
2552         * (genCall, genPcall): now all parameters are passed via stack
2553         except in functions that are pass to wparam pragma in which WREG is
2554         used too,
2555         * (genPcall): REENTRANT flag is checked to see if variable prototype
2556         contains reentrant keyword, don't call a non-reentrant function, via
2557         a reentrant function pointer or vice versa, functions are never
2558         passed via WREG,
2559         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2560         D.Winkler,
2561         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2562         SIGSEGV when accessing a NULL register stucture,
2563         * (pic16_printGPointerType): modified to handle UPPER modifier for
2564         function initializers, changed prototype of function to simpler one,
2565         * (pic16_printIvalFuncPtr): check to see if function is already
2566         added in externs list,
2567         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2568         optimized a move from W to SFR with a move to the same register
2569         later after a CALL,
2570         * device/lib/pic16/debug: NEW directory, contains debug features
2571         which are enabled when linking with libdebug.lib, currently command
2572         line option --gstack enables stack pointer tracing for over/under
2573         flow, corresponding sources are in debug/gstack
2574
2575 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2576
2577         * doc/sdccman.lyx: updated SDCC version,
2578         * (PIC16 port): update list of command line options,
2579         * src/pic16/device.h (structure pic16_options_t): added field gstack
2580         to enable stack overflow tracing on push/pops,
2581         * src/pic16/device.c (statistics structure): added statistics
2582         structure,
2583         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2584         pic16_dump_int_registers): increase statistics counters for each
2585         * variable which is encountered
2586         * (pic16_dump_usection): emit each .udata variable to its own udata
2587         section,
2588         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2589         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2590         parameters via stack, otherwise use old scheme,
2591         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2592         assembler output file,
2593         * src/pic16/main.c: added command line options --gstack to enable
2594         push/pop tracing for stack overflow,
2595         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2596         instructions): added size of each instruction,
2597         * (pic16_countInstruction): estimate size of instructions in
2598         the_pFile list, inline assembly blocks are not counted,
2599         * (pic16_FixRegisterBanking): trace previous register usage, when
2600         banksel optimizations is greater than 0, don't emit a redudant
2601         banksel directive,
2602
2603 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2604
2605         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2606         * src/pic16/ralloc.c : applied same fix for pic16.
2607         * src/pic/gen.c : tidied it up a little.
2608
2609 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2610
2611         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2612         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2613
2614 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2615
2616         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2617
2618 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2619
2620         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2621         non-reentrant function __modsint in the interrupt function (thus
2622         corrupting math operations during serial I/O)
2623         * device/lib/ser_ir.c: as above, changed buffersize
2624         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2625         256.c,d for zeroing
2626         * doc/Makefile: added option -t for rsync
2627
2628 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2629
2630         * src/SDCCast.h (struct ast),
2631         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2632
2633 2004-10-20 Borut Razem <borut.razem AT siol.net>
2634
2635         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2636         package
2637
2638 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2639
2640         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2641         makefile targets,
2642         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2643         support functions to replace long sequences of MOVFF's from access
2644         bank registers to stack and vice versa,
2645         * src/pic16/device.h: added new field opt_flags, where optimization
2646         flags can be set to enable certain features,
2647         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2648         * pBlock, (genFunction, genEndFunction): surroung loop for
2649         saving/loading used registers in stack with PC_INFO pCodes,
2650         INF_LREGS. Code in between can then be optimized by pCode optimizer
2651         to support function calls,
2652         * (genDataPointerSet): fixed bug which loaded float fields in
2653         structures with corrupt data,
2654         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2655         in a standard way debug info on stderr. Feature used for developing
2656         and debugging only,
2657         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2658         obsolete chunks of code,
2659         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2660         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2661         * pic16/src/pcode.c (pic16_newpCodeInfo,
2662         * (pic16_newpCodeOpLocalRegs),
2663         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2664         feature,
2665         * (pic16_pCodeConstString): printing of the initial value of a
2666         symbol as a comment is inhibited since parsing was already done by
2667         copyStr and output is corrupt,
2668         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2669
2670 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2671
2672         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2673
2674 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2675
2676         * as/mcs51/lkarea.c: removed old K&R style,
2677           (lnksect): changed check on boundary error,
2678           (lnksect2): changed check on boundary error,
2679           (lnksect2): extend XSTK to end of page if size = 1
2680         * as/mcs51/lkmain.c: removed old K&R style,
2681           (Areas51): create l_IRAM symbol
2682         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2683         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2684           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2685         * device/lib/_mullong.c: added version to be compiled with xstack
2686         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2687         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2688         * device/lib/mcs51/crtxstack.asm: fixed comment
2689         * src/SDCCglue.c: maxInterrupts defaults to 0,
2690           (emitMaps): added pdata,
2691           (createInterruptVect): (re)moved default,
2692           (glue): added pdata,
2693           (glue): moved __start__xstack to XSTK with default size 1
2694         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2695           and options.float_rent when options.stackAuto is set,
2696           (linkEdit): only write XDATA_NAME if provided on command line
2697         * src/SDCCmem.h,
2698         * src/SDCCmem.c: added pdata
2699         * src/port.h: added pdata_name to PORT
2700         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2701           (saveRegisters, unsaveRegisters): removed usage of B,
2702           (genMinus): fixed accumulator clash,
2703           (genJumpTab): added comment, this needs another look
2704         * src/mcs51/gen.c: added check for "B in use" paranoia,
2705           added pushB() and popB()
2706         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2707           chance
2708         * src/avr/main.c,
2709         * src/ds390/main.c,
2710         * src/hc08/main.c,
2711         * src/mcs51/main.c,
2712         * src/pic/main.c,
2713         * src/pic16/main.c,
2714         * src/xa51/main.c,
2715         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2716           added PSEG (PAG,XDATA) or NULL to port specifier
2717         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2718         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2719           (_mcs51_genInitStartup): removed __start__xstack equ,
2720           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2721         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2722         * src/z80/gen.c (_rleAppend): fixed warnings
2723         * support/regression/tests/zeropad.c: added pdata test
2724         * .version: bumped to 2.4.6
2725
2726 2004-10-17 Borut Razem <borut.razem AT siol.net>
2727
2728         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2729         as a part of nightly build
2730
2731 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2732
2733         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2734         WREG holds the first byte function parameters,
2735         * (aopForSym): take special case for symbols which are in FARSPACE
2736         but in CODESPACE too,
2737         * (assignResultValue): modified to take into account _G.useWreg,
2738         * (genCall): don't use wreg for parameter passing when function is
2739         declared as reentrant, too, added optimization INCF to stack
2740         pointer when stack parameter count is 1,
2741         * (genFunction, genEndFunction): refurnished and fixed to not using
2742         wreg for passing parameters when function has varargs or is
2743         reentrant, fixed bug with symbol name compare for generating
2744         functions in absolute address,
2745         * (pic16_storeForReturn): refurnished,
2746         * (genCmp): began writing a new version of the function, not ready
2747         yet, therefore it is disabled,
2748         * (genAssign): do not read code memory when assigning a function to
2749         a pointer function,
2750         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2751         array of characters, not pointer,
2752         * (pic16initialComments): in debug mode emit an .ident directive for
2753         the assembler,
2754         * (_process_pragma): emit a new warning type (internal to pic16)
2755         when setting stack to default length, emit a similar warning when
2756         placing a function at absolute address and address is not word aligned
2757         * (_pic16_parseOptions): added 'return TRUE' statement,
2758         * (_pic16_linkEdit): if compiling a source, then add the source's
2759         file object, first in the list of objects to link,
2760
2761 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2762
2763         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2764         * src/pic/main.c : removed VC warning.
2765         * src/pic/gen.c : changed comment.
2766
2767 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2768
2769         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2770         reference to a deprecated symbol _GPTRREG was causing failure to
2771         link. Thanks G. M. Gallant for the info.
2772
2773 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2774
2775         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2776         comments for Bugs item #954788.
2777
2778 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2779
2780         * src/pic16/device.c (pic16_dump_gsection,
2781         * pic16_groupRegistersInSection): handle symbols declared to be in
2782         access bank differently,
2783         * src/pic16/gen.c (struct _G): added field resDirect,
2784         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2785         send values read from stack directly to result and don't allocate
2786         temporary values,
2787         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2788         same registers,
2789         * (pic16_sameRegsOfs): NEW,
2790         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2791         free because they were not allocated from temporary pool,
2792         * pic16_popRegFromString): workaround to fix a problem with
2793         allocating variables twice or never,
2794         * (genGenPointerGet): using PRODL instead of FSR0H,
2795         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2796         instead of FSR0H,
2797         * (genAssign): take advantage of the _G.resDirect flag,
2798         * (genCast): around line 11844, use mov2f instead of directly
2799         MOVFF'ing between operands to account for literal values,
2800         * src/pic16/genutils.c: some new debug functions for gpsim have been
2801         added,
2802         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2803         float with integer part only,
2804         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2805         place variables in access bank
2806         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2807         updated sources to reflect recent changes in gen.c
2808
2809 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2810
2811         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2812         sources that searched for headers in installation path, now the
2813         device/include/pic16 is used,
2814         * src/pic16/glue.c (pic16glue),
2815         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2816         .line directives if not in debug mode, this suppresses assembler's
2817         warnings for ignored directives
2818
2819 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * src/port.h: made reset_regparms prototype void parameter explicit.
2822         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2823         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2824         * doc/sdccman.lyx: documented warning disabling and how to use
2825           printf_large to make it print floats.
2826         * device/include/stdbool.h: NEW
2827         * device/lib/_atof.c,
2828         * device/lib/_divuint.c,
2829         * device/lib/_divulong.c,
2830         * device/lib/expf.c,
2831         * device/lib/printf_large.c,
2832         * device/lib/sincosf.c,
2833         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2834         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2835           a completely reentrant lib.
2836
2837 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2838
2839         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2840         * device/include/pic16/stdio.h: fixed bug with colon
2841
2842 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2843
2844         * device/include/pic16/stdio.h,
2845         * device/include/pic16/stdlib.h,
2846         * device/include/pic16/math.h: NEW
2847         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2848         declared as _naked to reduce overhead
2849         * device/lib/Makefile.in (target port-specific-objects-pic16):
2850         changed * to *.* so to ignore the CVS directory,
2851         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2852         stacked variables back in stack,
2853         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2854         corruption
2855
2856 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2857
2858         * .version: bumped version number to 2.4.5
2859         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2860         * support/Util/SDCCerr.c (messages structure): added entry for
2861         W_POSSBUG2
2862
2863         Large cumulative patch for pic16 port and libraries.
2864         * device/include/pic16/sdcc-lib.h,
2865         * device/include/pic16/stdarg.h,
2866         * device/include/asm/pic16/features.h,
2867         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2868         * device/include/pic16/float.h: changes reentrant keyword with
2869         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2870         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2871         updated target build-libraries to include objects from gptr,
2872         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2873         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2874         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2875         all function headings,
2876         * src/SDCCmain.c: added global parameter userIncDirsSet,
2877         * (parseCmdLine): when option -I is encountered add directory to
2878         userIncDirsSet too,
2879         * src/version.awk: added space between control and long,
2880         * src/pic16/NOTES: added some notes for the port,
2881         * src/pic16/gen.c: added prototype for mov2fp function,
2882         * (fReturnpic16[]): properly named return value registers,
2883         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2884         * (aopForSym): added code to handle symbols with onStack flag set,
2885         symbols onStack are allocated PTRSIZE bytes,
2886         * (aopFreeAsmop): handles special case where asmops are stack objects,
2887         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2888         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2889         added argument lock to trace flaws in allocating temporary registers
2890         when developing port,
2891         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2892         * (pic16_popRegFromString): reenabled allocating a direct register
2893         from string,
2894         * (assignResultValue): various beautifications,
2895         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2896         referenced function argument,
2897         * (genIpush): reenabled to allow stacked arguments, handles only
2898         ic->parmPush iCodes,
2899         * (genCall, genPcall): major changes to allow for variable argument
2900         functions, fixed a bug with falsely restoring stack pointer after
2901         returning from call,
2902         * (genFunction): pending code for critical function,
2903         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2904         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2905         * (genNearPointerGet): fixed bug with indirect reading, was always
2906         reading from INDF0
2907         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2908         pointers,
2909         * (genAddrOf): rewrote code to take address of a stacked function parameter
2910         * (genCast): fixed casting to generic pointer type,
2911         * src/pic16/gen.h: added AOP_STA,
2912         * (struct asmop): added field stk,
2913         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2914         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2915         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2916         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2917         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2918         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2919         generic pointers,
2920         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2921         and library paths,
2922         * (pic16_port structure): generic pointer size is set to 3,
2923         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2924         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2925         compiler warning,
2926         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2927         operand is an iTemp,
2928
2929 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2930
2931         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2932         * debugger/mcs51/simi.c: addapt new syntax of s51
2933
2934 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2935
2936         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2937         * src/pic16/pcode.c: commented out some calls to free() in order to
2938         fix bug #989576,
2939
2940 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2941
2942         * src/SDCCicode.h,
2943         * src/SDCCicode.c (isiCodeInFunctionCall),
2944         * src/avr/ralloc.c (selectSpil),
2945         * src/pic/ralloc.c (selectSpil),
2946         * src/pic16/ralloc.c (selectSpil),
2947         * src/ds390/ralloc.c (selectSpil),
2948         * src/hc08/ralloc.c (selectSpil),
2949         * src/xa51/ralloc.c (selectSpil),
2950         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2951         stack in the middle of a function call sequence (fixes bug #1020268)
2952         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2953         costs associated with the minimum switch case.
2954
2955 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2956
2957         * src/SDCC.lex: fixed bug #1030549
2958
2959 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2960
2961         * src/SDCCcse.h (struct cseDef),
2962         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2963         over a function call if the CSE is derived from a symbol whose
2964         address has been taken (fixes bug #1029883)
2965         * support/regression/tests/bug-1029883: a new regression test for
2966         this bug
2967
2968 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         * src/hc08/gen.c (emitinline): fixed bug #1029778
2971         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2972         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2973         and starts toward RFE #905167)
2974
2975 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2976
2977         * src/pic16/gen.c (mov2f): New function to move an operand to
2978         another without considering if it is a literal or a register,
2979         * (pic16_sameRegs): don't check if they are both AOP_REG,
2980         * (AccRsh): removed andmask=0 lines,
2981         * (genLeftShift): duplicated to be improved in future versions,
2982         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2983         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2984         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2985         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2986         * (insertBankSwitch): fixed inserting banksel directives algorithm
2987         for instructions that follow a skip instruction, this fixes a report
2988         for broken subtraction code generation,
2989         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2990         iCode is a left op, just in case result and right share the same
2991         registers
2992
2993 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2994
2995         * src/hc08/main.c,
2996         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2997         preservation of HX
2998         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2999         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3000         on 2004-09-12; it was buggy
3001
3002 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3003
3004         * src/SDCCsymt.h: removed RESULT_CHECK
3005         * src/SDCCast.c,
3006         * src/SDCCglue.c,
3007         * src/SDCCval.c,
3008         * src/pic/glue.c,
3009         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3010
3011 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3012
3013         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3014         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3015         configuration values no more rejected by compiler, they are assigned
3016         to configuration registers with a warning message instead,
3017         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3018         the for-loop so last conf register is emitted too,
3019         * (_pic16_initPaths): link library libsdcc.lib by default,
3020         * (_hasNativeMulFor): modified test for multiplication according to
3021         Raphael Neider's remarks. Integer multiplication is also done with
3022         support functions,
3023         * device/include/pic16/pic18fregs.h: corrected type error in while
3024         testing and including 18f6720 header file
3025
3026 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3027
3028         * src/pic16/device.h (pic16_options): removed field use_crt,
3029         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3030         until an optimization to handle single bits is added,
3031         * (pic16_loadFSR0): moved before genUnpackBits,
3032         * (genAnd): some white lines removed,
3033         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3034         leave_reset flags in pic16_options when using crt modules,
3035
3036 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3037
3038         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3039           for bugs 898889 & 979599. Also used some safer print instructions.
3040
3041 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3042
3043         * src/pic16/device.h (pic16_options_t): added field use_crt,
3044         crt_name, no_crt,
3045         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3046         catch a probable future bug,
3047         * src/pic16/gen.c: aopIdx function commented out,
3048         * (genAssign): commented out old code which used aopIdx,
3049         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3050         code, added if conditionals to take into account the --use-crt
3051         command line options,
3052         * src/pic16/main.c (pic16_optionsTable): added new command line
3053         options, --use-crt= and --no-crt,
3054         * (_pic16_linkEdit): now the proper crt object is added in the
3055         linker command line except than when --no-crt is specified,
3056         * src/pic16/pcode.c,
3057         * src/pic16/pcode.h: added some structures and functions for a new
3058         optimization scheme to compansate for instruction overhead between
3059         same iCodes, this scheme is currently under development and is not
3060         working in any way,
3061         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3062         to && operator,
3063         * device/lib/pic16/startup/crt0i.c,
3064         * device/lib/pic16/startup/crt0iz.c: added global char variable
3065         __uflags to force the generation of an idata section
3066
3067 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3068
3069         * doc/Makefile,
3070         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3071         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3072
3073 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3074
3075         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3076         Frieder) and clarified the default code optimization mode
3077
3078 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3079
3080         * src/SDCC.lex (doPragma, process_pragma),
3081         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3082         "opt_code_size", and "opt_code_balanced"
3083         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3084         regrouped options by category, added support for category headers
3085         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3086         and "--opt-code-size"
3087         * doc/sdccman.lyx: documented these new options and pragmas
3088         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3089         preference into account
3090
3091 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3092
3093         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3094           geniCodePreDec): Fixed bug 904237 by generating a warning
3095         * src/SDCCerr.h,
3096         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3097
3098 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3099
3100         * src/pic/device.c : When no max ram set validate full memory range.
3101         * src/pic/pcode.c,
3102         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3103
3104 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3105
3106         * device/lib/_gptrget.c,
3107         * device/lib/_gptrput.c: updated comment
3108         * device/lib/calloc.c,
3109         * device/lib/free.c,
3110         * device/lib/malloc.c,
3111         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3112         * src/SDCCcse.c (cseBBlock),
3113         * src/SDCCicode.c (printOperand, geniCodeArray),
3114         * src/SDCCicode.h (struct operand): fixed bug 868103
3115         * support/regression/tests/bug-868103.c: added
3116         * src/SDCCast.c (searchLitOp),
3117         * src/SDCCcse.h (struct cseDef),
3118         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3119         * src/SDCCicode.h (struct operand),
3120         * src/SDCCsymt.h (struct sym_link),
3121         * src/avr/gen.c (hasInc),
3122         * src/ds390/gen.c (hasInc),
3123         * src/hc08/gen.c (genPlusIncr, hasInc),
3124         * src/mcs51/gen.c (hasInc),
3125         * src/pic16/glue.c (pic16_printIvalChar),
3126         * src/pic16/ralloc.c (regWithIdx),
3127         * src/xa51/gen.c (hasInc) : removed warnings
3128         * src/SDCCast.c (createBlock): added comment ???
3129         * src/hc08/ralloc.c: updated comments
3130
3131 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3132
3133         * doc/sdccman.lyx: updated section on switch statements, added
3134         section about semaphore locking
3135         * doc/Makefile: added option -info for latex2html
3136         * device/lib/_gptrget.c,
3137         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3138
3139 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3140
3141         * src/pic/device.h,
3142         * src/pic/device.c,
3143         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3144          maxram is less than 0x100.
3145
3146 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3147
3148         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3149
3150 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3151
3152         * src/port.h,
3153         * src/mcs51/main.c,
3154         * src/ds390/main.c,
3155         * src/z80/main.c,
3156         * src/hc08/main.c,
3157         * src/pic/main.c,
3158         * src/pic16/main.c,
3159         * src/avr/main.c,
3160         * src/xa51/main.c
3161         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3162         a jump table is the best form for a switch statement, including
3163         automatic insertion of missing cases to make the case range
3164         continuous. Developed in collaboration with Frieder Ferlemann.
3165
3166 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3167
3168         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3169         accumulator result if it needs sign extension
3170
3171 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3172
3173         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3174
3175 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3176
3177         * device/lib/gbz80/printf.c,
3178         * device/lib/z80/printf.c: removed define for NULL
3179
3180 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3181
3182         * as/xa51/xa_link.c,
3183         * device/examples/ds390/ow390/ad26.c,
3184         * device/examples/ds390/ow390/cnt1d.c,
3185         * device/examples/ds390/ow390/counter.c,
3186         * device/examples/ds390/ow390/ds2480.h,
3187         * device/examples/ds390/ow390/ds2480ut.c,
3188         * device/examples/ds390/ow390/findtype.c,
3189         * device/examples/ds390/ow390/gethumd.c,
3190         * device/examples/ds390/ow390/owllu.c,
3191         * device/examples/ds390/ow390/ownetu.c,
3192         * device/examples/ds390/ow390/swt12.c,
3193         * device/examples/ds390/ow390/swtloop.c,
3194         * device/examples/ds390/ow390/temp.c,
3195         * device/examples/ds390/ow390/temp10.c,
3196         * device/examples/ds390/ow390/thermo21.c,
3197         * device/examples/ds390/ow390/tinilnk.c,
3198         * device/examples/ds390/ow390/tstfind.c,
3199         * device/examples/serialcomm/windows/serial.cpp,
3200         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3201         * device/include/reg51.h: fixed line endings for cvs
3202
3203 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3206         packRegsForAccUse, packRegisters): new accumulator register
3207         packing algorithm
3208         * support/regression/ports/hc08/support.c (_putchar): suppress
3209         warning of unused variable
3210         * src/SDCCicode.c: added SWAP entry to codeTable
3211
3212 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3213
3214         * device/lib/sprintf.c: forgot to add this file before previous commit
3215
3216 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3217
3218         * src/pic16/gen.c (genPackBits): added operand right in function
3219         parameters, load result directly if p_type is POINTER (that is
3220         called by genNearPointerSet)
3221         * (genUnPackBits): added operand left in function parameters,
3222         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3223         FSR0 if accessing bitfields,
3224
3225 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3226
3227         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3228           _print_format; updated printf, sprintf, vsprintf
3229         * device/include/asm/default/features.h: corrected comment/define
3230         * device/lib/Makefile.in: added sprintf.c
3231         * device/lib/libsdcc.lib: added sprintf module
3232         * device/lib/printf_large.c,
3233         * device/lib/vprintf.c,
3234         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3235           into these 3 files
3236         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3237         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3238         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3239           hc08 test
3240         * support/regression/tests/zeropad.c: define idata as data for hc08
3241
3242 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3243
3244         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3245         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3246         labels are referenced at least once (even if a reference is not found)
3247         * src/hc08/gen.c (emitcode): set isComment flag for comments
3248         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3249         loads), rules 6a..6b (optimize jumps to return)
3250
3251 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3252
3253         * device/lib/acosf.c (acosf),
3254         * device/lib/asinf.c (asinf),
3255         * device/lib/atanf.c (atanf),
3256         * device/lib/ceilf.c (ceilf),
3257         * device/lib/cosf.c (cosf),
3258         * device/lib/coshf.c (coshf),
3259         * device/lib/cotf.c (cotf),
3260         * device/lib/fabsf.c (fabsf),
3261         * device/lib/floorf.c (floorf),
3262         * device/lib/log10f.c (log10f),
3263         * device/lib/logf.c (logf),
3264         * device/lib/sinf.c (sinf),
3265         * device/lib/sinhf.c (sinhf),
3266         * device/lib/sqrtf.c (sqrtf),
3267         * device/lib/tanf.c (tanf),
3268         * device/lib/tanhf.c (tanhf),
3269         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3270         replaced all instances of "reentrant" in the library functions
3271         defined in math.h with this macro.
3272         * support/regression/tests/float_trans.c: reenabled test for hc08
3273
3274 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3275
3276         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3277         erroneously deleted
3278
3279 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3280
3281         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3282         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3283         multi-byte volatile operands are used
3284         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3285         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3286         initialization to area GSINIT0 so that it would always precede
3287         any static initializers in GSINIT
3288         * support/regression/tests/zeropad.c: fixed idata define for hc08
3289         * support/regression/tests/bug-927659.c,
3290         * support/regression/tests/float_trans.c: disabled tests for hc08
3291         pending missing library routines
3292         * .version: increased version number to 2.4.4 - hc08 port now passes
3293         regression tests
3294
3295
3296 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3297
3298         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3299         * Makefile.common.in,
3300         * as/Makefile,
3301         * as/hc08/Makefile.in,
3302         * as/mcs51/Makefile.in,
3303         * as/z80/Makefile.in,
3304         * debugger/mcs51/Makefile.in,
3305         * device/include/Makefile.in,
3306         * device/lib/Makefile.in,
3307         * doc/Makefile,
3308         * link/Makefile,
3309         * link/z80/Makefile.in,
3310         * packihx/Makefile.in,
3311         * sim/ucsim/main_in.mk,
3312         * sim/ucsim/avr.src/Makefile.in,
3313         * sim/ucsim/doc/Makefile.in,
3314         * sim/ucsim/gui.src/serio.src/Makefile.in,
3315         * sim/ucsim/hc08.src/Makefile.in,
3316         * sim/ucsim/s51.src/Makefile.in,
3317         * sim/ucsim/xa.src/Makefile.in,
3318         * sim/ucsim/z80.src/Makefile.in,
3319         * src/Makefile.in,
3320         * support/cpp2/Makefile.in,
3321         * support/librarian/Makefile,
3322         * support/makebin/Makefile: added DESTDIR to the install path proposed
3323         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3324         * doc/sdccman.lyx: added DESTDIR documentation
3325
3326 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3327
3328         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3329         instruction for interrupt handlers, use fast returns when returning
3330         from high priority interrupts
3331
3332 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3333
3334         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3335         code generation
3336         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3337         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3338         bugs, ported much of Bernhard's code from mcs51
3339         * src/mcs51/gen.c (genSend),
3340         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3341         than one when calling a reentrant function
3342         * device/lib/_mullong.c: defined an alternate struct layout for big
3343         endian ports (hc08)
3344
3345 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3346
3347         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3348         test
3349
3350 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3351
3352         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3353         are sane and complete before asking the port its prefered parameter
3354         passing method (fixes bug #1017633)
3355         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3356         and _ret3
3357
3358 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3359
3360         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3361         problem in bitfields >= 8 bits.
3362
3363 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3364
3365         * src/SDCCsymt.c: undid changes that were not meant to be committed
3366
3367 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3368
3369         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3370
3371 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3372
3373         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3374           copied and wrong bit got inverted
3375
3376 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3377
3378         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3379         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3380         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3381         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3382         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3383         assignments to bitfields at known addresses
3384         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3385         reads from bitfields at known addresses
3386         * src/hc08/ralloc.c (packRegisters),
3387         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3388         genhc08Code): optimize pointer get values used as conditionals
3389         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3390         and branch
3391
3392 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3393
3394         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3395         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3396         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3397         as conditionals
3398
3399 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3400
3401         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3402
3403 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3404
3405         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3406         related problems
3407
3408 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3409
3410         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3411
3412 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3413
3414         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3415         mcs51 port
3416
3417 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3418
3419         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3420
3421 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3422
3423         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3424         cases use more compact code.
3425
3426 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3427
3428         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3429
3430 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3431
3432         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3433
3434 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3435
3436         * src/SDCCsymt.h,
3437         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3438         parameter of changePointer() from symbol* to sym_link*
3439         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3440         * src/SDCCsymt.c (compareType): void* type is castable to other
3441         pointers, but not necesarily an exact match.
3442         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3443         is no longer blindly treated as an exact match.
3444         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3445
3446 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3447
3448         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3449
3450 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3451
3452         * src/pic/gen.c,
3453         * src/pic/pcode.c,
3454         * src/pic/ralloc.h,
3455         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3456
3457 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3458
3459         * src/pic/device.c,
3460         * src/pic/device.h,
3461         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3462
3463 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3464
3465         * src/mcs51/gen.c (emitcode): fixed bug #992819
3466
3467 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3468
3469         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3470           there's no need to make it worse
3471
3472 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3473
3474         * src/mcs51/ralloc.c (deassignLR),
3475         * src/ds390/ralloc.c (deassignLR),
3476         * src/hc08/ralloc.c (deassignLR),
3477         * src/z80/ralloc.c (deassignLR),
3478         * src/pic/ralloc.c (deassignLR),
3479         * src/pic16/ralloc.c (deassignLR),
3480         * src/avr/ralloc.c (deassignLR),
3481         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3482         rlivePoint): fixed another part of bug #971834
3483
3484 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3485
3486         * src/z80/main.c: enabled "critical" keyword
3487         * src/z80/mappings.i,
3488         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3489         functions (fixes bug #979646)
3490         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3491
3492 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3493
3494         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3495           such as c:\mydir.
3496
3497 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3498
3499         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3500           doesn't disable too much optimizations
3501
3502 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3503
3504         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3505
3506 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3507
3508         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3509
3510 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3511
3512         * src/pic/gen.c tidied up tabs
3513         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3514         * src/pic/main.c tidied up tabs
3515         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3516         * src/pic/pcoderegs.c tidied up tabs
3517         * src/pic/ralloc.c tidied up tabs
3518
3519 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3520
3521         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3522         to S_FIXED for pic16 port and when symbol is not in level 0,
3523         allocate for S_REGISTER storage class and pic16 port, too,
3524         * src/pic16/device.h: prototype for checkSym,
3525         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3526         * (pic16_assignConfigWordValue): test the value and the mask to
3527         validate that the value is suitable for the configuration word,
3528         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3529         collect extern declared symbols, don't emit symbol twice, check
3530         first if symbol is in publics set first,
3531         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3532         * added command line '--fstack' which enables an experimental
3533         feature for stack access, too buggy to be used yet...
3534         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3535         * (pic16_allocDirReg): when register has storage class S_REGISTER
3536         allocate in pic16_dynAccessRegs,
3537         * device/include/pic16/pic18f????.h: modified configuration word
3538         naming convention, words started as CONFIG0H but should be CONFIG1H
3539
3540 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3541
3542         * device/include/mcs51reg.h: fixed bug 970993
3543
3544 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3545
3546         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3547         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3548         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3549         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3550         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3551         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3552           error/warning numbers,
3553           added function setWarningDisabled()
3554         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3555         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3556           _memcmp.c _memmove.c calloc.c realloc.c free.c
3557         * support/regression/tests/malloc.c: added tests for new functionality
3558         * support/regression/tests/zeropad.c: added tests for truncated initializers
3559           and initialized char arrays starting with '\x0'
3560         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3561
3562 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3563
3564         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3565
3566 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3567
3568         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3569         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3570         peephole 177.e. Thanks to anonymous
3571
3572 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3573
3574         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3575         function isn't used in the source but referenced as a
3576         variable initializer then declare it as extern in .asm file
3577
3578 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3579
3580         * .version: increased version number to 2.4.3
3581
3582         Adding version extension according to ChangeLog CVS revision
3583         * src/Makefile.in (target all): added dependency 'version.h'
3584         * (rule version.h): added rule to create version.h from ChangeLog,
3585         * (rule dep): added dependency version.h,
3586         * src/version.awk: AWK script to create version.h
3587         * src/SDCCdwarf2.c (dwWriteModule),
3588         * src/SDCCglue.c (initialComments),
3589         * src/SDCCmain.c (printVersionInfo): modified to write after
3590         version string the version extension number,
3591         * src/SDCCutil.c: included "version.h"
3592         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3593         number,
3594         * src/SDCCutil.h: added prototype for getBuildNumber
3595
3596         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3597         includeDirsSet, too,
3598         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3599         const char [] is found in function prototype...
3600
3601         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3602         moving to WREG with source is already in WREG,
3603         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3604         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3605         * (aopForSym): stack'ed symbols are partially supported, added
3606         if-clause to support symbols in FARSPACE,
3607         * (sameRegs): added test for AOP_ACC to see if registers are same,
3608         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3609         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3610         * (pic16_popRegFromString): will not allocate a new register if it
3611         doesn't find one by name, bug may have introduced...
3612         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3613         * (genIpush): revived to use pic16 port's stack,
3614         * (genAddrOf): added incomplete case for stack'ed operand,
3615         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3616         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3617         can handle multibyte operands,
3618         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3619         * (pic16initialComments): added message for MPLAB compatibility
3620         mode enabled,
3621         * src/pic16/main.h: prototype for pic16_mplab_comp,
3622         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3623         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3624         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3625         because of increased complexity of procedure,
3626         * (_process_pragma): stack pragma changed to format 'stack pos len',
3627         emit symbol '_stack_end' to conform with gplink,
3628         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3629         to search for register,
3630         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3631         PO_GPR_REGISTER,
3632         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3633         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3634         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3635         case for PO_GPR_REGISTER,
3636         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3637         dies, the new era is ahead !...
3638         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3639         pic16_dynInternalRegs,
3640         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3641         * (pic16_allocDirReg): minor optimizations and bug fixes,
3642         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3643
3644         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3645         load stack and frame pointer with address of 'stack_end' symbol
3646
3647 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3648
3649         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3650         without source code but only variable initializers
3651
3652 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3653
3654         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3655         external are not declared as extern to reduce overhead while linking
3656
3657 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3658
3659         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3660
3661 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3662
3663         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3664           Yee Keat for the patch
3665         * src/SDCCast.c (decorateType): fixed bug #979599
3666         * src/ds390/gen.h: removed local fReturnSizeDS390
3667         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3668         * src/ds390/gen.c (genAnd, genOr, genXor),
3669         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3670
3671 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3672
3673         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3674         add relFilesSet to $3, manipulate $2 to handle linking of object
3675         files without source files in command line,
3676         * device/include/pic16 (all headers): added ID location macros,
3677         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3678         entries for ID location bytes,
3679         * (pic16_assignIdByteValue): NEW,
3680         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3681         added field dumpcalltree to pic16_options_t,
3682         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3683         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3684         emitting rFalseIfx label after check_carry label,
3685         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3686         pic16_emitDIRegs), NEW
3687         * (pic16glue): dump .calltree file when option --calltree found,
3688         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3689         * (_pic16_genAssemblerPreamble): emit ID locations after
3690         configuration registers,
3691         * (pic16_linkCmd): modifications of the link command,
3692         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3693         * (pic16_pCodeInitRegisters): don't init stack registers,
3694         * (pic16_findPrevInstruction): fixed bug,
3695         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3696         bug with immediate registers,
3697         * (buildCallTree): traces stack push and pop,
3698         * (pct2): dump also stack usage for each function,
3699         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3700         * (pic16_allocDirReg): various modifications,
3701         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3702         fixed to 1,
3703
3704 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3705
3706         * src/pic16/pcode.c: removed buggy double colon
3707
3708 2004-07-01 Borut Razem <borut.razem AT siol.net>
3709
3710         * support/scripts/sdcc.nsi: added include/pic16 to setup
3711
3712 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3713
3714         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3715         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3716         target 'clean',
3717         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3718         specific command line arguments. Also added sample lkr script
3719         for placing a variable at a specific memory bank.
3720         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3721         at a specific memory bank,
3722         * (pic16_dump_isection): fixed bug which caused string literals to
3723         be omitted when dumping idata section,
3724         * (pic16_groupRegistersInSection): added code to handle registers
3725         in specific memory banks,
3726         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3727         public, all references are renamed too,
3728         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3729         AOP_DPTR2,
3730         * (pic16_storeForReturn): added case to handle when dest is WREG,
3731         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3732         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3733         pic16_rel_udata, check to see if that register is marked as being
3734         a member of a specific memory bank,
3735         * (pic16_printIvalCharPtr): added code to add string literals either
3736         to code or the idata sections,
3737         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3738         also accept the 'udata' pragma,
3739         * src/pic16/main.h: new structure types sectName and sectSym
3740         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3741         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3742         * (pic16_findPrevInstruction): fixed, it returned nothing,
3743         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3744         instruction combinations,
3745         * (pic16_FixRegisterBanking): heavily reorganised,
3746         * (pic16_AnalyzeBanking): if generating banksel directives is
3747         disabled, then don't call FixRegisterBanking at all,
3748         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3749         completely removed,
3750         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3751
3752 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3753
3754         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3755         Phuah Yee Keat <yk.phuah AT nestac.com>
3756
3757 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3758
3759         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3760         correctly the IVT even if it is relocated to some other location
3761
3762 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3763
3764         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3765         * device/include/pic16/pic18f2220.h: NEW,
3766         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3767         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3768         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3769         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3770         nodefaultlibs, ivt_loc is the location of the interrupt vector
3771         table, and nodefaultlibs signs that default libraries should not be
3772         linked in link stage,
3773         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3774         according to --ivt-loc argument,
3775         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3776         when pragma stack is found,
3777
3778 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3779
3780         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3781         256 (range check), 257 (do while), 258.a-f (bit banging
3782         f.e. on 3-wire SPI bus)
3783
3784 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3785
3786         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3787         variables used exclusively within a loop
3788
3789 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3790
3791         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3792
3793 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3794
3795         * src/SDCClrange.c (computeClash): fixed bug #971834
3796
3797 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3798
3799         * src/mcs51/gen.c (genCmp): fixed bug #975903
3800         * src/hc08/gen.c (operandsEqu),
3801         * src/ds390/gen.c (operandsEqu),
3802         * src/z80/gen.c (operandsEqu),
3803         * src/pic/gen.c (operandsEqu),
3804         * src/pic16/gen.c (operandsEqu),
3805         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3806         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3807
3808 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3809
3810         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3811
3812 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3813
3814         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3815         default case in switch statement,
3816         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3817         to eliminate problem with initialisation of pointers, but problem
3818         still exists,
3819         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3820         * (emitStaticSegment): removed various lines emitting debug info,
3821         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3822         added processor registers for utilizing EEPROM,
3823         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3824         configurable and set 8
3825
3826 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3827
3828         * .version: increased version number to 2.4.2,
3829
3830         Cumulative patch for pic16 port
3831         * src/pic16/device.c: changed scheme to dump initial values for
3832         variables in idata segment, all print_idata* functions were removed,
3833         now the pic16_printIval* will be called,
3834         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3835         * _pic16_printPointerType, pic16_printPointerType,
3836         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3837         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3838         NEW, similar to the respective functions in SDCCglue.c,
3839         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3840         way, emitting hex bytes,
3841         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3842
3843 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3844
3845         * src/avr/ralloc.c (serialRegAssign),
3846         * src/xa51/ralloc.c (serialRegAssign),
3847         * src/pic/ralloc.c (serialRegAssign),
3848         * src/pic16/ralloc.c (serialRegAssign),
3849         * src/hc08/ralloc.c (serialRegAssign),
3850         * src/z80/ralloc.c (serialRegAssign),
3851         * src/ds390/ralloc.c (serialRegAssign),
3852         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3853
3854 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3855
3856         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3857         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3858
3859 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3860
3861         Cumulative patch for pic16 port:
3862         * src/pic16/device.h (typedef PIC16_device) modified fields for
3863         defining microcontrollers,
3864         * src/pic16/device.c: added new info for all devices in Pics16 array,
3865         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3866         to be optimised out by the pCode optimiser,
3867         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3868         specially, bug reported by G.M. Gallant,
3869         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3870         as force'd so that cannot be optimised out by pCode optimiser,
3871         * src/pic16/pcode.c,
3872         * src/pic16/pcodepeeph.c,
3873         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3874         they are disabled by default, but can be enabled explicit with
3875         command argument --denable-peeps, for testing,
3876         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3877         --pomit-ivt in COMPILE_FLAGS
3878
3879 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3880
3881         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3882           compilation on MSVC
3883
3884 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3885
3886         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3887
3888 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3889
3890         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3891         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3892
3893 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3894
3895         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3896         would only assign 0x300001 register.
3897
3898 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3899
3900         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3901         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3902
3903 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3904
3905         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3906         for ds80c400
3907         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3908         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3909         added peephole 254 (left shift), 255 (jump table)
3910
3911 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3912
3913         * device/lib/Makefile.in: removed comment line with model-pic16,
3914         * (target port-specific-objects-pic16): the libraries and objects
3915         are copied to the build directory form the device/lib/pic16/bin
3916         directory
3917
3918         Cumulative patch concerning pic16 port:
3919         * library directory has been re-organized,
3920         * added support for PIC18F1220,
3921         * added headers and library sources for chips 18f1220,18f6520,
3922         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3923
3924         * configuration registers setting has changed, now each supported
3925         device has a complete description of the registers it uses,
3926         * all initialisations are moved to idata sections, these section
3927         can be absolute or relocatable,
3928         * fixed initialisation of codespace variables,
3929         * fixed warning about PCLATU and gpsim,
3930         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3931         * (genAssign): use table reads when assigning from variables in codespace,
3932         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3933         char/int variables placed in codespace,
3934         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3935         registers set in .asm file, no need for --pomit-config-words anymore,
3936         * (pic16glue): some 8051 legacy segments are commented out
3937         (to be removed completely),
3938         * added support for alternative assembler and linker with --asm=
3939         and --link= command line arguments,
3940         * peepholes are disabled automatically in the port, no need to
3941         specify on command line,
3942         * port supports natively char/int/long multiplication, but converts
3943         all divisions to support functions,
3944         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3945         to the file set in variable $2,
3946         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3947         strings in ASCII format and not in hex,
3948         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3949         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3950         allocate proper register if iCodes aren't temporary,
3951
3952 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3953
3954         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3955
3956 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3957
3958         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3959         is commented out
3960
3961 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3962
3963         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3964         computed address is reused
3965         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3966         multi-byte bitfields
3967
3968 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3969
3970         * src/z80/gen.c: (genArrayInit): must check for pointers too
3971
3972 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3973
3974         * support/regression/tests/zeropad.c: never meant to commit the
3975           nestedstruct test: removed, added check for GCC version
3976
3977 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3978
3979         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3980         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3981         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3982           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3983           bugs 928906 and 954082 half-empty initializers
3984         * src/SDCCsymt.h,
3985         * src/SDCCsymt.c (getAllocSize): added for above fix
3986         * src/z80/gen.c (genArrayInit): fixed bug 741044
3987         * support/regression/tests/zeropad.c: added tests
3988
3989 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3990
3991         * src/pic16/device.c (pic16_dump_section): corrected bug which
3992         caused some symbols of the libraries to be misplaced
3993
3994 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3995
3996         * src/pic16/glue.c,
3997         * src/pic16/ralloc.h,
3998         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3999         to fix conflict with pic port
4000
4001 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4002
4003         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4004         externs configuration variables,
4005         * src/pic16/ralloc.h,
4006         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4007         prototype in header, commented out some debug messages
4008
4009 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4010
4011         * src/pic16/glue.c,
4012         * src/pic16/main.c,
4013         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4014         for gpasm COFF object generation. Thanks to D. Hawkins for
4015         his patch info
4016
4017 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4018
4019         * src/ds390/main.c,
4020         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4021         Brock for spotting this)
4022         * src/ds390/gen.c (genEndFunction),
4023         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4024         interrupt handler and critical. Disable push/pop optimizations when
4025         peephole optimizations disabled.
4026
4027 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4028
4029         Updated pic16 library sources and headers.
4030         * device/lib/pic16/pic18f*/ ,
4031         * device/include/pic16/*.h: modified to handle structured SFR
4032         definitions
4033
4034 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4035
4036         * src/port.h (PORT structure): added hook initPaths, now each
4037         port can declare its own default search paths,
4038         which can been seen with the --print-search-dirs option,
4039         see pic16 port for example,
4040         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4041         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4042         * (doPrintSearchDirs): NEW, replaces in a central manner the
4043         printing of search dirs which was split in set*Paths functions,
4044         * (main): added call to port->initPaths and doPrintSearchDirs,
4045         * src/avr/main.c,
4046         * src/ds390/main.c,
4047         * src/hc08/main.c,
4048         * src/izt/i186.c,
4049         * src/izt/tlcs900h.c,
4050         * src/mcs51/main.c,
4051         * src/pic/main.c,
4052         * src/pic16/main.c: modified port structures to reflect addition of
4053         initPaths hook,
4054
4055         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4056         * (pic16_dump_section): for registers in same address reserve memory once,
4057         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4058         to no_banksel,
4059         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4060         result is greater in size than right or left,
4061         * (pic16_genUMult8X8_8): there are some cases where the result can
4062         be 16 bits size, so handle these,
4063         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4064         * (pic16_outBitC): modified to emit pcodes,
4065         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4066         or not,
4067         * (genDivOneByte): implemented algorithm to divide 8-bits,
4068         * (genCmp): uncommented goto, but issues still exist,
4069         * (genAnd): fixed a bug with variables >8bits,
4070         * (genPackBits): optimization added that uses BCF/BSF to change a
4071         single bit,
4072         * (genAssign): fixed bug when assigning floating point literals,
4073         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4074         __sdcc_gsinit_startup label,
4075         * src/pic16/main.c (_pic16_init): removed search directory
4076         initialisations,
4077         * (_pic16_initPaths): NEW, used to initialise search directories,
4078         * (_hasNativeMulFor): support functions for all except char/int
4079         multiplication, and char division,
4080         * (PIC16_port struct): modified entry for native mul support,
4081         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4082         no_banksel option,
4083         * (buildCallTree): call to register_usage is ifdef'ed out,
4084
4085 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4086
4087         * device/include/string.h: applied Stas Sergeev's patch to make this
4088         header file compatible with the preprocessor -Wundef option
4089         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4090         failure (fixes bug #941458)
4091
4092 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4093
4094         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4095         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4096         that the variable, not the function, should be static
4097         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4098         to be consistent with non-literal case
4099
4100 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4101
4102         * src/SDCCast.c (isConformingBody): fixed bug #949967
4103         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4104         convilong): fixed bug #952086
4105
4106 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4107
4108         * src/SDCCmem.c (allocVariables): fixed bug #955321
4109
4110 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4111
4112         * src/hc08/main.c (_hc08_genAssemblerEnd),
4113         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4114         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4115         completely eliminated the use of a temporary file
4116         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4117         when more than one file linked
4118         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4119
4120 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4121
4122         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4123         which fixes bug #543481
4124         * support/regression/tests/bug-751703.c: fixed comments left from a
4125         cut and paste error
4126         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4127         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4128         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4129         scopes
4130         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4131         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4132         are now changed to underscores in moduleName
4133
4134 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4135
4136         * as/mcs51/lkmem.c: better fix for bug #954173
4137
4138 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4139         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4140
4141         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4142         * device/include/c8051f000.h,
4143         * device/include/c8051f120.h,
4144         * device/include/c8051f300.h,
4145         * device/include/c8051f310.h,
4146         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4147         PWM16) and detab'ed
4148
4149 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4150
4151         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4152         and mailing lists, doc'ed --no-peep-comments, removed reference
4153         to knoppix (newest version has no LyX/LaTeX), other minor changes
4154         * src/SDCCglue.c (glue): save 2 bytes stack space with
4155         option --main-return. The ljmp could probably be avoided too
4156
4157 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4158
4159         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4160
4161 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4162
4163         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4164         * src/SDCCopt.c (isLocalWithoutDef),
4165         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4166         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4167         (credit to Maarten Brock for patch #949363, on which this is based)
4168         * support/regression/tests/bug-751703.c: some test cases of extern used
4169         within inner scopes.
4170
4171 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4172
4173         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4174         SPEC_STRUCT
4175         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4176         struct definitions
4177         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4178         dwWriteLabel): fix to create valid debugger symbols even when
4179         the module name has non-alphanumeric symbols in it
4180         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4181         when a variable's allocation has been optimized away
4182
4183
4184 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4185
4186         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4187         * src/hc08/main.c,
4188         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4189         * src/mcs51/main.c,
4190         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4191         * src/ds390/main.c,
4192         * src/z80/gen.c (z80_emitDebuggerSymbol),
4193         * src/z80/main.c,
4194         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4195         * src/pic/main.c,
4196         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4197         * src/pic16/main.c,
4198         * src/avr/gen.c (avr_emitDebuggerSymbol),
4199         * src/avr/main.c,
4200         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4201         * src/xa51/main.c,
4202         * src/SDCCdebug.c (emitDebuggerSymbol),
4203         * src/SDCCdebug.h,
4204         * src/port.h: added a debugger struct to the port struct. Added a
4205         callback for defining debugger symbols
4206
4207         * src/SDCCast.c (createLabel),
4208         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4209         with isitmp = 1
4210         * src/SDCCicode.h,
4211         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4212         iCode back to the ast for the function
4213
4214         * src/hc08/ralloc.c (hc08_assignRegisters),
4215         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4216         unneeded fields from the regs struct.
4217         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4218         pushReg() & pullReg() functions instead of emitcode()
4219
4220         * src/hc08/gen.c (genLabel, genhc08Code),
4221         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4222
4223         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4224         debugger hooks
4225
4226         * src/hc08/gen.c (genEndFunction, genhc08Code),
4227         * src/hc08/gen.h,
4228         * src/mcs51/gen.c (genEndFunction, gen51Code),
4229         * src/mcs51/gen.h,
4230         * src/ds390/gen.c (genEndFunction, gen390Code),
4231         * src/ds390/gen.h,
4232         * src/z80/gen.c (genEndFunction, genZ80Code),
4233         * src/z80/gen.h,
4234         * src/z80/z80.h,
4235         * src/pic/gen.c (genEndFunction, genpic14Code),
4236         * src/pic/gen.h,
4237         * src/pic16/gen.c (genEndFunction, genpic16Code),
4238         * src/pic16/gen.h,
4239         * src/avr/gen.c (genEndFunction, genAVRCode),
4240         * src/avr/gen.h,
4241         * src/xa51/gen.c (genEndFunction, genXA51Code),
4242         * src/xa51/gen.h,
4243         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4244         specific code to cdbFile.c and out of the backend code generators
4245
4246         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4247         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4248         starting address is now 0
4249
4250         * as/hc08/asm.h,
4251         * as/hc08/m08pst.c,
4252         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4253         assembler directive for DWARF support
4254         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4255
4256         * src/src.dsp,
4257         * src/Makefile.in,
4258         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4259
4260 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4263         and inappropriate peephole optimization in jump tables
4264
4265 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4266
4267         * as/hc08/m08pst.c,
4268         * src/SDCCglue.c: sdccopt works for the hc08 port now
4269
4270 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4271
4272         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4273
4274 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4275
4276         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4277
4278 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4281         rules
4282         * src/SDCCmain.c,
4283         * src/SDCCglobl.h,
4284         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4285         comments from the peephole optimizer replacement rules
4286         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4287         symbols
4288         * src/SDCCcse.c (updateSpillLocation),
4289         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4290         equivalents
4291         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4292         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4293         objects far pointers
4294
4295 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4296
4297         * src/SDCCsymt.h: a missing part of my last change
4298         * src/pic/ralloc.c (regTypeNum),
4299         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4300
4301 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/SDCCicode.h,
4304         * src/SDCCicode.c (aggrToPtrDclType),
4305         * src/SDCCptropt.h,
4306         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4307         ptrPseudoSymConvert),
4308         * src/pic/ralloc.c (regTypeNum),
4309         * src/pic16/ralloc.c (regTypeNum),
4310         * src/hc08/ralloc.c (regTypeNum),
4311         * src/ds390/ralloc.c (regTypeNum),
4312         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4313         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4314
4315 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4316
4317         * link/z80/lkmain.c (afile),
4318         * as/hc08/lkmain.c (afile),
4319         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4320         prevent a pointer problem when a filename has no directory and
4321         no extension specified.
4322
4323 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4324
4325         * link/z80/lkmain.c (afile): allow periods in directory names
4326         * link/z80/lkmain.c (afile),
4327         * as/mcs51/lkmain.c (afile),
4328         * as/hc08/lkmain.c (afile): allow linker script file to have an
4329         extension other than ".lnk"
4330         * link/z80/lklex.c (getfid),
4331         * link/z80/lkmain.c (parse),
4332         * as/mcs51/lklex.c (getfid),
4333         * as/mcs51/lkmain.c (parse),
4334         * as/hc08/lklex.c (getfid),
4335         * as/hc08/lkmain.c (parse): Support comments in the linker script
4336         file on lines by themselves and after filenames
4337
4338 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4339
4340         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4341
4342 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4343
4344         * src/z80/peeph-z80.def: removed some peephole rules that don't
4345         work with multibyte arithmetic (fixed bug #937126)
4346         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4347         to registers and not global variables
4348         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4349         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4350         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4351         checking for assignments not internally generated (fixed bug #931895)
4352         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4353         structure member (fixed bug #930072)
4354
4355 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4356
4357         * src/SDCCmain.c (linkEdit),
4358         * src/hc08/main.c (_hc08_parseOptions),
4359         * as/hc08/Makefile.in,
4360         * as/hc08/aslink.h,
4361         * as/hc08/asm.h,
4362         * as/hc08/m08pst.c,
4363         * as/hc08/lkrloc.c (relr, rele),
4364         * as/hc08/lkarea.c (lnkarea)
4365         * as/hc08/lkmain.c (afile, parse),
4366         * as/hc08/lkelf.c: support for ELF output
4367         * as/hc08/lks19.c (s19),
4368         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4369
4370 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4371
4372         * as/mcs51/lkihx.c: Fixed bug #899105.
4373
4374 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4375
4376         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4377         .dsp files from Unix to DOS.
4378
4379 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4380
4381         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4382         function pointers; we have been compliant for several months now.
4383         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4384         change that was accidently commented out
4385         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4386         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4387         bug #922319
4388
4389 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4390
4391         * src/hc08/gen.c: output of all of the internal debugging information
4392         is now controlled by the D() macro; it is disabled by default
4393
4394 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4395
4396         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4397         harder to keep the same registers during a CAST iCode
4398         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4399         long via int can be done in a single cast, if the signedness is
4400         correct.
4401         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4402         putchar() in tinibios.c in ds390's library
4403
4404 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4405
4406         * src/SDCCast.c (decorateType): fixed bug #898889,
4407         cast result of a literal complement too
4408         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4409         fixed check for bitfields
4410
4411 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4412
4413         * src/SDCCicode.c (geniCodeLogic): made it static,
4414         (geniCodeLogicAndOr): added in order to fix bug #905492,
4415         (ast2iCode): fixed bug #905492
4416         * support/regression/tests/bug-905492.c: added
4417         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4418         (processParms): fixed bug #927659: don't copy parms, this will clear
4419         decorated flag
4420         * support/regression/tests/bug-927659.c: added
4421
4422 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4423
4424         * src/SDCCast.c (addCast): don't cast float to char
4425         * device/lib/libsdcc.lib: added _memmove
4426
4427 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4428
4429         * device/lib/large/Makefile: fixed parallel execution by
4430         replacing `make` by `$(MAKE)`
4431
4432 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4435         offsets (fixes bug #923936)
4436
4437 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4438
4439         * device/lib/small/Makefile: fixed parallel execution by
4440         replacing `make` by `$(MAKE)`
4441
4442 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4443
4444         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4445
4446 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4447
4448         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4449         * src/regression/Makefile: Regression test was not running.
4450
4451 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4452
4453         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4454         complement if possible
4455         * src/SDCCval.c (valComplement),
4456         * src/SDCCicode.c (operandOperation): fixed complement of literal
4457         * support/regression/tests/onebyte.c (testComplement): added
4458
4459 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4460
4461         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4462         return an optimized tree; actually replace actParm with the new tree
4463         * src/SDCCast.h: added some parantheses to remove side effects
4464         * support/regression/tests/bug-920866.c
4465
4466 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4467         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4468         Bit operands were not being handled properly in the pic14 port.
4469         (now src/regression/add.c passes again).
4470
4471 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4472
4473         * src/SDCC.y (labeled_statement): case and default no longer require
4474         a following statement (RFE #893037)
4475
4476 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4477
4478         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4479         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4480         disabled (fixes bug #916294)
4481         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4482         "mov a,acc"; patch provided by Lenny Story
4483         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4484
4485 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4486
4487         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4488         functions
4489         * src/ds390/gen.c (genFunction, genEndFunction),
4490         * src/ds390/ralloc.c (ds390_assignRegisters),
4491         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4492         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4493         pushed if there are parameters passed on the stack. Also, a cleaner
4494         way to decide if r0/r1 should be pushed/popped. (Together they fix
4495         bug #918693)
4496
4497 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4498
4499         * doc/sdccman.lyx,
4500         * device/lib/mcs51/crtpagesfr.asm,
4501         * device/lib/mcs51/crtxinit.asm,
4502         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4503         to avoid confusion with Si Lab's SFRPAGE register.
4504
4505 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4506
4507         * src/SDCCglue.c (emitMaps): allow public sfr variables
4508         * src/SDCCglue.c (initialComments): include compiler build date
4509         with compiler version and put the timestamp of the generated
4510         assembly file on a serperate line to be less confusing.
4511         * src/port.h: added genInitStartup hook
4512         * src/avr/main.c,
4513         * src/ds390/main.c,
4514         * src/hc08/main.c,
4515         * src/pic/main.c,
4516         * src/pic16/main.c,
4517         * src/xa51/main.c,
4518         * src/z80/main.c: genInitStartup initialize as NULL (default to
4519         historical behaviour)
4520         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4521         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4522         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4523         library instead of hard coding it into the compiler.
4524         * support/regression/ports/mcs51-stack-auto/spec.mk,
4525         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4526         * device/lib/mcs51/Makefile,
4527         * device/lib/small/Makefile,
4528         * device/lib/large/Makefile,
4529         * device/lib/mcs51/crtpagesfr.asm,
4530         * device/lib/mcs51/crtstart.asm,
4531         * device/lib/mcs51/crtxclear.asm,
4532         * device/lib/mcs51/crtxinit.asm,
4533         * device/lib/mcs51/crtclear.asm,
4534         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4535         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4536         and into user configurable files.
4537         * device/lib/clean.mk: clean mcs51 directory too
4538         * support/regression/tests/longlit.c: added static to T1 declaration
4539         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4540         accesses in the initialization code
4541
4542 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4543
4544         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4545         OSCTRIMVAL as noted in bug #916008
4546
4547 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4548
4549         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4550         in loops with multiple exits (reported as incorrect registers
4551         used by Martin Helmling in Sdcc-user list)
4552
4553 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4554
4555         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4556         made ds390 register extensions look less like error messages
4557
4558 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4559
4560         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4561         reported by Adam Wozniak in Sdcc-user list
4562
4563 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4564
4565         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4566         arithmetic optimizations, added debug output
4567
4568 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4569
4570         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4571         * sdcc.spec: updated and split sdcc into 3 rpms
4572         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4573         needed for literals of LEFT_OP and '+'
4574         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4575         introduced RESULT_TYPE_NOPROM
4576         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4577         left shift
4578         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4579         limited promotion to int only for '*'
4580         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4581
4582 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4583
4584         * src/pic16/gen.c (genSkip),
4585         (genc16bit2lit), (gencjneshort): commented out
4586         (is_LitOp): new helper function, checks operand type
4587         (genCmpEq): rewritten
4588
4589 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4590
4591         * support/regression/tests/bug-908454.c: added
4592
4593 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4594
4595         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4596         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4597         (geniCodeCast): cosmetic, don't preserve bit storage class
4598         (geniCodeLeftShift): added promotion
4599         (geniCodeLogic): fixed regression
4600         * src/SDCCsymt.c (computeTypeOr): accept bits too
4601         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4602
4603 2004-03-07  Borut Razem <borut.razem AT siol.net>
4604
4605         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4606
4607 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4608
4609         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4610         version of pic16_genPackRegisters which does not check if ic is a
4611         CAST operator,
4612         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4613         function cause string1.c regression test fails
4614
4615 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4616
4617         * sim/ucsim/configure.in,
4618         * sim/ucsim/configure,
4619         * sim/ucsim/doc/Makefile.in: use docdir
4620         * src/SDCC.y: fixed sbit atrributes
4621         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4622         * src/SDCCast.c (decorateType): |^& need special promotion handling
4623         * src/SDCCast.h,
4624         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4625         * src/SDCCsymt.h (computeType),
4626         * src/SDCCicode.c: computeType() needs op
4627         * src/SDCCsymt.c (checkTypeSanity),
4628         * doc/sddman.lyx: "plain" bitfields are unsigned
4629         * src/SDCCsymt.c (computeTypeOr): added
4630         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4631         |^& ops
4632         * src/SDCCval.c (val*): computeType() needs op
4633         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4634         * support/regression/tests/onebyte.c: added tests for |^&
4635
4636 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4637
4638         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4639         for writing icode into asm output.
4640
4641 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4642
4643         * src/pic16/device.c: added some debug lines enabled
4644         with macro DEBUG_CHECK,
4645         * src/pic16/genarith.c: more debug in genPlus,
4646         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4647         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4648         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4649         * (aopForSym): onStack symbols are re-placed in data memspace,
4650         and onStack flag is cleared,
4651         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4652         copy temporary pcodeop,
4653         * (genPcall): added warning for not updating PCLATU,
4654         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4655         always true for pic16 port,
4656         * (genMultOneWord): NEW, supports integer multiplication,
4657         * (genMult): modified to call genMultOneWord,
4658         * (ifxForOp): added warning when return NULL,
4659         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4660         flag is set before call to operandFromSymbol for implicit
4661         added structures,
4662         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4663         options.intlong_rent are set by default,
4664         * (_hasNativeMulFor): modified to allow port generation of integer
4665         multiplication,
4666         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4667         set regtype to REG_SFR for all registers, restricting seting the
4668         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4669
4670 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4671
4672         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4673         more than 500 times in the regression tests
4674
4675 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * support/Util/SDCCerr.h,
4678         * support/Util/SDCCerr.c,
4679         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4680         enumerator_list),
4681         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4682         for symbol conflicts.
4683         * support/valdiags/tests/enum.c,
4684         * support/valdiags/tests/tentdecl.c,
4685         * support/valdiags/tests/struct.c: expect possible error messages
4686         referring to original symbol definitions.
4687         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4688         * src/SDCCsymt.h,
4689         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4690
4691 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4692
4693         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4694
4695 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4696
4697         * src/pic16/ralloc.c (newReg): fixed bug #908929
4698
4699 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4700
4701         * src/ds390/gen.c: added missing #include "main.h"
4702
4703 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4704
4705         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4706         checking if symbol is already in set,
4707         * src/pic16/device.h: prototype for checkAddSym,
4708         * src/pic16/gen.c: (_G): added entry interruptvector,
4709         * (assignResultValue): removed some commented out lines,
4710         * (genFunction): check for ISR via sym->type, absolute section for
4711         interrupt code is created via a new pBlock, the goto instruction is
4712         placed now correctly at the interrupt vector position, changed all
4713         references from ivec to _G.interruptvector,
4714         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4715         is the interrupt is a high priority one, same for return from ISR,
4716         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4717         externs to calls of checkAddSym,
4718         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4719         pic16_pcode_verbose flag is set,
4720         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4721         * src/pic16/pcoderegs.c: message about how many registers are saved
4722         will only be emitted if pic16_pcode_verbose flag is set,
4723
4724 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4725
4726         * src/ds390/ralloc.h,
4727         * src/ds390/ralloc.c (ds390_regWithIdx),
4728         * src/ds390/gen.c (emitcode),
4729         * src/ds390/main.h,
4730         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4731         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4732         ds390operandCompare, getRegsRead, getRegsWritten,
4733         initializeAsmLineNode): customized instruction size calculation for
4734         ds390, started basis for some register optimizations
4735         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4736         corresponding assembly output
4737         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4738         missing push/pop of r0/r1. Optimized push/pops
4739
4740 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4741
4742         * src/mcs51/main.c (instructionSize): fixed ACALL size
4743         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4744
4745 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4746
4747         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4748         the sorting of rlist with NULL elements
4749         * (print_idataType, print_idata): NEW to create idata sections
4750         * src/pic16/device.h: idataSymSet new variable
4751         * src/pic16/gen.c (genFunction): fixed some bugs in string
4752         comparing, improved the absolute section creation for ISRs,
4753         added FSR0L/FSR0H in registers that are saved in an ISR,
4754         * (genInline): fixed the processing of inline snippets,
4755         now they undergo no process by the peephole optimizer
4756         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4757         are placed in idataSymSet,
4758         * (pic16emitStaticSeg): extern symbols are added in externs,
4759         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4760         switching when aboslute variables are placed in access bank memory
4761         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4762         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4763         commented out with #if,
4764         * (pic16_packRegisters): reintroduce the check for CAST because some
4765         symbols are not correctly handled,
4766         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4767         pCodeInstruction instead of pCode,
4768         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4769         pCodeAsmDir definition,
4770         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4771         directive, then the argument directive is emitted without the leading
4772         tab, hack for inline labels which must be in the first column,
4773         * (compareLabel,pic16_findNextInstruction),
4774         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4775         * (insertBankSwitch): modified for the new pCodeAsmDir,
4776
4777 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4778         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4779
4780         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4781         instance,
4782         * (pushSide): commented out with #if,
4783         * (assignResultValue): fixed some typos in saving
4784         registers,
4785         * (genPcall): FIXED and sync'ed with genCall,
4786         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4787         * (genNearPointerGet): fixed to handle some more cases,
4788         implementation scheme via table reads,
4789         * (genConstPointerGet): modified to access code memory correct,
4790         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4791         and improved to handle some cases
4792         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4793         instead of "RETLW" for init data
4794         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4795         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4796         variables are placed in access bank memory (<0x80 and >=0xf80),
4797         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4798         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4799         TBLWT_POSTDEC,TBLWT_PREINC
4800         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4801         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4802         directives
4803         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4804         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4805         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4806         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4807
4808 2004-02-29  Borut Razem <borut.razem AT siol.net>
4809
4810         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4811         support/Util/findme.h, support/Util/system.h: enhance binary relative
4812         search for lib and include by using findProgramPath()
4813
4814 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4815
4816         * src/SDCCpeeph.h,
4817         * src/SDCCpeeph.c (pcDistance),
4818         * src/port.h,
4819         * src/mcs51/ralloc.h,
4820         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4821         * src/mcs51/main.h,
4822         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4823         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4824         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4825         size calculation port specific, started basis for some register
4826         optimizations
4827         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4828         missing push/pop of r0/r1. Optimized push/pops
4829         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4830         * device/lib/_modsint.c (_modsint),
4831         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4832         and stack version so regression tests pass
4833
4834 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4835
4836         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4837         * src/SDCCast.c (decorateType): catch another small optimization
4838         with '?' operator
4839         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4840         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4841         modified to finally use computeType() all over SDCC,
4842         see Feature Request #877103
4843         * src/SDCCval.h: cosmetic
4844         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4845         valCompare(); regression tested in muldiv.c
4846         * support/regression/tests/muldiv.c (testMod): mod sign follows
4847         dividend only
4848
4849 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4850
4851         * src/SDCCast.c (decorateType): fixed bug #902362
4852         * doc/INSTALL.txt: fixed install instructions for win32
4853
4854 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4855
4856         * device/include/Makefile.in (install): fixed by replacing spaces
4857         by tabs
4858         * doc/README.txt,
4859         * doc/INSTALL.txt: updated for release
4860         * doc/sdccman.lyx: added warning for --xstack being buggy
4861
4862 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4863
4864         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4865         to eliminate build warnings.
4866         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4867
4868 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4869            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4870
4871         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4872         removed -penable-stack, added comment for stack pragma, added
4873         warning for not initializing the stack/frame registers, removed
4874         comment at interrupts section
4875
4876         Stack is made permanent, there is no ability to disable stack usage.
4877         * src/pic16/device.h,
4878         * src/pic16/device.c: removed all references to USE_STACK macro,
4879         * src/pic16/device.c (pic16_dump_section): when no elements in
4880         rlist, free rlist before return,
4881         * (pic16_dump_int_registers): NEW, internal registers are a new set
4882         of general purpose registers reused by each function,
4883         * (checkAddReg): returns 1 if registers is added to set,
4884         * (pic16_groupRegistersInSection): when a registers is of type
4885         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4886         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4887         SRCASECMP macro is moved here from device.c
4888         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4889         PO_PCLATU, PO_PRODL, PO_PRODH,
4890         * (pic16_pCodeOpType, genMinus,
4891         changed compares to "a" register, with AOP_ACC,
4892         * (pic16_genPlus): fixed some bugs and indented properly,
4893         * (pic16_addSign): changed size to size+offset in the MOVWF
4894         instruction,
4895         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4896         multiply 8-bit operand by literal, result is 8-bit,
4897         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4898         multiply 2 8-bit operand, result is 8-bit,
4899         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4900         genUMult8X*_16,
4901         * src/pic16/gen.c: changed accUse to contain WREG only,
4902         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4903         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4904         true, do not use immediate addressing any more unless sym is a
4905         pointer in codespace,
4906         * (aopForRemat): do not use immediate addressing when symbol not in
4907         codespace and when symbol's address is requested,
4908         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4909         accUse size (= 1),
4910         * (aopGet): added case for AOP_ACC and don't return "accumulator
4911         bug" but WREG instead,
4912         * (popGetTempReg): pushes contents of temporary register in stack,
4913         * (popReleaseTempReg): pops contents of temporary register from
4914         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4915         * (pic16_popGet): separated case AOP_ACC to return register WREG
4916         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4917         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4918         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4919         the use of immediate pointers to certain cases only.
4920
4921         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4922         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4923         * (assignResultValue, genCall, genRet): modified to use the new
4924         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4925         genPcall is still broken,
4926         * (genFunction): added code to create 'A' type pBlocks when
4927         interrupt functions are generated, code not extensively tested yet,
4928         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4929         * (genEndFunction): modified so ISRs pop stored registers from stack,
4930         * (genMultOneByte): cleanup,
4931         * (AccRsh): added flag andmask, to and result with appropriate mask,
4932         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4933         * (genDataPointerGet): fixed and reenabled its use,
4934         * (genNearDataPointerGet): bugs fixed,
4935         * (genDataPointerSet): bugs fixed,
4936         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4937         pic16_DumpSymbol, pic16_DumpOp,
4938         * src/pic16/genutils.h: function prototypes for the above functions,
4939         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4940         pointers,
4941         * (pic16emitRegularMap): many many many improvements, but needs a
4942         major cleanup,
4943         * src/pic16/main.c: enable_stack in pic16_options is removed,
4944         * (_pic16_parseOptions): removed command line options -penable-stack,
4945         * (_process_pragma): emit stack symbol only when stack pragma is
4946         processed,
4947         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4948         redirected to FSR0L/FSR0H pair,
4949         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4950         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4951         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4952         for immediates,
4953         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4954         * (dumpPicOptype): NEW,
4955         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4956         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4957         with movff instruction,
4958         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4959         added pic16_int_regs, some packRegsFor* functions are commented out,
4960         because produce errors,
4961         * src/pic16/NOTES: minor modifications
4962
4963 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4964
4965         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4966         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4967         --pack-iram.
4968         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4969         * as/mcs51/lkaomf51.c: fixed bug #895763
4970
4971 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4972
4973         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4974
4975 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4976
4977         * doc/sdccman.lyx: added details about the HC08 storage classes and
4978         interrupts, fixed the register usage info for z80 & gbz80
4979
4980 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4981
4982         * doc/sdccman.lyx: added more pic16 port documentation
4983         * device/include/pic16/: added header pic18fregs.h
4984
4985 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4986
4987         * doc/sdccman.lyx: added Vangelis' contribution
4988
4989 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4990
4991         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4992         extend to the next CALL or PCALL, not just to the next CALL.
4993
4994 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4995
4996         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4997
4998 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4999
5000         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5001         bug #895752 and a better fix for bug #716790
5002
5003 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5004
5005         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5006
5007 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5008
5009         * doc/sdccman.lyx: minor changes, minor changed
5010
5011 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5012
5013         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5014         which can't handle SDCC_NEWONEBYTEOPS,
5015         (geniCodeMultiply): removed conversion from mult to shift for pic14
5016         and pic16
5017
5018 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5019
5020         * src/hc08/gen.h,
5021         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5022         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5023         thus fixing bug #895406
5024
5025 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5026
5027         * device/lib/_modsint.c,
5028         * device/lib/_modslong.c: sign follows divisor only
5029         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5030         signs or signedness can be ignored
5031         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5032         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5033         added optimization for IFX,
5034         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5035         arguments;
5036         reenabled optimization for IFX, which was removed on 2004-01-11
5037         * src/SDCCast.h: added return type IFX
5038         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5039         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5040         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5041         SDCC_OLDONEBYTEOPS selects the old behaviour
5042         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5043         changed again and commented promotion rule
5044         * src/SDCCval.c (valDiv): promotion no longer necessary
5045         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5046         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5047         rewritten
5048         * support/regression/tests/onebyte.c: added
5049
5050 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5051
5052         * gen.c (genInline): reverted to old code for assemnling inline
5053         code because of bug reported James Chadd
5054
5055 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5056
5057         * ralloc.h: missing declarations from previous patch,
5058         seems that patch for ralloc.h was never applied, fixed
5059
5060 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5061            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5062
5063         * pcode.c,
5064         * pcode.h,
5065         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5066         indirect addressing. Marked FSR0 as deprecated
5067         * gen.c (pointerCode): commented out, not needed now
5068         (pic16_popGet2p): new MOVFF helper function
5069         (genGenPointerGet),
5070         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5071         (shiftRLong): removed duplicate debugging info
5072
5073 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5074
5075         * src/ds390/gen.c (genNearPointerGet),
5076         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5077         optimization with bits, but not bitfields.
5078         * src/ds390/ralloc.c (packRegisters),
5079         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5080
5081 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5082
5083         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5084
5085 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5086
5087         * src/SDCCsymt.h,
5088         * src/SDCCicode.c (operandFromSymbol),
5089         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5090         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5091         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5092         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5093         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5094         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5095         bug #892038
5096         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5097         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5098         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5099         * src/SDCCsymt.c (newSymbol),
5100         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5101         enumerator_list),
5102         * src/SDCCval.h,
5103         * src/SDCCval.c (newiList): fixed bug #885705
5104
5105 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5106
5107         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5108         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5109
5110 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5111
5112         * device/include/c8051f120.h,
5113         * device/include/c8051f300.h,
5114         * device/include/c8051f310.h: added/updated header files for Silicon
5115         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5116         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5117         in new section Submitting patches
5118
5119 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5120
5121         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5122         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5123         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5124         genGenPointerSet),
5125         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5126         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5127         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5128         genGenPointerSet),
5129         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5130         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5131         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5132         genGenPointerSet),
5133         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5134         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5135         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5136         genGenPointerSet): fixed bug #892400
5137         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5138         to eliminate build warnings.
5139         * src/SDCCast.c (processParms),
5140         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5141         fixed bug 751859
5142         * support/valdiag/valdiag.py: added GCC to the list of defines active
5143         when compiling with gcc
5144
5145 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5146
5147         * support/Util/SDCCerr.h,
5148         * support/Util/SDCCerr.c,
5149         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5150         with an incomplete type (fixed bug #883734)
5151         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5152
5153 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5154
5155         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5156
5157 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5158
5159         * src/SDCCast.c (decorateType),
5160         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5161         function pointer implementation
5162         * support/regression/tests/funptrs.c: added tests to verify both forms
5163         of function pointers work correctly. Added tests to verify parameters
5164         are passed in the correct order.
5165
5166 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5167
5168         * device.c (regCompare): registers are sorted by ascending
5169         address and increasing size,
5170         * main.c (_pic16_finaliseOptions): removed the declaration
5171         of compiler macro MCU. Now a macro of the format pic18fxxxx
5172         will be defined from the command line
5173
5174 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5175             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5176
5177         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5178         PCOP_RLCF was overwritten!
5179         * gen.c (genSkip): commented out calls to pic16_emitcode,
5180         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5181         * (genlshTwo),
5182         * (genRRC): added debugging info,
5183         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5184         overwritten while shifting,
5185         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5186         overwritten while shifting,
5187         * (AccLsh),
5188         * (AccRsh),
5189         * (shiftLLeftOrResult),
5190         * (shiftRLeftOrResult),
5191         * (shiftRLong),
5192         * (shiftLLong): Implemented with pic16_emitpcode
5193         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5194         * (genLeftShift): Fixed bug, operand for shift by variable always
5195         was "and"ed with 0x0f,
5196         * (genLeftShiftLiteral),
5197         * (genrshTwo),
5198         * (genRightShiftLiteral): added debugging info,
5199         * (genrshFour): added comment,
5200         * (genRightShift): determined signedness from operand "left"
5201         instead of "result"
5202
5203 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5204
5205         * src/SDCCicode.c (geniCodeParms),
5206         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5207         function pointers, fixed function pointer bugs #861242 and #861896
5208
5209 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5210
5211         * device/include/c8051f000.h,
5212         * device/include/c8051f120.h,
5213         * device/include/c8051f300.h: added header files for Silicon
5214         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5215
5216 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5217
5218         * src/SDCCast.c (processParams): added new type flow and restructured
5219         (gatherAutoInit): added new type flow
5220         (addCast): cosmetic changes
5221         (getLeftResultType): added new type flow for array indices, patch
5222         provided by Stas, see FR #877103
5223         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5224         array index patch by Stas
5225         * src/SDCCast.h: added prototype getResultTypeFromType()
5226         * src/SDCCval.h,
5227         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5228         * src/pic/glue.c (pic14emitStaticSeg),
5229         * src/pic16/glue.c (pic16emitStaticSeg),
5230         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5231         for initialization of symbols
5232         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5233         * support/Util/SDCCerr.h:
5234         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5235         * .version: bumped version number to 2.3.8
5236         * device/include/Makefile.in (install),
5237         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5238         avoid warnings
5239
5240 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5241
5242         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5243         Slade Rich fixed an optimization bug
5244         * src/pic/pcodepeep.c,
5245         * src/pic/pcoderegs.c
5246         * doc/Makefile (install): added test for directory
5247
5248 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5249
5250         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5251         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5252         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5253         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5254         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5255         * as/mcs51/asexpr.c (term),
5256         * as/hc08/asexpr.c (term): fixed bug #887146
5257
5258 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5259
5260         * src/z80/gen.c (genMult): handle single byte result product
5261         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5262         DUMMY_READ_VOLATILE (fixed bug #886367)
5263
5264 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5265
5266         * support/regression/tests/libmullong.c: fixed logic, on little endian
5267         hosts we ended without a mullong_wrapper()
5268
5269 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5272         virus/worm forged address usage.
5273
5274 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5275
5276         Fixed promotion, it should be done on AST level:
5277         * src/SDCCast.c (addCast): added promotion to int
5278         (decorateType): updated call to upCast()
5279         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5280         usualUnaryConversions()
5281
5282 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5283
5284         * support/regression/tests/literalop.c (mulWrapper): Added a
5285         wrapper to remove integer overflow warnings.
5286
5287         * support/regression/tests/float_trans.c: Made work on host.
5288
5289         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5290         location of sz80.
5291
5292         * support/regression/generate-cases.py (main): Changed from inline
5293         to a main method.
5294
5295         * doc/Makefile (install): Changed to depth first to get rid of
5296         missing directory install warning.
5297
5298         * as/Makefile (install-doc): Made work on Mac.
5299
5300 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5301
5302         * src/SDCCast.c: added an additional type flow in decorateType() of
5303         opposite direction, see feature request #860006; it's enabled at runtime
5304         by setting the environment variable SDCC_NEWTYPEFLOW
5305         * src/SDCCast.h: changed prototype of decorateType()
5306         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5307         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5308         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5309         see feature request #877103
5310         * src/SDCCval.c: updated call of decorateType()
5311         (valBitwise): fixed bug #882876
5312         (valMinus): added promotion
5313         (valLogicAndOr): result is unsigned
5314         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5315         * src/SDCCsymt.c (computeType),
5316         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5317         must not cause an unsigned operation
5318         * src/pic/glue (pic14emitRegularMap),
5319         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5320
5321 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5322
5323         * src/pic/pcode.c (PCodeID): commented out left over debug code
5324
5325 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5326
5327         * support/valdiag/tests/overflow.c: added shift tests
5328         * src/pic/device.c,
5329         * src/pic/gen.c,
5330         * src/pic/gen.h,
5331         * src/pic/glue.c,
5332         * src/pic/main.c,
5333         * src/pic/pcode.c,
5334         * src/pic/pcode.h,
5335         * src/pic/pcodepeep.c,
5336         * src/pic/pcoderegs.c,
5337         * src/pic/ralloc.c,
5338         * src/pic/ralloc.h: applied patch from Slade Rich;
5339         added support for multiple code pages and multiple RAM banks on the
5340         PIC 14 port. The ASM files now no longer simply assume all the
5341         code / RAM are in the same page / bank. This means the linker can
5342         safely allocate code/RAM of separate ASM files to different pages/banks.
5343         * doc/sdccman.lyx: added Slade's tips
5344         * src/mcs51/peeph.def: fixed bug #880768
5345
5346 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5347
5348         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5349         * src/SDCCast.c (decorateType): fixed bug #880197
5350
5351 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5352
5353         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5354         getopt.h.
5355
5356         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5357         strtof is not part of C89 and isn't included with Mac OS X.
5358
5359 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5360
5361         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5362         shiftL2Left2Result): fixed bug #879326
5363         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5364         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5365         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5366         address fetch for clr instruction
5367         * device/lib/hc08/_mulint.c: created optimized assembly version
5368         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5369
5370 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5371
5372         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5373         proposed in FR #877103
5374
5375 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5376
5377         * src/SDCCval.c (cheapestVal): added missing checks
5378         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5379         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5380
5381 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5382
5383         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5384         equal operands
5385
5386 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5387
5388         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5389         loaded with the linker search paths (-L arguments) and the libraries
5390         to be linked with the current source (-l arguments). Changes
5391         currently will affect only the pic16 port.
5392         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5393         include path the port specific paths and port specific libraries,
5394         * gplink command now contains the $3 argument,
5395         * src/pic16/device.h,
5396         * src/pic16/device.c,: structure PIC_device is made public and
5397         renamed to PIC16_device, the same for variable Pics which is renamed
5398         to Pics16. Updated all references to them.
5399         * src/pic16/glue.c (pic16glue): corrected bug with code
5400         initialization which bypassed the variable initializations block.
5401
5402         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5403         COMPILE_FLAGS and added the --nostdinc option
5404
5405 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5406
5407         * device/include/mc68hc908jb8.h: Register defs for another member
5408         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5409
5410 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5411
5412         Documenting changes from previous commits.
5413         * configure.in (version 1.56),
5414         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5415         when generating output files to configure the pic16 library,
5416         but now I've commented it out, since gputils aren't installed in the
5417         SF compile farm, so library won't compile
5418
5419         * device/lib/Makefile.in (version 1.56): initially I've added in
5420         target 'all' the prerequestive 'model-pic16' so it compiled the
5421         pic16 library, but now I've commented it out for the same reasons
5422         above,
5423         * added targets 'model-pic16' and 'objects-pic16' to compile the
5424         library
5425         * added target 'port-specific-objects-pic16' to handle the
5426         generated libraries and copy them into the build/ directory
5427         * added target 'clean-intermediate-pic16' to clean intermediate
5428         files into pic16 directory
5429         * in target 'installdirs' added line to create directory pic16 in
5430         the installation path
5431
5432         * device/include/Makefile.in (version 1.11): in target 'install'
5433         added lines to copy all header files to installation path,
5434         * in target 'installdirs' added line create directory for pic16
5435         headers in the installation path
5436
5437 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5438
5439         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5440          a function call
5441
5442 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5443
5444         * configure,
5445         * device/lib/configure.in,
5446         * device/lib/configure: fixed for autoconf 2.57
5447
5448 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5449
5450         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5451         option so that it actually works. Made it specific to the z80, since
5452         the gbz80 doesn't have these kinds of I/O ports.
5453
5454 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5455
5456         * device/include/z180.h,
5457         * device/lib/_memcpy.c,
5458         * device/lib/_memmove.c,
5459         * device/lib/_mulint.c,
5460         * device/lib/ser_ir.c,
5461         * device/lib/ser_ir_cts_rts.c,
5462         * device/lib/_strcmp.c,
5463         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5464         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5465         portmode; added deprecation warning for bank= and protmode= forms.
5466         Also, guard against buffer overflow.
5467         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5468
5469 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5470
5471         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5472         changed interrupt vector table generation to only emit declared vectors.
5473         * device/include/Makefile.in: added missing backslash
5474         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5475
5476 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5477
5478         Mainly changes to support compilation of the device libraries
5479         * src/pic16/device.c: stack is allocated via symbol and not
5480         via literal number. The symbol is placed in the corresponding
5481         position of the data ram
5482         * (pic16_dump_section): relocatable and absolute uninitialized
5483         data are now emitted in sorted order to reduce section naming,
5484         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5485         weren't marked as being in the access bank,
5486
5487 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5488
5489         Added portion of GNU PIC Library under the directory
5490         device/include/pic16 and device/lib/pic16. These files
5491         contain the declarations of SFRs for the PIC18Fxx2 devices.
5492         The directory is initialized via configure from toplevel.
5493
5494 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5495
5496         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5497         the spilllocations to be compared correctly
5498
5499 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5500
5501         * src/SDCCast.c (decorateType): fixed bug introduced today
5502
5503 2004-01-12  Borut Razem <borut.razem AT siol.net>
5504
5505         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5506         doc/sdccman.lyx: upper case pragmas are deprecated
5507
5508 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5509
5510         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5511         in simpler and even better code
5512
5513 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5514
5515         * src/SDCCicode.c (operandOperation): fixed bug #874819
5516         * src/SDCCast.c (decorateType): fixed
5517         char foo (unsigned long ul) { return ul > 0; }
5518
5519 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5520
5521         * doc/sdccman.lyx: Moved and added some sections, small changes
5522         all over. Telling LaTeX to be less strict with word spacing
5523         to better keep the right margin. Changed some notes about
5524         maintainance of the ports in section 3.2.1 - is it OK like this?
5525
5526 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5527
5528         SDCC source changes:
5529         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5530         convilong): modified to inform the pic16 port that builtin functions
5531         are external
5532
5533         PIC16 PORT specific changes:
5534         * src/pic16/device.c pic16_dump_equates() added,
5535         processor registers declared internally by the port are emitted in
5536         the translation as equates,
5537         * src/pic16/gen.c: inline code is passed unprocessed to the
5538         translation,
5539         * (pic16_popGetLit2): fnuction modified to take second operand as
5540         pCodeOp pointer and not as literal,
5541         * (popRegFromIdx): prefixed with pic16_,
5542         * (pic16_popCombine2): modified to receive already allocated pCode
5543         operands,
5544         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5545         * (genFunction): initializes local stack frame and pushes on stack
5546         all the registers used by this function,
5547         * (genEndFunction): restores all registers from stack and restores
5548         stack frame,
5549         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5550         improvements,
5551         * (pic16glue): changed the program startup sequence,
5552         * added new dbName code 'A' for functions placed in absolute section
5553         * src/pic16/main.c: added function attribute _naked,
5554         * added pragma 'code' to place a fnuction at an absolute address,
5555         * added command line arguments --debug-ralloc and --pcode-verbose,
5556         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5557         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5558         * (pic16_newpCodeOpLit2): modified to take the second operand as
5559         pCodeOp pointer,
5560         * (pic16_printpBlock): modified to emit each function in a separate
5561         section,
5562         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5563         UPPER for immediate operands,
5564         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5565         instruction,
5566         * src/pic16/peeph.def: all peepholes with movff are commented out,
5567         because there is a problem in the pcode peep optimizer,
5568         * src/pic16/ralloc.c: the register allocator can now reuse local
5569         function symbols for another function. This saves register usage.
5570         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5571
5572         Added file src/pic16/NOTES with information about program writing on
5573         the current port version.
5574
5575 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5576
5577         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5578         and peephole 252 (array access)
5579
5580 2004-01-09  Borut Razem <borut.razem AT siol.net>
5581
5582         * src/SDCCmain.c : fixed #872250: -l command line defined library
5583           files are scanned before standard library files
5584
5585 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5586
5587         * src/SDCCast.c (decorateType): fixed bug #874046
5588
5589 2004-01-09  Borut Razem <borut.razem AT siol.net>
5590
5591         * support/scripts/sdcc.nsi: remove previous installation
5592
5593 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5594
5595         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5596         bytes for last interrupt vector (mcs51)
5597         * sdcc.spec: fixed typo
5598
5599 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5600
5601         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5602         gen51Code): more efficient parameter receive for --model-large
5603         ("bug" #845294)
5604
5605 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5606
5607         * src/ds390/main.c,
5608         * src/z80/main.c: added missed needLinkerScript flags (more than
5609         one port structure defined in these file)
5610         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5611         bug #795325
5612
5613 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5614
5615         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5616         * src/port.h: added flag needLinkerScript in port->linker
5617         structure to inform whether to create a .lnk file or not,
5618         * src/avr/main.c,
5619         * src/ds390/main.c,
5620         * src/hc08/main.c,
5621         * src/mcs51/main.c,
5622         * src/pic/main.c,
5623         * src/pic16/main.c,
5624         * src/xa51/main.c,
5625         * src/z80/main.c: changed appropriately to configure
5626         needLinkerScript flag
5627         * src/pic/gen.c,
5628         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5629         * src/pic/glue.c: added variable udata_section_name to
5630         override default uninitialized data segment definition for
5631         devices only with SHAREBANK memory (reported from Erik Epetrich)
5632         * (pic14emitOverlay): modified to emit a commented overlay segment
5633         directive when no overlay data exist
5634         * (picglue): modified to emit uninitialized data segment
5635         according to udata_section_name
5636         * src/pic/main.c (_pic14_parseOptions): added command line
5637         options --udata-section-name=[name] to override default
5638         udata definition name
5639         * modified _linkCmd and _asmCmd to include compiler passed
5640         arguments via -W option
5641         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5642         object file from '.rel' to '.o' in port->linker structure,
5643         changed size of fptr from 2 to 3 in port structure
5644
5645 2004-01-07  Borut Razem <borut.razem AT siol.net>
5646
5647         * support/scripts/sdcc.nsi: update PATH
5648         * support/scripts/sdcc.ico: craeted
5649
5650 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5651
5652         * device/include/Makefile.in: fix install
5653         * doc/Makefile: fix install
5654
5655 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5658         in bug #860505
5659         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5660         how the function variable allocation summary is displayed; also
5661         include information about variables allocated to the overlay
5662         segment
5663
5664 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5665
5666         * as/mcs51/lkmain.c: Help about -Y option
5667         * as/mcs51/lkarea.c: Fixed gcc warnings
5668
5669 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5670
5671         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5672         fixed warning
5673         * support/valdiag/tests/overflow.c: added
5674         * src/SDCCast.c (decorateType),
5675         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5676         LEFT_OP (left shift)
5677
5678 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5679
5680         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5681         (default behaviour).
5682
5683 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5684
5685         A python script to validate compiler diagnostic messages. It can be
5686         used to verify that sdcc complains about bad c source code and
5687         gives a good location of the error.
5688         * support/valdiag/Makefile,
5689         * support/valdiag/valdiag.py,
5690         * support/valdiag/tests/*
5691
5692 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5693
5694         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5695         * src/SDCCsymt.c (newEnumType),
5696         * src/SDCCsymt.h
5697         * support/Util/SDCCerr.c,
5698         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5699         enum related bugs.
5700         * support/regression/tests/enum.c: added test for enum values that
5701         require at least 2 bytes of storage.
5702
5703 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5704
5705         * src/common.h: added ifndef/define/endif macros
5706         around the header file.
5707         Bug reported from Jesus Calvino-Fraga
5708
5709 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5710
5711         * sdcc.spec: updated
5712         * device/include/Makefile.in: don't install CVS directories
5713         * device/lib/Makefile.in: added removal of CVS directories after install
5714         * doc/Makefile: fixed install, added local_icons
5715         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5716         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5717         * src/ds390/gen.c (genRightShift): fixed bug #870788
5718         * src/SDCCast.c (decorateType): fixed bug #870781
5719
5720 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5721
5722         PIC16 port related changes:
5723         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5724         added variable stackPos,
5725
5726         * gen.c: genCall, assignResultValue: added support for
5727         pushing/retrieving function parameters to/from stack,
5728         genFunction,genEndFunction: setup stack frame for the
5729         generated function,
5730         genAddrOf: will be changed according to bug 863624
5731
5732         * added files genutils.c and genutils.h which contain gen*
5733         debugged and optimised functions extracted from gen.c
5734
5735         * glue.c: added variable 'externs' which holds extern symbols,
5736         pic16emitRegularMap: is modified to properly handle relocatable
5737          symbols under the new scheme,
5738         pic16createInterruptVect: is modified
5739         pic16printPublics: is modified to emit 'global' assembler directives,
5740         added pic16_printExterns to print extern symbols,
5741         pic16glue: initializes stack/frame pointer in the beginning of
5742         the assembly output. Temporary hack, will be corrected later,
5743         because gplink yet does not support stack and SDCC does not
5744         yet support a type of crt0.o object to create the final binary.
5745
5746         * Removed many lines that contain 8051 legacy code.
5747         * The code is finally placed under a 'code' directive.
5748         * Added port specific options.
5749
5750         * _process_pragma: simplified since now we do not need *special*
5751         include file to define SFR registers. But a separate header
5752         will be needed. This will be developed later.
5753         * _pic16_parseOptions: added, parses port specific options:
5754         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5755         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5756         --preplace-udata-with=
5757
5758         * _pic16_setDefaultOptions: modified to initialize section names,
5759         but hack is temporarly out of order since it needs improvement.
5760         * _pic16_genAssemblerPreamble: configuration words are emitted by
5761         their address instead of their name. This part is incomplete and
5762         supports only the 18Fxx2 devices. Other devices will emit an error
5763         during assembly since they do not contain the same set of config
5764         registers
5765         * _pic16_genIVT: is modified,
5766
5767         * pcode.c: added definitions for some hardware registers that are needed
5768         for stack support
5769         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5770         All PCI entries are updated. Now LFSR is supported.
5771         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5772         * added pic16_newpCodeOpLit2 to support instructions with
5773         two literal arguments
5774         * pic16_pCode2str: corrected code that emits assembler instructions
5775         with two literal operands and those that have an access bit modifier
5776         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5777         this fixes a bug which caused some labels to be lost, when an
5778         assembler directive was added, i.e. banksel,
5779         * pic16_FixRegisterBanking: improved logic that causes the insertion
5780         of bank switching,
5781         * InlineFunction: functions that are called once, are not any more
5782         inlined. This can be a port option in the future,
5783
5784         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5785
5786         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5787         hold the corresponding uninitialized symbols,
5788         * pic16_allocProcessorRegister: registers have explicit marked the
5789         accessBank field,
5790         * pic16_allocInternalRegister: registers are explicit marked as
5791         not used,
5792         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5793         processing list, so bit registers were lost,
5794         *
5795
5796         * ralloc.h: added field 'accessBank' and original symbol operand
5797         in register definition,
5798         * removed the field isMapped from register definition,
5799
5800         ** Several functions have been removed from various sources:
5801         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5802         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5803         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5804         pic16_assignRelocatableRegisters
5805
5806         ** others have been introduced:
5807         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5808         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5809
5810 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5811
5812         * support/scripts/inc2h.pl: changed definition of BIT_AT
5813         to emit 'sbit at' instead of 'bit at'. This was a request.
5814
5815         PIC16 port related preliminary changes:
5816         * gen.c: prefixed function popRegFromString with
5817         pic16_ and all references to it corrected
5818         * pcode.c: all pic16_pc_* hardware registers prefixed
5819         with underscore (_),
5820         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5821         * ralloc.c: newReg(): when register is REG_SFR then
5822         set address to rIdx,
5823         pic16_allocProcessorRegister(): marks register wasUsed=0
5824         pic16_writeUsedRegs(): added a call to assign processor
5825         registers via pic16_assignFixedRegisters
5826
5827 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5828
5829         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5830         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5831         variables in unused register banks.  Also the SSEG is placed
5832         wherever there is enough space for it, and IDATA can be anywhere
5833         in internal RAM.  For now compile using -Wl-Y[stack_size].
5834         The mem file is different for this option as well, since it
5835         makes no sense of talking about DSEG lenght.
5836
5837 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5838
5839         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5840         in certain cases, e.g. when ROM assignment, patch provided
5841         from Albert den Haan.
5842
5843 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5844
5845         Many signedness and type propagation fixes:
5846         * src/SDCCicode.c: made geniCodeCast() static
5847         replaced SPEC_ by IS_ (cosmetic)
5848         (operandOperation): fixed div and mod operation
5849         (usualBinaryConversions): added support for promotion of char
5850         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5851         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5852         (geniCodeAdd): an array index will stay unsigned, even if promoted
5853         from char to int
5854         (geniCodeArray): ditto
5855         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5856         * src/SDCCsymt.c (computeType): added more support for char;
5857         promotion of char is selectable by promoteCharToInt, fixed signedness
5858         for all cases
5859         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5860         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5861         * src/SDCCval (val*): replaced signedness calculation by
5862         computeType()
5863         rearranged if-branches (cosmetic)
5864         (valShift): added warning W_SHIFT_CHANGED
5865         (valCompare): fixed problem with different types
5866         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5867         * support/regression/tests/literalop.c: added many cases
5868         * support/regression/tests/ast_constant_folding.c: changed finally to
5869         'unsigned int'
5870         * .version: new year, new version: 2.3.7
5871         * src/SDCCmain.c (main): applied patch #866468
5872         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5873         provided by Scott Bronson
5874         * doc/sdccman.lyx: updated documentation for sdcdb
5875         updated and added chapter tips
5876
5877 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5878
5879         * src/SDCCsymt.h: missing from yesterday's commits
5880
5881 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5882
5883         * src/SDCC.y (struct_or_union_specifier),
5884         * support/Util/SDCCerr.c,
5885         * support/Util/SDCCerr.h: verify that struct & union tags are used
5886         as declared.
5887
5888 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5889
5890         * src/SDCCglobl.h: missing from yesterday's commits
5891
5892 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5893
5894         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5895         sft_attributes, struct_declaration, parameter_declaration,
5896         type_name, start_block, declaration_list),
5897         * src/SDCC.lex (check_type): support redefinition of typedef names
5898
5899 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5900
5901         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5902         aligned xdata arrays. Erik helped me with the if clause.
5903
5904 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5905
5906         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5907         warning
5908
5909 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5910
5911         * src/SDCCast.h,
5912         * src/SDCCast.c (newAst_),
5913         * src/SDCCicode.h,
5914         * src/SDCCicode.c (ast2iCode, newiCode),
5915         * src/SDCCglobl.h,
5916         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5917         expr, statement, expression_statement, selection_statement,
5918         iteration_statement, expr_opt, jump_statement): foundation for tracking
5919         sequence points
5920         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5921         point code too)
5922
5923 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5924
5925         * support/Util/SDCCerr.c,
5926         * src/SDCCast.h,
5927         * src/SDCCast.c (createCase, createDefault, decorateType),
5928         * src/SDCClabel.c (labelUnreach),
5929         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5930         to error messages.
5931         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5932         (with thanks to Stas Sergeev)
5933         * device/include/time.h,
5934         * device/lib/time.c (CheckTime): suppress unreachable code warning
5935
5936 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5937
5938         * src/SDCCast.c (createIvalCharPtr),
5939         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5940         bug #753752)
5941         * support/regression/tests/nullstring.c: tests for these two bugs
5942
5943 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5944
5945         * support/Util/SDCCerr.h,
5946         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5947         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5948         about storage class and 'at' used inside struct or union
5949         * src/SDCCBBlock.c (iCodeFromeBBlock),
5950         * src/SDCCcse.c (ifxOptimize),
5951         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5952         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5953         printIval, emitStaticSeg, emitOverlay),
5954         * src/SDCClabel.c (deleteIfx),
5955         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5956         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5957         gatherAutoInit, processParms),
5958         * support/Util/SDCCerr.h,
5959         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5960         reporting for post-parse errors.
5961
5962 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5963
5964         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5965         implicit casts via union; they don't work on big endian systems
5966         (possible fix for bug #861138)
5967
5968 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5969
5970         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5971         * src/mcs51/main.c: fixed the fix for bug #737001
5972
5973 2003-12-15  Borut Razem <borut.razem AT siol.net>
5974
5975         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5976
5977 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5978
5979         * support/makebin/makebin.c: put output in binary mode
5980
5981 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5982
5983         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5984         xdata and data memory on startup. Set the environment variable
5985         SDCC_NOGENRAMCLEAR to disable this.
5986         * src/mcs51/peephole.def,
5987         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5988         (allows non-interrupt and interrupt code to safely compete for a resource
5989         without the non-interrupt code having to disable interrupts)
5990
5991 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5992
5993         * src/SDCCicode.c (geniCodeAdd),
5994         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5995         with valFromType if type might be a pointer and host is big endian).
5996         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5997         types, not just integer types.
5998         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5999         multiply defined with mismatching "at" address.
6000
6001 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6002
6003         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6004         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6005         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6006         with embedded nulls (fixed bug #753752)
6007
6008 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6009
6010         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6011         Apparently this did not see much testing (endless loop)
6012
6013 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6016
6017 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6020         gracefully handle NULL memmap pointers
6021
6022 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6023
6024         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6025         instead of deleting the iCode when an operand is volatile
6026         * src/z80/gen.c (genDummyRead),
6027         * src/mcs51/gen.c (genDummyRead),
6028         * src/ds390/gen.c (genDummyRead),
6029         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6030         not just IC_RIGHT
6031         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6032         * src/SDCC.y: fixed bug #850420
6033
6034 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6035
6036         Applied z80 i/o port patch from Peter Townson and fixed some operators
6037         to better handle operands in A register.
6038         * device/include/z180.h
6039         * src/SDCC.y
6040         * src/SDCCglue.c
6041         * src/z80/gen.c
6042         * src/z80/gen.h
6043         * src/z80/main.c
6044         * src/z80/peeph-z80.def
6045         * src/z80/peeph.def
6046         * src/z80/z80.h
6047
6048 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6049
6050         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6051
6052 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * device/lib/hc08/_mullong.c: Removed extra #endif
6055
6056 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6057
6058         * sim/ucsim/hc08.src/inst.cc,
6059         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6060         carries from x to h
6061         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6062         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6063         * device/include/stdarg.h: fixed varargs for hc08
6064         * device/lib/Makefile.in,
6065         * device/lib/hc08/Makefile,
6066         * device/lib/hc08/_mulint.c,
6067         * device/lib/hc08/_mullong.c: fixed some endian problems
6068
6069 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6070
6071         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6072         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6073         * device/lib/_gptrget.c,
6074         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6075
6076 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6079         * src/SDCCast.c (astErrors): fixed bug #846007
6080         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6081
6082 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6083
6084         * src/SDCCast.c (decorateType): disabled a transformation I added in
6085         revision 1.188 (access to fields of a structure at an absolute address);
6086         it breaks with bitfields, extern declarations, and gcse analysis.
6087         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6088         could be assigned through a pointer, so don't complain.
6089         * src/SDCCast.c (astErrors),
6090         * src/SDCCast.h,
6091         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6092
6093 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6094
6095         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6096         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6097         output of __config directives, since gpasm now supports them
6098         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6099         pre-processor macro, i.e. -DMCU=p18f452
6100         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6101         and modified to handle 'cast' icode similarly to '=' icode
6102         * src/pic16/device.h (typedef struct PIC_device): added field
6103         'extMIface' to indicate that chip has external memory interface
6104         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6105         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6106         18F8720
6107
6108 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * src/SDCC.y (pointer): fixed bug #846006
6111         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6112         * src/SDCCast.c (decorateType): fixed bug #846009
6113         * src/ds390/peeph.def,
6114         * src/ds390/gen.c (genAnd, genOr),
6115         * src/mcs51/peeph.def,
6116         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6117
6118 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6119
6120         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6121         * src/SDCCdflow.c
6122         * src/SDCCcse.c
6123         * src/SDCCcse.h
6124         * src/SDCCBBlock.h
6125         * src/SDCCBBlock.c
6126
6127 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6128
6129         fixed bug #845089
6130         * src/SDCCbitv.h,
6131         * src/SDCCbitv.c: added function to free a bitvector
6132         * src/SDCClrange.h,
6133         * src/SDCClrange.c: added function to recompute the liveranges
6134         * src/avr/ralloc.c,
6135         * src/ds390/ralloc.c,
6136         * src/hc08/ralloc.c,
6137         * src/mcs51/ralloc.c,
6138         * src/pic/ralloc.c,
6139         * src/pic16/ralloc.c,
6140         * src/xa51/ralloc.c,
6141         * src/z80/ralloc.c: recompute the liveranges after register packing
6142
6143 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6144
6145         * src/SDCCloop.c (newInduction): fixed bug #845630
6146
6147 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6148
6149         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6150         inadvertantly left behind from my 2003-11-12 change
6151
6152 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6153
6154         Updated headers I neglected to commit yesterday.
6155         * src/SDCClrange.h,
6156         * src/SDCCicode.h
6157
6158 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6161         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6162         * src/SDCCopt.c (eBBlockFromiCode),
6163         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6164         the creation of the key hash table from the sequencing so it can be used
6165         earlier (for some GCSE bug fixes still pending)
6166
6167 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6168
6169         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6170         * support/regression/tests/addsub.c: testing genPlus shortcut
6171
6172 2003-11-15  Borut Razem <borut.razem AT siol.net>
6173
6174         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6175
6176 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6177
6178         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6179         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6180         ordering is immaterial.
6181         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6182
6183 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6186         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6187         (SIGSEV) of bug #840381
6188         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6189         unlink new file before rename if new and old filenames are the same)
6190
6191 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6192
6193         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6194         uninitialized variables) for the mcs51. Set environment variable
6195         SDCC_GENRAMCLEAR to test.
6196         xdata initialization slightly shorter
6197
6198 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6199
6200         * src/SDCCsymt.h,
6201         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6202         #838241 & 780691 (basicly the same bug)
6203         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6204         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6205
6206 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6207
6208         * src/SDCCmain.c (linkEdit): "fix" #834252
6209
6210 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6213         * src/SDCCast.h,
6214         * src/SDCC.y: fixed bug #819403
6215
6216 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6217
6218         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6219         the reentrant attribute.
6220         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6221         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6222         simulation
6223         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6224         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6225         erroneously reduced to a literal.
6226         * src/hc08/ralloc.c (packRegisters, rematStr),
6227         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6228         some cases
6229
6230 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6231
6232         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6233         * doc/sdccman.lyx: changed from 'article' to 'book'
6234         * doc/Makefile: readded test_suite_spec and cdbfileformat
6235
6236 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6237
6238         * device/include/stdlib.h: include malloc.h to comply with ANSI
6239         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6240
6241 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6242
6243         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6244         * doc/clean.mk: also remove *.out files
6245         * doc/sdccman.lyx: some additions, larger top/bottom margins
6246
6247 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6248
6249         * src/SDCC.y: fixed bug #837365
6250         * support/regression/tests/bitopcse.c
6251         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6252         a symbol (might be valop instead)
6253         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6254         * device/lib/clean.mk: added hc08 to the cleaning list
6255
6256 2003-11-04  Borut Razem <borut.razem AT siol.net>
6257
6258         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6259           made 2003-11-04
6260         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6261           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6262           malloc is declared in standard stdlib.h
6263
6264 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6265
6266         * device/lib/hc08/Makefile: need to clean .rel not .o files
6267         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6268
6269 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         * src/port.h,
6272         * src/hc08/main.c,
6273         * src/mcs51/main.c,
6274         * src/ds390/main.c,
6275         * src/z80/main.c,
6276         * src/avr/main.c,
6277         * src/pic/main.c,
6278         * src/pic16/main.c,
6279         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6280         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6281         tests (which uses the port's oclsExpense function)
6282         * src/SDCC.y,
6283         * src/SDCCast.c,
6284         * src/SDCCicode.c,
6285         * src/hc08/gen.c,
6286         * src/ds390/gen.c,
6287         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6288
6289 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * src/SDCCcse.c (ifxOptimize),
6292         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6293         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6294         deleting the IFX iCode.
6295         * src/hc08/ralloc.c: reduced unneeded slocs
6296         * src/hc08/gen.c: fixed bug in asmopToBoolean
6297
6298 2003-11-04  Borut Razem <borut.razem AT siol.net>
6299
6300         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6301           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6302           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6303           transferred to configure
6304
6305 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6306
6307         Use headers defined in the C[++] standards:
6308         * sim/ucsim/gui.src/serio.src/fileio.cc
6309         * sim/ucsim/gui.src/serio.src/frontend.cc
6310         * sim/ucsim/gui.src/serio.src/main.cc
6311         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6312         * support/Util/NewAlloc.c
6313         * as/hc08/lklibr.c
6314         * as/mcs51/lklibr.c
6315         * as/z80/aslist.c
6316         * as/z80/assym.c
6317
6318 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6319
6320         * Added MSVC projects for hc08 assembler and linker:
6321         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6322         /as/hc08/link_hc08.dsp
6323
6324 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6325
6326         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6327
6328 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6329
6330         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6331
6332 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6333
6334         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6335
6336 2003-10-31  Borut Razem <borut.razem AT siol.net>
6337
6338         * support/cpp2/cpplib.h,
6339           support/cpp2/cpplib.c,
6340           support/cpp2/cpplex.c,
6341           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6342           to switch _asm block preprocessing on / off. Default is
6343           #pragma preproc_asm +
6344
6345 2003-10-31  Borut Razem <borut.razem AT siol.net>
6346
6347         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6348           when outputting comment blocks (when executed with -C option) and
6349           _asm (SDCPP specific) blocks
6350
6351 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6352
6353         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6354
6355 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6356
6357         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6358
6359 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6360
6361         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6362         * src/SDCCast.c (decorateType): fixed bug #832664
6363
6364 2003-10-31  Borut Razem <borut.razem AT siol.net>
6365
6366         * support\cpp2\cpplex.c: fixed for SDCPP:
6367           comments(when executed with -C option) and _asm blocks
6368           were included even if they where in skipped #if block.
6369           Applied solution from GCC cpp 3.3.2
6370
6371 2003-10-31  Borut Razem <borut.razem AT siol.net>
6372
6373         * src/SDCC.lex: sdcc now understands both formats:
6374           '# <line_number> <file_name>' and
6375           '#line <line_number> <file_name>'
6376         * support/cpp2/cppmain.c: sdcpp now generates the standard
6377           '# <line_number> <file_name>' instead of former
6378           '#line <line_number> <file_name>'
6379
6380 2003-10-30  Borut Razem <borut.razem AT siol.net>
6381
6382         * support/cpp2/cpphash.h,
6383         * support/cpp2/cpplib.h
6384         * support/cpp2/cpplex.c,
6385         * support/cpp2/cppmain.c,
6386         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6387
6388 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6389
6390         Fixed a number of problems revealed by bug #827883.
6391         * src/SDCCloop.c (loopInvariants): Spill location of the
6392         result operand should be recomputed if extracted from
6393         a loop. Also, don't extract assignments of an iTemp
6394         from a literal.
6395         * src/SDCCast.c (isConformingBody): loop reversal should
6396         not occur if the control variable is involved with a
6397         relational operator.
6398
6399 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6400
6401         * .version: bumped to 2.3.6 to reflect the big improvements
6402         made by Erik and Klaus. Thanks!
6403
6404 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6405
6406         Replaced the livrange code.
6407         * src/SDCClrange.c: added new LR code
6408         * src/SDCCloop.c,
6409         * src/SDCCBBlock.h: removed remainig parts from old LR code
6410         * src/ds390/ralloc.c,
6411         * src/ds390/gen.c: minor fixes to make it work with new code
6412
6413 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6414
6415         * as/hc08/asm.h,
6416         * as/hc08/lkrloc.c,
6417         * src/hc08/gen.c,
6418         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6419         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6420         (tweaked fix for bug #818696)
6421
6422 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6425
6426 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * src/SDCCmain.c,
6429         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6430         * src/mcs51/gen.c (gencjneshort),
6431         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6432         more efficient (per Scott Bronson's suggestion)
6433
6434 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6435
6436         Extended the semantics of the critical keyword to include
6437         individual statements. See RFE #827755 and #799831
6438         * src/SDCC.y
6439         * src/SDCCicode.c
6440         * src/SDCCopt.c
6441         * src/SDCCast.c
6442         * support/Util/SDCCerr.c
6443         * support/Util/SDCCerr.h
6444         * src/mcs51/gen.c
6445         * src/ds390/gen.c
6446         * src/hc08/gen.c
6447
6448 2003-10-19  Borut Razem <borut.razem AT siol.net>
6449
6450         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6451
6452 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6455         Fixed bug #818696
6456         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6457         and predecrement operand is displayed
6458
6459 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6460
6461         * src/SDCCval.c (valMinus): fixed bug #826041
6462
6463 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         Some hc08 related updates that I missed earlier
6466         * sim/ucsim/stypes.h
6467         * support/regression/ports/hc08/spec.mk
6468
6469 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         New target "hc08" for the Motorola 68hc08 family of micros
6472
6473         * configure
6474         * configure.in
6475         * Makefile
6476         * src/hc08/*
6477         * src/SDCCmain.c
6478         * src/port.h
6479         * sim/ucsim/hc08.src/*
6480         * sim/ucsim/configure.in
6481         * src/ucsim/configure
6482         * sim/ucsim/packages_in.mk
6483         * as/hc08/*
6484         * as/Makefile
6485         * device/include/mc68hc908qy.h
6486         * device/lib/hc08/*
6487         * device/lib/Makefile.in
6488         * support/regression/ports/hc08/*
6489         * support/regression/Makefile
6490
6491 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6492
6493         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6494         regression test
6495         * src/ds390/gen.c (genCast): fixed bug #821957
6496
6497 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6498
6499         * device/lib/logf.c: "fixed" overlay bug
6500         * support/regression/ports/host/spec.mk: added m library
6501         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6502         * support/regression/tests/float_trans: added (for Eric)
6503
6504 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6505
6506         * src/mcs51/gen.c (genCpl): fixed bug
6507         http://sf.net/mailarchive/message.php?msg_id=6263915
6508
6509 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6510
6511         * src/SDCCast.c (decorateType): added extended constant folding
6512         * src/SDCCsymt.c (computeType): cleanup
6513         * src/SDCCval.c (valShift): minor optimization
6514         * support/regression/tests/ast_constant_folding.c: added
6515
6516 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6517
6518         * src/SDCCmain.c: removed some unintended changes
6519
6520 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6521
6522         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6523         * src/z80/gen.c: fixed part of bug #817589
6524         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6525
6526 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6527
6528         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6529         * src/SDCCcflow.c
6530         * src/SDCCcse.c
6531         * src/SDCCdflow.c
6532         * src/SDCClabel.c
6533         * src/SDCClrange.c
6534         * src/SDCCmem.c
6535         * src/SDCCopt.c
6536         * src/SDCCpeeph.c
6537         * src/SDCCset.c
6538         * src/avr/ralloc.c
6539         * src/ds390/ralloc.c
6540         * src/izt/ralloc.c
6541         * src/mcs51/ralloc.c
6542         * src/pic/ralloc.c
6543         * src/pic16/ralloc.c
6544         * src/xa51/ralloc.c
6545         * src/z80/ralloc.c
6546         * src/z80/gen.c: removed unused label "release:"
6547
6548 2003-10-06  Borut Razem <borut.razem AT siol.net>
6549
6550         * src/SDCC.lex: removed definition of unused variables
6551           save_optimize and save_options
6552
6553 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6554
6555         * clean.mk: removed '=' in "-maxdepth=1"
6556         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6557         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6558
6559 2003-10-06  Borut Razem <borut.razem AT siol.net>
6560
6561         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6562           my_unput() replaced by unput()
6563
6564 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6565
6566         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6567         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6568         type-punned pointer will break strict-aliasing rules"
6569         Old LR behaviour is again default; Klaus' LR can be choosen by
6570         defining the environment variable LRKLAUS
6571         * src/SDCCBBlock.h
6572         * src/SDCCloop.c
6573         * src/SDCClrange.c
6574         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6575         * clean.mk: fixed removal of files in bin/CVS/
6576         * device/lib/clean.mk: fixed removal of directories small and large
6577         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6578         * src/SDCCicode.c,
6579         * src/SDCCval.c: removed superflous test for pedantic
6580
6581 2003-10-05  Borut Razem <borut.razem AT siol.net>
6582
6583         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6584           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6585           message "unmatched #pragma SAVE and #pragma RESTORE"
6586
6587 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6588
6589         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6590           assembly, critical functions, atomic, nojtbound)
6591
6592 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6593
6594         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6595         * src/SDCCBBlock.h
6596         * src/SDCCloop.c
6597         * src/SDCCloop.h
6598         * src/SDCClrange.c
6599
6600 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/z80/gen.h,
6603         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6604         * src/mcs51/gen.h
6605         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6606         * src/ds390/gen.h
6607         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6608         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6609         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6610
6611 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6612
6613         * src/z80/gen.c (genRet): fixed bug #524753
6614         * src/z80/gen.c (genCast): fixed internal error on cast from
6615         pointer to long
6616         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6617         fix for bug #477835 to the z80
6618         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6619         for tracking iCodes in the peephole optimizer for z80
6620
6621 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6622
6623         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6624         the other part of bug #814548
6625         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6626
6627 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6628
6629         * src/SDCCcse.c: fixed part of bug #814548
6630
6631 2003-09-28  Borut Razem <borut.razem AT siol.net>
6632
6633         * src/asm.c: rewrite of printILine() to use temporary file instead
6634           a pipe
6635         * src/xa51/main.c: commented out declaration of int rewinds
6636
6637 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6640
6641 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6642
6643         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6644         * src/asm.c (printILine): Fixed bug #811015
6645
6646 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6647
6648         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6649         freeing.
6650
6651 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6652
6653         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6654         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6655         to correctly handle general case of AOP_PAIRPTR
6656         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6657
6658 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6659
6660         * src/mcs51/ralloc.c (fillGaps),
6661         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6662         register positioning bug)
6663
6664 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6665
6666         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6667
6668 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6669
6670         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6671         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6672         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6673         (ralloc doesn't intentionally do this now, but perhaps later)
6674         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6675         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6676         register positioning bugs (Fixed bug #762602 and #795325)
6677         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6678         (Fixed bug #808779)
6679         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6680         lines that --i-code-in-asm generates
6681
6682 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6683
6684         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6685         trying to fclose a FILE* that was already closed.
6686
6687 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6688
6689         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6690         of const struct should be treated as if const themselves)
6691
6692 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6693
6694         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6695
6696 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6697
6698         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6699         Unix (/n) and DOS (/r/n) line terminations.
6700
6701 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6702
6703         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6704         bug #613775
6705
6706 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6707
6708         * src/mcs51/gen.c (genFunction, genEndFunction),
6709         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6710         and restore of EA so that stack offsets to parameters are
6711         correct when using both critical and reentrant/stack-auto.
6712         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6713         size (can be triggered in error if sloc is shared between
6714         different sized objects)
6715         * device/include/float.h: fixed macros to explicitly use
6716         unsigned long where needed
6717
6718 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6719
6720         Feature req. 799831: added code to allow nesting of critical functions
6721         * src/mcs51/gen.c (genFunction, genEndFunction)
6722         * src/ds390/gen.c (genFunction, genEndFunction)
6723
6724 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6725
6726         * src/SDCCsymt.c (sclsFromPtr),
6727         * src/SDCCsymt.h,
6728         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6729         support for standard C idiom of memory mapped variables; for
6730         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6731         to xdata int at 0x1234 tempvar = 1.
6732         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6733         provided by Akiya ISHIDA
6734
6735 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6736
6737         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6738         * src/SDCCval.c (constVal): added reduction from int to char
6739         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6740         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6741         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6742         to ignore the sign
6743         * support/regression/tests/shifts.c: fixed
6744
6745 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6746
6747         * src/z80/gen.c (genXor): Fixed bug #805445
6748
6749 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6750
6751         Fixed bug #621531 (const & volatile confusion in the type chain).
6752         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6753         refer to the const or volatile state of the pointer itself.
6754
6755         * src/SDCCast.c
6756         * src/SDCCglue.c
6757         * src/SDCCicode.c
6758         * src/SDCCsymt.c
6759         * src/SDCCval.c
6760         * src/SDCC.y
6761         * src/SDCCsymt.h
6762         * src/pic/gen.c
6763         * src/pic/ralloc.c
6764         * src/pic16/gen.c
6765         * src/pic16/ralloc.c
6766         * support/regression/tests/const.c
6767
6768 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6769
6770         When checking for duplicated modules, use absolute paths
6771         instead of relative paths.  Files changed:
6772
6773         * as/mcs51/lklib.c
6774         * link/z80/lklib.c
6775
6776 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6777
6778         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6779
6780 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6781
6782         * device/include/string.h: added size_t typedef, changed
6783         prototypes to use size_t, eliminated separate reentrant and
6784         non-reentrant declarations, added _memmove declaration
6785         * device/lib/_memcpy.c: changed to use size_t instead of int,
6786         changed /4 to >>2 to avoid division library call
6787         * device/lib/_memcmp.c,
6788         * device/lib/_memset.c,
6789         * device/lib/_strncat.c,
6790         * device/lib/_strncpy.c,
6791         * device/lib/_strncmp.c: changed to use size_t instead of int
6792         * device/lib/_memmove.c: new file (fixed bug #772294)
6793         * device/lib/Makefile.in: added _memmove.c
6794         * device/lib/z80/asm_strings.s: fixed bug #772290
6795         * support/regression/tests/bitfields.c: attempt to fix host assertion
6796         failure on amd64-unknown-linux2.2
6797
6798 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6799
6800         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6801         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6802         * as/z80/asmain.c (main): fixed bug #801766
6803
6804 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6805
6806         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6807         compilers
6808
6809 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6810
6811         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6812         reported in bug #800609
6813
6814 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6815
6816         * Top header beautifications in src/pic16 directory:
6817           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6818           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6819           pcoderegs.h, ralloc.c, ralloc.h
6820         * main.c: added top header and GPL license notice
6821         * pcode.c: fixed the if-conditional warning
6822
6823 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6824
6825         * device/lib/_mullong.c: replaced int by short for gcc
6826
6827 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6830         and JUMPTABLE iCodes properly now (worked by accident before)
6831         * src/mcs51/gen.c (leftRightUseAcc),
6832         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6833         iCode properly now. Use getSize instead of nRegs since a & b
6834         aren't part of the nRegs tally.
6835
6836 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6837
6838         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6839         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6840           before instructions that use the _STATUS register
6841
6842 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6843
6844         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6845         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6846         fetching of the pointer
6847         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6848         copied from genNearPointerSet()
6849         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6850         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6851         If they pop r0/r1 they must be called in the opposite order than aopOp().
6852         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6853         (resp. --stack-auto), prepared for --xstack
6854
6855 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6856
6857         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6858
6859 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6860
6861         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6862         these ports have their own __sdcc_external_start()
6863
6864 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6865
6866         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6867         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6868         type for bits was changed. It resulted in bit variables becoming
6869         global, which is not permitted in PIC 14 assembly output.
6870
6871 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6872
6873         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6874
6875 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6876
6877         Z80 and MCS51 linkers complaint if a public symbol is defined
6878         in more than one library module:
6879
6880         * as/mcs51/lklib.c
6881         * link/z80/lklib.c
6882         * as/mcs51/Makefile.in
6883
6884 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         A few small changes that speed up the peephole optimizer.
6887
6888         * src/SDCCpeeph.c
6889
6890 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6891
6892         Try to make the peephole optimizer smarter by maintaining
6893         an association between the assembly source code and the
6894         iCodes that originated them. Put this information to use
6895         with a new peephole rule condition "notVolatile" so that
6896         the rules can be aggressive yet still safe.
6897
6898         * src/SDCCpeeph.c
6899         * src/SDCCpeeph.h
6900         * src/mcs51/gen.c
6901         * src/mcs51/peeph.def
6902
6903 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         Fixed bug #741761
6906
6907         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6908         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6909         if the left or right operand symbols have the accuse flag set.
6910
6911 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6912
6913         Changed the type of the result of the ! (NOT) operator to char;
6914         previously it returned the same type as the source. This allows
6915         us to eliminate all the genFloatNot functions (all of its target
6916         implementations were very buggy) since !float can use the same
6917         code as !long now.
6918
6919         * src/SDCCicode.c (ast2iCode): ! returns char
6920         * src/mcs51/gen.c (genNot, genNotFloat),
6921         * src/ds390/gen.c (genNot, genNotFloat),
6922         * src/z80/gen.c (genNot, genNotFloat),
6923         * src/pic/gen.c (genNot, genNotFloat),
6924         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6925
6926 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6927
6928         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6929         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6930            during interrupts. Ensure WSAVE is located at a shared bank address.
6931         2. Fixed page selection in some places
6932         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6933            the registers name strings.
6934         4. Fixed "signed / unsigned compare" compiler warnings.
6935         5. The PIC port manages its own allocation of the general purpose
6936            registers, but makes no attempt to reuse them. As a result when
6937            compiling it soon runs out of general purpose registers. Some
6938            additional code was added to the files pcode.c and device.c to walk
6939            through the function call tree and rename the registers so that they
6940            get reused.
6941
6942         * src/pic/device.c
6943         * src/pic/gen.c
6944         * src/pic/glue.c
6945         * src/pic/pcode.c
6946         * src/pic/pcode.h
6947         * src/pic/ralloc.c
6948         * src/pic/ralloc.h
6949         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6950         genPlus() & genMinus() when the result is the same as left or right
6951
6952 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6953
6954         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6955
6956 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6957
6958         Made bitfield a distinct type from bit so that bitfields
6959         convert as per ANSI C and bits retain their traditional
6960         boolean style behaviour. Implemented bitfield support in
6961         the z80 port.
6962
6963         * src/SDCCsymt.h,
6964         * src/SDCCsymt.c,
6965         * src/SDCCast.c,
6966         * src/cdbFile.c,
6967         * src/mcs51/gen.c,
6968         * src/ds390/gen.c: bit v bitfield split
6969         * src/z80/gen.c: New support for bitfields
6970         * support/regression/tests/bitfields.c: reenabled z80,
6971         added more tests
6972
6973 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6974
6975         Rules 246.x, 247.x relate to bitfields, the others speed up
6976         access to xdata mapped I/O devices.
6977
6978         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6979
6980 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6981
6982         Cleaned up genPackBits and genUnpackBits and added two helper
6983         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6984         for literal assignments in genPackBits (thanks to Frieder for
6985         reminding me).
6986
6987         * src/mcs51/gen.c
6988         * src/ds390/gen.c
6989
6990 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6991
6992         Fixed bug #748310 (pointer to function type mishandled when the
6993         function name is omitted). Also fixed a SIGSEGV when a function
6994         attribute (reentrant, etc) is used on a non-function or on a
6995         function but misplaced before the parameter list.
6996
6997         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6998         bug #748310
6999         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7000         * support/Util/SDCCerr.h,
7001         * support/Util/SDCCerr.c: Added func attr misuse error msg
7002
7003 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7004
7005         Fixed bug #787649 by anonymous
7006         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7007         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7008
7009 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         Fixed numerous bitfield problems.
7012
7013         * src/SDCC.y: More bitfield related error checking
7014         * src/SDCCsymt.h,
7015         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7016         * support/Util/SDCCerr.h,
7017         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7018         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7019         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7020         * support/regression/tests/bitfields.c: tests added
7021
7022 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7023
7024         Made the constant following the "interrupt" keyword optional. If
7025         omitted, the function will not automatically be given an entry
7026         in the interrupt vector table (similar to #pragma NOIV, but
7027         less syntacticly kludgy). The interrupt number is also now
7028         range checked. Also fixed a bug in the high order bit example
7029         in the manual.
7030
7031         * src/SDCC.y
7032         * src/SDCCmem.c
7033         * src/SDCCglue.c
7034         * src/SDCCsymt.h
7035         * support/Util/SDCCerr.c
7036         * support/Util/SDCCerr.h
7037         * doc/sdccman.lyx
7038
7039 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7040
7041         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7042         * src/SDCCicode.c (operandOperation): rewritten some ops
7043         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7044         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7045         other type
7046         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7047         be re-activated by defining REDUCE_LITERALS)
7048         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7049         unsigned, but are signed by default
7050         * src/SDCCval.c (constVal): rearranged
7051         * src/SDCCval.c (valMod): preliminary fix
7052         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7053         * support/regression/literalop.c: added, work in progress
7054
7055 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7056
7057         Generate warnings for useless declarations like "char data;"
7058         that don't do what new users expect.
7059
7060         * src/SDCC.y
7061         * support/Util/SDCCerr.h
7062         * support/Util/SDCCerr.c
7063
7064 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7065
7066         * src/SDCCval.c (valMult): fix overflow detection of negative int
7067
7068 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7069
7070         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7071
7072         Changes to support big endian targets:
7073
7074         * src/ports.h
7075         * src/SDCCglue.c
7076         * src/avr/main.c
7077         * src/ds390/main.c
7078         * src/izt/i186.c
7079         * src/mcs51/main.c
7080         * src/pic/main.c
7081         * src/pic16/main.c
7082         * src/xa51/main.c
7083         * src/z80/main.c
7084
7085 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7086
7087         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7088         * device/lib/time.c: fixed warning "integer overflow in expression"
7089
7090 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7091
7092         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7093         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7094         constants are unsigned; added recognition of "u" flag for unsigned
7095         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7096         * src/SDCCval.c (valDiv, valMod): fixed signdness
7097         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7098         signedness of modulo, left and right shift
7099         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7100         * support/Util/SDCCerr.h: added warning W_INT_OVL
7101         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7102         * src/SDCCast.c (ast_print): improved output of constants
7103
7104 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7105
7106         Fixed some warnings when building with MSVC:
7107
7108         * as\mcs51\asdata.c
7109         * as\z80\asdata.c
7110         * as\mcs51\asm.h
7111         * as\z80\asm.h
7112         * link\z80\aslink.h
7113         * link\z80\lkdata.c
7114         * link\z80\lkeval.c
7115         * link\z80\lkgb.c
7116         * link\z80\lkihx.c
7117         * link\z80\lks19.c
7118         * link\z80\lksym.c
7119         * support\cpp2\cpplib.c
7120         * src\ds390\gen.c
7121         * src\mcs51\gen.c
7122
7123 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7124
7125         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7126
7127 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7128
7129         * support\librarian\clean.mk: Do not remove Makefile.
7130         * support\librarian\Makefile: added.
7131
7132 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7133
7134         Added librarian to MSVC build:
7135         * all.dsp
7136         * sdcc.dsw
7137         * support\librarian\librarian.dsp
7138
7139         'configure' not needed for librarian, removed:
7140         * support\librarian\configure
7141         * support\librarian\configure.in
7142         * support\librarian\config_in.h
7143         * support\librarian\Makefile.in
7144
7145         Hopefully these ones built the librarian and the rest of sdcc properly:
7146         * Makefile
7147         * Makefile.common.in
7148
7149         Messed up 'configure', so revert to previous version:
7150         * configure
7151         * configure.in
7152
7153 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7154
7155         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7156         there, while the mantissa of a double is "only" 53 bits wide.
7157
7158 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7159
7160         Adding sdcclib to the build.  MSVC project coming soon.
7161         Files added/changed:
7162
7163         * support\librarian\clean.mk
7164         * support\librarian\configure
7165         * support\librarian\configure.in
7166         * support\librarian\config_in.h
7167         * support\librarian\Makefile.bcc
7168         * support\librarian\Makefile.in
7169         * support\librarian\sdcclib.c
7170         * Makefile.bcc
7171         * Makefile
7172         * Makefile.common.in
7173         * configure
7174         * configure.in
7175
7176 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7177
7178         Linker now complaints if linked modules have conflicting options, for
7179         example, one compiled using --model-large and another one compiled with
7180         --model-small.  The following files were modified:
7181
7182         * as\mcs51\asdata.c
7183         * as\mcs51\aslink.h
7184         * as\mcs51\asm.h
7185         * as\mcs51\asmain.c
7186         * as\mcs51\asout.c
7187         * as\mcs51\i51pst.c
7188         * as\mcs51\lkdata.c
7189         * as\mcs51\lklibr.c
7190         * as\mcs51\lkmain.c
7191         * as\z80\asdata.c
7192         * as\z80\asm.h
7193         * as\z80\asmain.c
7194         * as\z80\asout.c
7195         * as\z80\z80pst.c
7196         * link\z80\aslink.h
7197         * link\z80\lkdata.c
7198         * link\z80\lklibr.c
7199         * link\z80\lkmain.c
7200         * src\SDCCglue.c
7201
7202 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7203
7204         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7205         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7206
7207 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7208
7209         * src/z80/mappings.i: fix _mul[us][int,long] entries
7210
7211 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7212
7213         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7214
7215 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7218         * support/regression/tests/bitopcse.c: added
7219         fixed warning:
7220         * src/avr/gen.c:
7221         * src/pic/gen.c:
7222         * src/pic16/gen.c:
7223         * src/z80/gen.c:
7224         * src/xa51/gen.c:
7225
7226 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7227
7228         added support for new library format to z80, gbz80 linkers:
7229         *link/z80/aslink.h
7230         *link/z80/lklex.c
7231         *link/z80/lklib.c
7232         *link/z80/lklist.c
7233
7234 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7235
7236         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7237         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7238
7239 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         added DUMMY_READ_VOLATILE:
7242         * src/SDCC.y:
7243         * src/avr/gen.c:
7244         * src/xa51/gen.c:
7245         * src/z80/gen.c:
7246         * src/pic/gen.c:
7247         * src/pic16/gen.c:
7248         * src/mcs51/gen.c:
7249         * src/ds390/gen.c:
7250         * src/SDCCcse.c (algebraicOpts): many improvements
7251         * src/SDCCcse.h: removed algebraicOpts()
7252         * src/SDCCicode.c (picDummyRead): added
7253
7254 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7255
7256         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7257         "Insufficient space in data memory".
7258
7259 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7260
7261         * src/mcs51/gen.c: fixed bug #771358
7262         * src/z80/gen.c: fixed bug #759087
7263
7264 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * src/pic16/glue.c: minor cleanup by Vangelis
7267
7268 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7269
7270         * device/include/regc515c.h: fixed #758477
7271         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7272         * device/lib/_gptrput.c: saved a few bytes
7273         * my tab spacing is 8, yours too?)
7274         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7275         * device/lib/serial.c: process RX bytes earlier than TX bytes
7276         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7277
7278 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7279
7280         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7281
7282 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7283
7284     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7285
7286 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7287
7288         * device/lib/Makefile.in: bad fix, reverted to 1.43
7289
7290 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7291
7292         * device/lib/Makefile.in: added missing z80 object files
7293
7294 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7295
7296         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7297         pic16 progress by Vangelis:
7298         * src/SDCCglobl.h:
7299         * src/SDCCmain.c:
7300         * src/pic/Makefile:
7301         * src/pic:
7302         * pic/Makefile:
7303         * pic16/device.c:
7304         * pic16/device.h:
7305         * pic16/gen.c:
7306         * pic16/gen.h:
7307         * pic16/genarith.c:
7308         * pic16/glue.c:
7309         * pic16/main.c:
7310         * pic16/pcode.c:
7311         * pic16/pcode.h:
7312         * pic16/pcodepeep.c:
7313         * pic16/peeph.def:
7314
7315 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7316
7317     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7318
7319 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7320
7321     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7322     added gbz80 build to MSVC project.
7323     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7324     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7325     from 8051 stuff and setup so it links using a .lnk file.
7326
7327 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7328
7329     * support/librarian/sdcclib.c: sdcc librarian.
7330     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7331     with sdcclib.
7332
7333 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7334
7335     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7336
7337 2003-07-02  Borut Razem <borut.razem AT siol.net>
7338
7339         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7340         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7341         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7342         src/xa51/main.c, src/z80/main.c:
7343         virtualization of glue() function: each port has it's own glue function,
7344         which is accessed by do_glue function pointer in PORT.general structure
7345
7346 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7347
7348         * DS800C400 fun, improved ROM interface and tinibios.
7349
7350 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7351
7352         * More support for DS80C400. Now includes beginning of interface to ROM.
7353
7354 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7355
7356         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7357
7358 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7359
7360         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7361
7362 2003-06-19  Borut Razem <borut.razem AT siol.net>
7363
7364         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7365
7366 2003-06-19  Borut Razem <borut.razem AT siol.net>
7367
7368         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7369         fixed Z80 port - crt0.o: cannot open.
7370
7371 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7372
7373         * support/Util/MySystem.c (merge_command): revert bad fix
7374
7375 2003-06-18  Borut Razem <borut.razem AT siol.net>
7376
7377         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7378
7379 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7380
7381         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7382         option --use-stdout sends errors to stdout instead of stderr.
7383
7384 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7385
7386         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7387
7388 2003-06-15  Borut Razem <borut.razem AT siol.net>
7389
7390         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7391         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7392         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7393         fixed width array of pointers replaced with sets;
7394         multiple include and lib paths ared transferred to preprocessor and linker
7395         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7396         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7397         fixed width array of pointers
7398         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7399         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7400         fixupPath(), getPathDifference()
7401         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7402         fixed width array of pointers
7403
7404 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7405
7406         * src/pic16/ralloc.c: fix warnings
7407         * src/pic16/pcode.c: fix warning
7408
7409 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7410
7411          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7412         know all the details, but essentially this set of changes enable
7413         the pic16 port to generate movff instructions and generate assembler
7414         directives,
7415         * src/SDCCmain.c:
7416         * src/pic16/gen.c:
7417         * src/pic16/glue.c:
7418         * src/pic16/pcode.c:
7419         * src/pic16/device.c:
7420         * src/pic16/main.c:
7421         * src/pic16/pcode.h:
7422         * src/pic16/pcoderegs.c:
7423         * src/pic16/ralloc.c:
7424         * src/pic16/ralloc.h:
7425
7426 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7427
7428         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7429         added option --vc, so sdcc errors and warnings are compatible with
7430         Microsoft Visual Studio.
7431
7432 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7433
7434         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7435           device/lib/libfloat.lib: added atof function.
7436
7437 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7438
7439         * doc/sdccman.lyx: updated to Lyx 1.3
7440         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7441         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7442         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7443
7444 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7445
7446         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7447
7448 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7449
7450         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7451           additions to the "related tools/documentation" section
7452
7453 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7454
7455         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7456
7457 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7458
7459         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7460         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7461
7462 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7463
7464         * doc/sdccman.lyx: fix double dash and other minor things
7465         * doc/Makefile: fix double dash
7466
7467 2003-05-28  Karl Bongers(patches from Martin Helmling)
7468         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7469           condition and ignore commands.
7470
7471 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7472
7473         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7474           is in parts still quite out of date, I did changes as far as I felt makes sense
7475           for a non-native english speaker.
7476           Please feel free to add to the manual or to correct my changes.
7477         * doc/Makefile: undid touching the date of intermediate tex files.
7478
7479 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7480
7481         * doc/sdccman.lyx: Manual has an index now
7482
7483 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7484
7485         Finalize muluint/mulsint and mululong/mulslong merging:
7486         * device/lib/_mulint.c
7487         * device/lib/_mullong.c
7488         * device/lib/gbz80/mul.s
7489         * device/lib/gbz80/stubs.s
7490         * device/lib/z80/mul.s
7491         * device/lib/z80/stubs.s
7492         * src/SDCCsymt.c (initCSupport)
7493
7494 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7495
7496         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7497         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7498           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7499           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7500           instead of /Zm500.
7501
7502 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7503
7504         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7505           the regression tests I'm not brave enough to enable 245.b, 245.c
7506         * doc/sdccman.lyx: added latex preamble for hyperref package.
7507           Using pdflatex this will give you a hyperlinked pdf file with
7508           bookmarks. (prepend '%' before /usepackage if this breaks something)
7509
7510 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7511
7512          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7513
7514 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7515
7516         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7517
7518 2003-05-21    <johan AT balder>
7519
7520         * src/SDCCglue.c (printIval): fixed bug #739934
7521
7522 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7523
7524         Applied patch from bug 737905 (renamed yylineo to mylineno):
7525         * src/altlex.c
7526         * src/SDCCast.c
7527         * src/SDCglobl.h
7528         * src/SDCC.lex
7529         * src/SDCCsymt.c
7530         * src/SDCCval.c
7531         * src/pic16/pcode.c: Cleaned warnings
7532         * src/pic16/pcodeflow.c: Cleaned warnings
7533         * src/pic16/pcoderegs.c: Cleaned warnings
7534
7535 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7536
7537         * src/pic16/pcode.c: Cleaned warnings
7538         * src/pic16/pcodepeep.c: Cleaned warnings
7539         * src/pic16/ralloc.c: Cleaned warnings
7540
7541 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         * doc/sdccman.lyx: fixed bug 739745
7544         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7545
7546 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7547
7548         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7549         it can be defined with CFLAGS when running configure
7550         * src/SDCCmain.c: fixed compiling + linking with object files
7551
7552 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7553
7554         * configure.in: configure for pic16 port,
7555             added --disable-pic16-port
7556         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7557         * src/SDCCmain.c: linkOptions is changed to set *,
7558             added if/endif conditional macros to remove options help
7559             messages from optionsTable when a port is not configured, added
7560             support for the PIc16 port in the ports table, when executing
7561             the compiler with no port specified on command line, a default
7562             port is selected with the new macro DEFAULT_PORT which is
7563             defined in port.h, in setDefaultOptions() linkOptions is removed
7564             from initialization assignment, since now it is a set,
7565             parseCmdLine uses setParseWithComma for linkOptions, in
7566             linkEdit() linkOptions are accessed with new function indexSet()
7567             which returns the i'th item of a set variable. See SDCCset.c, in
7568             linkEdit() when calling buildCmdLine(), added linkOptions as
7569             last argument. Now users can pass arguments to gplink via the
7570             -Wl option, main() uses pic16glue() to glue up pic16 programs
7571         * src/SDCCpeeph.c: various changes to support pic16
7572         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7573             return the i'th item of the set
7574         * src/SDCCset.h: added function prototype for indexSet()
7575         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7576         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7577         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7578             added macro DEFAULT_PORT
7579         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7580         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7581             generated
7582         * src/pic16/glue.c: commented out some error producing lines
7583         * src/pic16/main.c: __config directives are commented out to stop
7584             gpasm complaining and test the linkage with gplink, _linkCmd and
7585             _asmCmd changed to be more gplink and gpasm friendly
7586         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7587             produced an error when parsed, peep rule 12 is added to utilize
7588             movff, but it is commented out since the pCode does not support
7589             yet a command with 2 address arguments
7590
7591 2003-05-18    <johan AT balder>
7592
7593         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7594         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7595 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7596
7597         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7598   Added feature to script commands from file.
7599
7600 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7601
7602         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7603         * src/SDCCutil.c: include ctype.h for win32
7604
7605 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7606
7607         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7608
7609 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7610
7611         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7612   Fixed so you can set breakpoints prior to run, run does not stop
7613   on entry now.  Add tbreak.  Other enhancements and fixes for use
7614   with ddd.
7615
7616 2003-05-12  Borut Razem <borut.razem AT siol.net>
7617
7618         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7619
7620 2003-05-11  Borut Razem <borut.razem AT siol.net>
7621
7622         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7623         the path of bin directory, so that PATH is the only env. variable, which has to be set
7624         in case of standard installation.
7625         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7626         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7627         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7628
7629 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7630
7631         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7632         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7633         temp files are in the port dir; clean the gen/test directory when
7634         generating new test.c
7635         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7636         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7637         * support/regression/tests/zeropad.c: added
7638
7639 2003-05-09    <johan AT balder>
7640
7641         * src/SDCCglue.c: fixed bug #597940
7642
7643 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7644
7645         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7646   cache sfr, optimize next,step, fix off by one sourceline,
7647   support ddd list function.
7648         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7649
7650 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7651
7652         * support/regression/HTMLgen.py: added compare_s2f()
7653         * support/regression/Makefile: redo 1.27
7654         * support/regression/generate-cases.py: redo 1.5
7655
7656 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7657
7658         * support/regression/tests/float.c: workaround 33 bit hex constant
7659         * support/regression/tests/simplefloat.c: fix division for host
7660
7661 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7662
7663         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7664         that tame's the PIC's over-aggressive optimizer.
7665
7666 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7667
7668          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7669          support for MSVC.
7670
7671 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7672
7673         Initial support for DS80C400. "Hello world" runs on TINIm400
7674         (with polled I/O).
7675
7676 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7677
7678          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7679          * Some notes on ddd usage added in debugger/README
7680          Martin Helmling adding more features and fixes for ddd GUI debugger.
7681          Code added for nexti, stepi, up, down, and other adjustments.
7682
7683 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7684
7685         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7686         * src/pic/peeph.def Added two rules to optimize carry manipulation
7687         * src/pic/* removed debug printfs
7688
7689 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * debugger/mcs51/cmd.c: added header newalloc.h
7692
7693 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * as/Makefile: new EXEEXT
7696         * as/z80/Makefile: remove trailing slash of BUILDIR
7697         * as/z80/clean.mk: new EXEEXT
7698         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7699         * support/cpp2/Makefile.in: new EXEEXT
7700         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7701
7702 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7703
7704         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7705         EXEEXT was introduced to fix all related problems with targets
7706         "clean", "install" and "uninstall"; a couple of further flaws
7707         especially with "clean" have been fixed too
7708         * as/mcs51/Makefile.in
7709         * as/mcs51/clean.mk
7710         * as/z80/Makefile
7711         * Makefile
7712         * clean.mk
7713         * debugger/mcs51/Makefile.in
7714         * debugger/mcs51/clean.mk
7715         * link/z80/Makefile
7716         * link/z80/Makefile.in
7717         * link/z80/clean.mk
7718         * link/Makefile
7719         * packihx/Makefile.in
7720         * packihx/clean.mk
7721         * sim/ucsim/Makefile
7722         * sim/ucsim/clean.mk
7723         * sim/ucsim/avr.src/Makefile.in
7724         * sim/ucsim/avr.src/clean.mk
7725         * sim/ucsim/s51.src/Makefile.in
7726         * sim/ucsim/s51.src/clean.mk
7727         * sim/ucsim/xa.src/Makefile.in
7728         * sim/ucsim/xa.src/clean.mk
7729         * sim/ucsim/z80.src/Makefile.in
7730         * sim/ucsim/z80.src/clean.mk
7731         * sim/ucsim/main_in.mk
7732         * sim/ucsim/packages_in.mk
7733         * sim/ucsim/gui.src/Makefile.in
7734         * sim/ucsim/gui.src/serio.src/Makefile.in
7735         * sim/ucsim/gui.src/serio.src/clean.mk
7736         * src/Makefile.in
7737         * src/clean.mk
7738         * support/cpp2/Makefile.in
7739         * support/cpp2/clean.mk
7740         * support/makebin/Makefile
7741         * support/makebin/clean.mk
7742         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7743         * doc/sdccman.lyx: --program-suffix no longer needed
7744
7745 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7746
7747          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7748          Martin Helmling added support for ddd GUI debugger.
7749          Code added to display assembly, set variables, and other commands
7750          to interface to ddd.
7751
7752 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7753
7754         * as/Makefile: fix target clean
7755         * as/clean.mk: fix target clean
7756         * as/z80/clean.mk: fix target clean
7757
7758 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7759
7760         * Makefile.common.in: added  AT EXEEXT AT
7761         * configure.in: removed all mingw32 stuff
7762         * configure: rebuilt from configure.in
7763         * doc/sdccman.lyx: updated section "installation"
7764         * support/scripts/sdcc_mingw32: adapted to configure
7765         * support/scripts/sdcc_cygwin_mingw32: added
7766
7767 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7768
7769         * src/pic Added object file support for the PIC port
7770         * src/pic Applied patch from Craig Franklin (this started the object file support)
7771         * src/regression Updated the PIC regression tests for object files
7772
7773 2003-04-20  Borut Razem <borut.razem AT siol.net>
7774
7775         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7776           lklex.c: In function `getfid':
7777           lklex.c:203: warning: array subscript has type `char'
7778         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7779           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7780         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7781           stack handling macros
7782
7783 2003-04-19  Borut Razem <borut.razem AT siol.net>
7784
7785         * "handling space characters in file path" task:
7786         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7787         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7788         * support/Util/MySystem.h: make it self-sufficient
7789         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7790           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7791           handling space characters in file path
7792         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7793           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7794         * support/Util/MySystem.c: handling space characters in executable's path
7795
7796 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7797
7798         * as/z80/Makefile: fix permanent rebuild of z80
7799         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7800         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7801
7802 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7803
7804         * src/SDCCopt.c: add special case optimization to replace modulo by
7805           a power of two with a bitwise AND.
7806
7807 2003-04-18    <johan AT balder>
7808
7809         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7810
7811 2003-04-17    <johan AT balder>
7812
7813         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7814         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7815
7816 2003-04-13  Borut Razem <borut.razem AT siol.net>
7817
7818         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7819         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7820           fixed mingw problem in adl_NORMALIZE_PATH
7821
7822 2003-04-12  Borut Razem <borut.razem AT siol.net>
7823
7824         * fixed "#pragma SAVE/RESTORE can not be nested":
7825         * src/SDCC.lex: reworked pragma handling functions
7826         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7827         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7828
7829 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7830
7831         * src/SDCCutil.c (pathEquivalent): defined but not used
7832         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7833         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7834         * configure: rebuilt from configure.in
7835         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7836         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7837         * device/include/Makefile.in: replace sdcc_datadir
7838         * device/lib/Makefile.in: replace sdcc_datadir
7839         * Makefile.common.in: add LDFLAGS from configure
7840         * packihx/Makefile.in: use LDFLAGS
7841         * src/Makefile.in: use LDFLAGS
7842         * support/cpp2/Makefile.in: add LDFLAGS from configure
7843         * support/makebin/Makefile: use LDFLAGS
7844         * .version: bumped version number to 2.3.5
7845
7846 2003-04-12  Borut Razem <borut.razem AT siol.net>
7847
7848         * completed "different paths" task:
7849         * src/SDCCmacro.c: fixed bug in handling quotes
7850         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7851         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7852
7853 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7854
7855         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7856
7857 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7858
7859         * ds390/gen.c ds390/peeph.def: fix bug 706781
7860
7861 2003-04-11  Borut Razem <borut.razem AT siol.net>
7862
7863         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7864
7865 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7866
7867         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7868         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7869          set - this bit used to not be set...).
7870         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7871           bad code in PIC Port
7872         * src/regression/and2.c added to test bug 609268
7873         * src/regression/Makefile added and2.c to regression test
7874
7875
7876 2003-04-08    <johan AT CP255758-A>
7877
7878         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7879         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7880         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7881
7882 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7883
7884         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7885         fix bug #487815
7886         * support/cpp2/Makefile.in: fix bug #487815
7887         * configure: rebuilt from configure.in
7888         * Makefile.common.in: docdir changed, new path suffixes
7889         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7890         * sdcc_vc_in.h: reflect changes from sdccconf.h
7891         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7892         * src/SDCCutil.h: remove BINDIR hack
7893         * doc/sdccman.lyx: update new path hierarchy
7894
7895 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7896
7897         * src/SDCCpeeph.c: added okToRemoveSLOC test
7898
7899 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7900
7901         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7902
7903 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7904
7905         * src/SDCCpeeph.c: added labelIsReturnOnly test
7906         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7907
7908 2003-04-05    <johan AT balder>
7909
7910         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7911         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7912         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7913         * src/SDCCast.c: fixed a warning
7914         * src/SDCCast.h: fixed a warning
7915         * src/SDCCicode.c (operandFromAst): fixed a warning
7916
7917 2003-04-04    <johan AT balder>
7918
7919         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7920         * src/SDCCast.c (decorateType): fixed bug #715076
7921         * src/SDCC.y: fixed bug #702907
7922
7923 2003-04-03    <johan AT balder>
7924
7925         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7926         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7927         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7928         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7929         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7930
7931 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7932
7933         * _decdptr.c: fix return values
7934         * _gptrget.c: fix return values
7935         * _gptrgetc.c: fix return values
7936         * _gptrput.c: fix return values
7937         * _mulint.c: fix return values
7938         * as/z80/Makefile: fix 'make -j' problem
7939
7940 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7941
7942         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7943         * configure.in: big cleanup, updated to autoconf 2.5x
7944         * configure: rebuilt from configure.in
7945         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7946         * sdcc_vc_in.h: reflect changes from sdccconf.h
7947         * doc/Makefile: fixed a flaw in "make install"
7948
7949 2003-04-02    <johan AT balder>
7950
7951         * src/ds390/gen.c (genCmp): no comments
7952         * src/mcs51/gen.c (genCmp): no comments
7953         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7954         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7955
7956 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7957
7958         * support/regression/generate-cases.py: place generated file in given sub directory
7959         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7960         * support/regression/Makefile: improvements for 'make -j';
7961         side effect: it's simpler and faster now
7962
7963 2003-03-31  Borut Razem <borut.razem AT siol.net>
7964
7965         * src/z80/main.c: link-{port} and as-{port} defined without path
7966         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7967
7968 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7969
7970         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7971
7972 2003-03-30  Borut Razem <borut.razem AT siol.net>
7973
7974         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7975           changed type of list parameter to set
7976         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7977         * src/port.h: changed type of do_assemble() parameter to set
7978         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7979           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7980           definition of "cppoutfilename" macro with NULL value in preProcess()
7981         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7982         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7983         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7984           replaced with set *binPathSet
7985         * shash_add() deallocates the item, if allready exsists, before adding the new one
7986         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7987
7988 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7989
7990         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7991           a nested for loop bug in the PIC port
7992         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7993           for loops
7994
7995 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7996
7997         * support/Util/dbuf.h: remove C++ stuff to make it portable
7998
7999 2003-03-28  Borut Razem <borut.razem AT siol.net>
8000
8001         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8002           literal strings in stringLiteral()
8003         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8004         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8005           to the project
8006
8007 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8008
8009         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8010
8011 2003-03-26    <johan AT balder>
8012
8013         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8014         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8015         * src/SDCCast.c (decorateType): fixed " -v < 3"
8016
8017 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8018
8019         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8020         Added Lenny Story's debug infrastructure changes:
8021         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8022         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8023         * src/cdbFile.c: added
8024         * src/SDCCdebug.c: added
8025         * src/SDCCdebug.h: added
8026         * src/SDCCast.c (createFunction)
8027         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8028         * src/SDCCmain.c (parseCmdLine, main)
8029         * src/SDCCmem.c (redoStackOffsets)
8030         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8031         * src/SDCCsymt.h
8032         * src/common.h
8033         * src/avr/gen.c (genAVRCode)
8034         * src/ds390/gen.c (gen390Code)
8035         * src/mcs51/gen.c (gen51Code)
8036         * src/pic/gen.c (genpic14Code)
8037         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8038         * src/xa51/gen.c (genXA51Code)
8039         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8040
8041 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8042
8043         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8044         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8045
8046 2003-03-22    <johan AT balder>
8047
8048         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8049
8050 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8051
8052         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8053         * doc/cdbfileformat.lyx: added, written by Lenny Story
8054         * doc/Makefile: added cdbfileformat.lyx
8055         * doc/clean.mk: added cdbfileformat.lyx
8056
8057 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * src/mcs51/peeph.def: fix bug #705773
8060
8061 2003-03-20    <johan AT balder>
8062
8063         An sfr/sbit can have an "at #" AND an initializer
8064         * src/SDCCsymt.c (checkSClass):
8065         * src/SDCCmem.c (allocGlobal):
8066         * src/SDCCmem.c (allocLocal):
8067         * src/SDCCast.c (createBlock):
8068
8069 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8070
8071         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8072
8073 2003-03-16    <johan AT balder>
8074
8075         Undid the hackup of const and volatile, the problem is much bigger
8076         * src/SDCC.y:1.65
8077         * src/SDCCast.c:1.171
8078         * src/SDCCglue.c:1.138
8079         * src/SDCCicode.c:1.146
8080         * src/SDCCsymt.c:1.150
8081         * src/SDCCval.c:1.65
8082
8083 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8084
8085         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8086         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8087
8088 2003-03-13    <johan AT balder>
8089
8090         Hackup const and volatile modifiers in type chains a bit:
8091         * src/SDCC.y:1.63
8092         * src/SDCCast.c:1.169
8093         * src/SDCCglue.c:1.136
8094         * src/SDCCicode.c:1.143
8095         * src/SDCCsymt.c1.146
8096         * src/SDCCsymt.h1.59
8097         * src/SDCCval.c:1.63
8098
8099 2003-03-12    <johan AT balder>
8100
8101         * src/SDCCBBlock.h: more LRH debugging junk
8102         * src/SDCCcflow.h: more LRH debugging junk
8103         * src/SDCCloop.c: more LRH debugging junk
8104         * src/SDCC.y (struct_declaration): fixed bug #697590
8105         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8106         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8107         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8108
8109 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8110         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8111         test function names must now match exactly).
8112         * src/SDCCcse.c: added special case in findCheaperOp to allow
8113         extending a short integer. Makes less awful code for bug 700121 test case.
8114
8115 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8116
8117         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8118         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8119
8120 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8121
8122         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8123         actually called (operandsNotEqual() was called for all
8124         operandsNotEqualX tests).
8125
8126 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8127
8128         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8129         with shorter literals. Fixes bug 700121.
8130
8131 2003-03-11    <johan AT balder>
8132
8133         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8134
8135 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8138         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8139
8140 2003-03-10  Borut Razem <borut.razem AT siol.net>
8141
8142         * src/SDCCmain.c: pipe preprocessor's output
8143         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8144         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8145         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8146         which closes all pipes in pipeSet set
8147         * src/SDCCset.c: free deleted item in function deleteSetItem()
8148         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8149         moved from z80 to src subproject
8150         * .version: increased version number to 2.3.4
8151
8152 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8153
8154         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8155         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8156         * support/regression/ports/xa51/spec.mk: fix typo
8157
8158 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8159
8160         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8161
8162 2003-03-09  Borut Razem <borut.razem AT siol.net>
8163
8164         * src/SDCCmain.c: pipe preprocessor's output
8165         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8166         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8167         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8168         which closes all pipes in pipeSet set
8169         * src/SDCCset.c: free deleted item in function deleteSetItem()
8170         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8171         moved from z80 to src subproject
8172
8173 2003-03-09  Borut Razem <borut.razem AT siol.net>
8174
8175         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8176         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8177         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8178         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8179         * src/SDCCglobl.h: unification of WIN32 native definitions
8180
8181 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8182
8183         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8184
8185 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8186
8187         * src/configure.in:   check for endianess (even while cross-compiling)
8188         * src/configure:      check for endianess (even while cross-compiling)
8189         * src/configure_in.h: check for endianess (even while cross-compiling)
8190         * src/avr/gen.c:        remove old endianess stuff
8191         * src/mcs51/gen.c:      remove old endianess stuff
8192         * src/ds390/gen.c:      remove old endianess stuff
8193         * src/pic/gen.c:        remove old endianess stuff
8194         * src/pic/genarith.c:   remove old endianess stuff
8195         * src/pic/glue.c:       fix endianess check
8196         * src/pic16/gen.c:      remove old endianess stuff
8197         * src/pic16/genarith.c: remove old endianess stuff
8198         * src/pic16/glue.c:     fix endianess check
8199         * src/xa51/gen.c:       remove old endianess stuff
8200         * src/z80/gen.c:        fix endianess check
8201         * src/SDCCglue.c:       fix endianess check
8202         * src/ds390/peeph.def: fix bug 700036
8203
8204 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8207         * src/configure: find appropriate data-types on host for SDCC's int and long
8208         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8209         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8210         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8211
8212 2003-03-07    <johan AT balder>
8213
8214         Just a big NOOP:
8215                 some minor cleanups before the big shot
8216                 OP_DEFS and OP_USES now use Kevin's protection
8217                 new option --nolabelopt
8218
8219         * src/SDCCBBlock.c:
8220         * src/SDCCast.c,:
8221         * src/SDCCcflow.c:
8222         * src/SDCCcse.c:
8223         * src/SDCCicode.c:
8224         * src/SDCCicode.h:
8225         * src/SDCClabel.c:
8226         * src/SDCCloop.c:
8227         * src/SDCCmain.c:
8228         * src/ds390/ralloc.c:
8229         * src/mcs51/ralloc.c:
8230         * src/pic/ralloc.c:
8231         * src/xa51/ralloc.c:
8232         * src/z80/ralloc.c:
8233
8234 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * src/pic/pcode.c (get_op): fix 64 bit warnings
8237         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8238         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8239         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8240         * support/regression/tests/malloc.c: fix 64 bit warnings
8241
8242 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8243
8244         * src/mcs51/gen.c (genMinus): fixed bug 696436
8245
8246 2003-03-02  Borut Razem <borut.razem AT siol.net>
8247
8248         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8249
8250 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8251
8252         * configure.in: test for mkstemp
8253         * sdccconf_in.h: add HAVE_MKSTEMP
8254
8255 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * device/include/ctype.h: removed warning while using --stack-auto
8258         * device/include/malloc.h: removed warning while using --stack-auto
8259         * device/include/string.h: removed warning while using --stack-auto
8260
8261 2003-02-23  Borut Razem <borut.razem AT siol.net>
8262
8263         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8264         because NDEBUG is defined (see man assert)
8265         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8266
8267 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8268
8269         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8270         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8271
8272 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8273
8274         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8275         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8276
8277 2003-02-18    <johan AT balder>
8278
8279         * as/mcs51/asmain.c (asmbl): module can start with a digit
8280         * as/z80/asmain.c (asmbl): module can start with a digit
8281
8282 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8283
8284         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8285         * src/asm.c: fix pipe() for Mingw32
8286
8287 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8288
8289         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8290         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8291         make -V work again; --c1mode reads now from stdin
8292         * doc/sdccman.lyx: added --c1mode
8293         * support/Util/SDCCerr.c: new messages for c1 mode
8294         * support/Util/SDCCerr.h: new messages for c1 mode
8295         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8296
8297 2003-02-15    <johan AT balder>
8298
8299         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8300
8301 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8302
8303         * doc/sdccman.lyx: Environment variables, -o and other minor things
8304
8305 2003-02-14    <johan AT balder>
8306
8307         * src/xa51/main.c: before anyone really tries to use it :)
8308
8309         * Install doc's in share/sdcc/doc
8310         * removed some obsolete files
8311         * Do a proper make distclean and uninstall
8312         M Makefile.common.in
8313         R sdccbuild.sh
8314         M as/Makefile
8315         M device/include/Makefile.in
8316         M device/lib/Makefile.in
8317         M doc/sdccman.lyx
8318         M link/Makefile
8319         M sim/ucsim/doc/Makefile.in
8320         M src/clean.mk
8321         R src/avr/peeph.rul
8322         R src/xa51/peeph.rul
8323         M support/cpp2/Makefile.in
8324         M support/makebin/Makefile
8325
8326
8327 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8328
8329         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8330
8331 2003-02-10  Borut Razem <borut.razem AT siol.net>
8332
8333         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8334         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8335         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8336         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8337         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8338         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8339         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8340         src/z80/Makefile.bcc: Borland Makefile cleanup
8341         * as/z80/Makefile.bcc: Added Borland Makefile
8342         * support/cpp2/borland.h: Removed
8343
8344 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8347         * src/SDCC.lex: new pragma NOIV
8348         * src/SDCCglobl.h: new pragma NOIV
8349         * src/SDCCmem.c: new pragma NOIV
8350
8351 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8354
8355 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8356
8357         * src/SDCCmain.c: signal handling is switched off by --debug
8358         * doc/Makefile: small fix for install; use clean.mk again
8359         * doc/clean.mk: clean *.pdf and *.html too
8360
8361 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8362
8363         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8364         * device/lib/printfl.c: fix a ds390 bug by making it portable
8365         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8366         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8367         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8368         * debugger/mcs51/cmd.c: converted multi-line string literals
8369         * sim/ucsim/globals.cc: converted multi-line string literals
8370         * src/SDCCmain.c: introduced signal handler to remove temp files
8371         * doc/Makefile: small tweaks, implement clean
8372         * doc: removed generated files
8373
8374 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8375
8376         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8377         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8378         Address Record is not correctly generated for DS390."
8379
8380 2003-02-02  Borut Razem <borut.razem AT siol.net>
8381
8382         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8383         * as/mcs51/asm.h: fixed compilation with Borland C
8384         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8385         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8386         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8387         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8388         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8389         src/z80/Makefile.bcc: delete $(LIB) only if exist
8390         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8391
8392 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8393
8394         * device/include/malloc.h: introduced NULL
8395         * device/include/string.h: introduced NULL
8396         * device/include/stdlib.h: introduced NULL
8397         * device/lib/_memcpy.c: removed NULL
8398         * device/lib/_strcat.c: removed NULL
8399         * device/lib/_strchr.c: removed NULL
8400         * device/lib/_strcmp.c: removed NULL
8401         * device/lib/_strcpy.c: removed NULL
8402         * device/lib/_strcspn.c: removed NULL
8403         * device/lib/_strlen.c: removed NULL
8404         * device/lib/_strncat.c: removed NULL
8405         * device/lib/_strncmp.c: removed NULL
8406         * device/lib/_strncpy.c: removed NULL
8407         * device/lib/_strpbrk.c: removed NULL
8408         * device/lib/_strrchr.c: removed NULL
8409         * device/lib/_strspn.c: removed NULL
8410         * device/lib/_strstr.c: removed NULL
8411         * device/lib/_strtok.c: removed NULL
8412         * device/lib/malloc.c: removed NULL, include own header
8413
8414 2003-02-02    <johan AT balder>
8415
8416         * 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
8417         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8418         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8419         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8420         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8421         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8422
8423 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8424
8425         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8426         area 'DATA'"
8427
8428 2003-02-01    <johan AT balder>
8429
8430         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8431
8432 2003-01-31    <johan AT CP255758-A>
8433
8434         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8435
8436 2003-01-30    <johan AT balder>
8437
8438         * src/SDCCBBlock.c: automatic bug detection
8439         * src/SDCCicode.c: automatic bug detection
8440
8441 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8442
8443         * src/SDCCglobl.h:   now --xram-size 0 works
8444         * src/SDCCmain.c:    now --xram-size 0 works
8445
8446 2003-01-29    <johan AT balder>
8447
8448         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8449
8450 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8451
8452         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8453         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8454         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8455         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8456         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8457         * src/SDCCmain.c:    Added options --xram-size and --code-size
8458
8459 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8460
8461         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8462         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8463
8464 2003-01-27    <johan AT balder>
8465
8466         * src/SDCC.y: fixed bug #613764
8467
8468 2003-01-26    <johan AT balder>
8469
8470         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8471         * src/SDCCsymt.h: fixed bug #673374
8472         * src/SDCCglue.c: fixed bug #661910
8473         * src/SDCCast.c: fixed bug #458099 and 673374
8474
8475 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8476
8477         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8478         * as/mcs51/strcmpi.h: added
8479         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8480         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8481         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8482         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8483         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8484         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8485         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8486         * as/mcs51/Makefile.aslink: new module strcmpi
8487         * as/mcs51/Makefile.asx8051: new module strcmpi
8488         * as/mcs51/Makefil.bcc: new module strcmpi
8489         * as/mcs51/Makefile.in: new module strcmpi
8490         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8491
8492 2003-01-26    <johan AT balder>
8493
8494         * src/SDCCglue.c: reverted back to 1.124
8495         * src/SDCCast.c: reverted back to 1.156
8496         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8497
8498 2003-01-25    <johan AT balder>
8499
8500         * src/SDCCglue.c: A better fix for bug #661910
8501         * src/SDCCast.c: A better fix for bug #661910
8502         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8503
8504 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8505
8506         * src/Makefile.in: remove spawn.o
8507         * src/SDCCmain.c: remove spawn.h
8508         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8509         * src/spawn.c: removed
8510         * src/spawn.h: removed
8511         * support/regression/ports/ds390/spec.mk: link with -r
8512
8513 2003-01-24    <johan AT CP255758-A>
8514
8515         * src/ds390/gen.c (aopOp): fixed bug #667458
8516         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8517         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8518         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8519
8520 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8521
8522         * src/mcs51/peeph.def: better assembler identation by Frieder
8523         * src/mcs51/gen.c: better assembler identation by Frieder
8524
8525 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * as/z80/string.h: removed for gcc 3.2
8528         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8529         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8530
8531 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8532
8533         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8534         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8535         * support/regression/Makefile: separate temp files for ports
8536         * support/regression/generate-cases.py: separate temp files for ports
8537         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8538         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8539
8540 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8541
8542         * moved tinitalk to device/examples/ds390
8543
8544 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8545
8546         * as/mcs51/lkmem.c: rflag is for DS390
8547         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8548         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8549                          (linkEdit): move mem- and map-files the same way as ihx-files
8550         * src/z80/main.c (_setDefaultOptions): removed --generic
8551         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8552         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8553         * src/pic/glue.c (picglue): --c1mode works again
8554         * src/pic16/glue.c (pic16glue): --c1mode works again
8555         * src/asm.c (printCLine): fix #660034
8556
8557 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8558
8559         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8560         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8561         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8562         * as/mcs51/lkmem (summary): better fix for sp problem
8563         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8564         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8565         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8566                                               remove --stack-after-data
8567
8568 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8569
8570         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8571         * src/SDCCutil.c (join): ugly bug: missing '\0'
8572         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8573
8574 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8575
8576         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8577         * src/port.h: typo
8578         * src/pic/main.c (_asmCmd): gpasm supports -o
8579         * src/z80/main.c: more general macros
8580         * device/lib/Makefile.in: remove intermediate files
8581
8582 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8583
8584         * .version: Bumped version number to 2.3.3
8585         * src/SDCCBBlock.c: new option -o
8586         * src/SDCCglobl.h: new option -o
8587         * src/SDCCglue.c: new option -o
8588         * src/SDCCmain.c: new option -o
8589         * src/asm.c: new option -o
8590         * src/ds390/main.c: new option -o
8591         * src/pic/glue.c: new option -o
8592         * src/pic/pcode.c: new option -o
8593         * src/pic/ralloc.c: new option -o
8594         * src/pic16/glue.c: new option -o
8595         * src/pic16/pcode.c: new option -o
8596         * src/pic16/ralloc.c: new option -o
8597         * src/z80/main.c: new option -o
8598         * device/lib/Makefile.in: use -o
8599         * support/regression/ports/ds390/spec.mk: use -o
8600         * support/regression/ports/gbz80/spec.mk: use -o
8601         * support/regression/ports/mcs51/spec.mk: use -o
8602         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8603         * support/regression/ports/z80/spec.mk: use -o
8604         * support/regression/ports/ucz80/spec.mk: use -o
8605         * support/regression/ports/xa51/spec.mk: use -o
8606         * support/regression/fwk/lib/timeout.c: fix usage string
8607
8608 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8609         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8610
8611 2003-01-07    <johan AT balder>
8612
8613         * src/SDCCast.c (decorateType): fixed bug #600035
8614
8615 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8616         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8617         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8618         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8619         * src/pic/pcode.c: outcommented unused variable to remove warnings
8620         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8621
8622 2003-01-06    <karl AT turbobit.com>
8623         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8624    regression tests.
8625
8626 2003-01-06    <johan AT balder>
8627
8628         * src/SDCCicode.c: fixed array add
8629
8630 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8631         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8632         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8633
8634 2003-01-04    <johan AT balder>
8635
8636         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8637
8638 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8639         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8640
8641 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8642         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8643         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8644
8645 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8646         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8647
8648 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8649         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8650
8651 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8652         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8653
8654 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8655
8656     * in \sdcc\as\mcs51\ changed these files in order to create an
8657     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8658     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8659     following files to include the previous two files: aslink.dsp,
8660     Makefile.aslink, Makefile.bcc, and Makefile.in.
8661
8662     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8663     .adb instead of .cdb
8664
8665 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8666
8667         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8668         value from option --iram-size.
8669
8670 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8671
8672         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8673         dram[] array.
8674
8675 2002-09-18    <wiml AT hhhh.org>
8676
8677         * SDCClrange.h: exposed setFromRange() and setToRange()
8678         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8679           packRegsForAccUse() (bug 542397)
8680         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8681           multiple times and emitting the fetch operations more than once
8682           added aopGetUsesAcc() function to allow binary operators to
8683           fetch their operands in the correct order; made genMinus() emit
8684           compact code for X = LITERAL - Y
8685
8686 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8687         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8688         sprintf() in line 1267.
8689
8690 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8691         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8692         like ports.
8693
8694 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8695         Changes to aslink (All the changes are marked with 'JCF'):
8696
8697         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8698         summary().
8699
8700         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8701         area BSEG.  Also moves, if possible, the DATA area down into the internal
8702         ram so more space is available.
8703
8704         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8705         sflag.
8706
8707         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8708         not bytes.  Function summary() which creates a memory usage summary
8709         file with extension .mem.  Reports of overlaping stack and small stack
8710         size.  If the space for the stack is less than 16 bytes aslink trows a
8711         warning.
8712
8713         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8714         the 8051.  Option 'y' for memory summary output file.
8715
8716         Changes to sdcc (All the changes are marked with 'JCF'):
8717
8718         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8719
8720         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8721         overlaying area for it (uses RegBankUsed[4]).
8722
8723         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8724         bank zero as used by default.  By default aslink locates the stack
8725         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8726         the creation of the .mem file.  Delegates the allocation of data area
8727         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8728         the begining of the stack area to aslink.
8729
8730         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8731         glue() in SDCCglue.c creates an area for it.
8732
8733 2002-09-03  Borut Razem <borut.razem AT siol.net>
8734         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8735         sdcc/src/pic/glue.c:
8736         introduced atexit() handler for teporay files removal in case of
8737         errors, assertions, ...
8738
8739 2002-08-29  Borut Razem <borut.razem AT siol.net>
8740         * sdcc/support/cpp2/auto-host_vc_in.h:
8741         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8742         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8743         Maybe there is a similar problem with BORLANDC? It should be checked!
8744
8745         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8746         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8747         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8748         was not executed, and the compiler (cl) launched a warning:
8749         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8750
8751 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8752         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8753
8754 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8755         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8756
8757         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8758           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8759           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8760           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8761           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8762           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8763           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8764         - added Release configuration in VS projects
8765         - review of compiler an linker options
8766         - VC .exe files are generated in bin_vc directory, not to interfere
8767           with binaries generated from other projects (cygwin, mingw, bcc ...)
8768
8769         * sdcc/src/yacc.dsp: added
8770
8771         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8772         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8773         and insert the version number definitions from .version
8774
8775         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8776
8777         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8778         added - genarate auto-host.h using auto-host_vc_in.h as template
8779
8780         * sdcc/sdcc_vc.h,
8781         removed from CVS, generated automatically
8782
8783 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8784         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8785
8786 2002-08-11  Borut Razem <borut.razem AT siol.net>
8787         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8788
8789 2002-08-10  Borut Razem <borut.razem AT siol.net>
8790         * src/SDCCmain.c (main):
8791         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8792         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8793         The consequence was that some temporary files were not removed.
8794
8795         * src/SDCCglue.c:
8796         unification of code in functions tempfilename() and tempfile():
8797         function tempnam() is defined in Visual Studio 6.0 and .NET
8798
8799         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8800
8801         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8802           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8803         - removed compiler command line option /WX: Treats all warnings as errors
8804         - update a list of source files, included into the project
8805
8806         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8807           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8808         changed project type to Generic Project so that can be correcly converted to VS.NET project
8809
8810         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8811
8812         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8813
8814         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8815
8816         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8817         added return 0 statements after assert() to make compiler happy
8818
8819         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8820         added newline in the def file to keep MSC compiler satisfied
8821
8822         * sdcc/src/z80/gen.c:
8823         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8824           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8825         - solved MSC error in function aopDump()
8826
8827         * sdcc_vc.h: define PREFIX as "\\sdcc"
8828
8829 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8830         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8831
8832 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8833         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8834         - Rewrote the register banking algorithm.
8835         - Added pCode live-range analysis to registers (for now, only non-used and
8836         singly-used registers optimized away)
8837
8838         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8839
8840         * 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.
8841
8842 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8843         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8844
8845 2002-04-22  Michael Hope  <michaelh AT vroom>
8846
8847         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8848
8849         * configure.in (DD_COPT): Added include support required for gbdk.
8850
8851         * .version: Bumped version number just to increase it.
8852
8853         * src/SDCCmain.c: Added -nostdinc to the default options.
8854
8855 2002-04-15  Michael Hope  <michaelh AT vroom>
8856
8857         * device/lib/z80/printf.c (sprintf): Added.
8858
8859         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8860
8861         * src/z80/peeph.def: Added transpose redundent load rule.
8862
8863         * src/z80/main.c: Added force callee saves for jaune.
8864
8865         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8866
8867         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8868
8869 2002-03-28  Johan Knol  <johan AT balder>
8870
8871         * src/SDCCval.c: fixed bug #532436
8872
8873 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8874         * /src/port.h:
8875         Added "char *Processor" field to the port structure.
8876
8877         * /src/SDCCmain.c:
8878         Added -p option. Allows port dependent processor to be specified.
8879
8880         * all ports:
8881         Initialized the new field char *Processor field to NULL in all ports
8882
8883         * /src/pic/*:
8884         Compiler generated registers for interrupt context saving
8885         were not getting allocated.
8886
8887 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8888
8889         * /src/SDCCast.c:
8890         Fixed left shift. Will promote the left side of a left shift
8891         if a) left shifting more than size of operand or b) when assigned
8892         to something size > size of left side
8893
8894 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8895         * src/pic/*
8896         tons of changes. Register allocation has been
8897         rewritten. Added customization for the various PICs. Flow
8898         analysis is restructured. ...
8899
8900         * src/pic/device.h:
8901         Added
8902
8903         * src/pic/device.c:
8904         Added. device.c is a PIC port hack to accomodate variations
8905         in PIC devices.
8906
8907 2002-03-13  Michael Hope  <michaelh AT vroom>
8908
8909         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8910
8911 2002-03-04  johanknol  <johanknol AT manik>
8912
8913         * /src/SDCCval.c: fixed
8914
8915         const unsigned char arr[][2] = { { 0, 1 } };
8916         t18.c:1: error: Initializer element is not constant
8917
8918 2002-03-04  bela  <bela AT manik>
8919
8920         * /device/include/mcs51reg.h:
8921         ds89c420 register definition update
8922
8923 2002-03-03    <johan AT FRIJA>
8924
8925         * support/Util/SDCCerr.c: did something, but don't no why anymore
8926
8927         * support/regression/tests/bug-524691.c: made it a little less shy
8928
8929         * src/SDCCast.c (decorateType): fixed bug #524697
8930
8931         * src/SDCCast.c: made some lineno improvements
8932
8933         * src/SDCCval.c (getNelements): changed warning to error
8934
8935         * src/SDCCglue.c (printIvalArray): changed warning to error
8936
8937         * src/SDCCicode.c: fixed a warning for mingw
8938
8939         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8940
8941         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8942
8943 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8944
8945         * src/ds390/peeph.def:
8946         Added some more peephole rules
8947
8948         * src/ds390/gen.c: Various fixes & enhancements
8949
8950         * src/SDCClrange.c, src/SDCClrange.h:
8951         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8952
8953         * src/ds390/ralloc.c:
8954         various fixes & enhancements (ds390) specific
8955
8956         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8957         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8958         from rallocs.
8959
8960         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8961
8962 2002-03-02    <johan AT FRIJA>
8963
8964         * src/SDCCast.c (decorateType): fixed bug #524708
8965
8966         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8967
8968         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8969
8970 2002-03-01  Michael Hope  <michaelh AT vroom>
8971
8972         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8973
8974         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8975
8976 2002-03-01    <johan AT FRIJA>
8977
8978         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8979
8980         * src/SDCCast.c (decorateType): fixed bug #524209
8981
8982         * src/SDCCval.c (valNot): fixed bug #524195
8983
8984 2002-02-26    <johan AT balder>
8985
8986         * src/xa51/gen.c: fixed a warning
8987
8988         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8989
8990         * src/SDCCast.c (decorateType): fixed bug #522534
8991
8992 2002-02-23    <johan AT balder>
8993
8994         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8995
8996 2002-02-22    <johan AT balder>
8997
8998         * src/SDCCast.c: fixed bug #514865
8999
9000         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9001
9002 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9003
9004         * sdcc/src/SDCCloop.c:
9005         Previous fix was not good. basic blocks that have "break" or "return" are
9006         not really partof a loop , but live ranges used in these blocks should
9007         be live thru the entire loop, so set partOfLoop but don't add them to
9008         loop region
9009
9010 2002-02-21    <johan AT FRIJA>
9011
9012         * src/SDCCcse.c: fixed bug #514308
9013
9014 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9015
9016         * src/SDCCloop.c:
9017         Fixed BUG #519583. If a conditional block ended in a return/break
9018         statement inside a loop, it was not being considered part of the loop.
9019
9020         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9021
9022 2002-02-10  Karl Bongers <karl AT turbobit.com>
9023
9024         * debugger/*:
9025         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9026         with lots of comments and notes.
9027
9028         * device/examples/test2.c:
9029         Fix bug, "red" variable not being initialized(compiler complained).
9030
9031         * device/examples/Makefile, examples/test3.c:
9032         Add Makefile in device/examples folder, compiles test3.c
9033         for use as a multiple module SDCDB test case.
9034
9035         * sim/ucsim/cmd.src/cmdset.cc:
9036         Took out debug printfs in ucsim "next" command.
9037
9038         * sim/ucsim/xa.src:
9039         Karl and Johan start ucsim XA support.  Most dissassembly working,
9040         about 75% emulation done(plenty of work remaining).
9041
9042         * sim/ucsim/z80.src:
9043         Add Z80 support to ucsim, add test-ucz80 regression test,
9044         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9045         Notice z80 compiler fails on examples/test3.c/crc code.
9046
9047 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9048
9049         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9050         Added support for --parms-in-bank1
9051
9052         * src/ds390/peeph.def:
9053         added a few more peephole optimzations
9054
9055         * src/ds390/main.c:
9056         1) added __builtin_inp & __builtin_outp used to read in data of given length
9057            from a memory mapped port
9058         2) added __builtin_memcmp
9059         3) added __builtin_swapw swap bytes of a short
9060
9061         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9062         1) handle multiple send & receives from register bank1
9063         2) ralloc can now allocate DPTR1 to some liveRanges
9064
9065         * src/SDCCsymt.c, src/SDCCsymt.h:
9066         changes to handle multiple sends & receives
9067
9068         * src/SDCCptropt.h:
9069         added some pointer arithmetic optimization
9070
9071         * src/SDCCptropt.c:
9072         added some pointer arithmetic optimizations but not stable yet so not
9073         called from anywhere (will get this working shortly)
9074
9075         * src/SDCCopt.c: fixed for multiple sends & receives
9076
9077         * src/SDCCmain.c:
9078         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9079         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9080            set preprocessor defines (depending on options)
9081
9082         * src/SDCCicode.c, src/SDCCicode.h:
9083         changes made to handle multiple sends & receives
9084
9085         * src/SDCCglobl.h:
9086         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9087
9088         * src/SDCCcse.c, src/SDCCcse.h:
9089         added function findbackward def (to be used in upcoming optimization)
9090
9091         * src/SDCCcflow.c, src/SDCCcflow.h:
9092         added function returnAtEnd - to determine if a basic block terminates with
9093         a RETURN iCode
9094
9095         * src/SDCCast.c, src/SDCCast.h:
9096         added option parms-in-bank1
9097
9098         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9099         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9100         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9101         adjusted for --parms-in-bank1 option
9102
9103         * device/include/string.h:
9104         donot redefine "reentrant" keyword
9105
9106         * device/include/ds80c390.h: Added some more SFRs
9107
9108 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9109
9110         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9111
9112 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9113
9114         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9115
9116 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9117
9118         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9119
9120 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9121
9122         * Added --xram-movc option
9123
9124 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9125
9126         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9127
9128 2002-01-11  Johan Knol
9129
9130         * Added math lib of Jesus Calvino-Fraga
9131
9132 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9133
9134         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9135         * support/regression/Makefile: new target test-mcs51-stack-auto
9136         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9137
9138 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9139
9140         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9141
9142 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9143
9144         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9145
9146 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9147
9148         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9149
9150         * src/SDCCglue.h: add definition for printIvalChar()
9151
9152 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9153
9154         * src/SDCCast.c: fix #498138 by Johan
9155
9156         * src/SDCCglue.c: fix #498138 by Johan
9157
9158 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9159
9160         * support/regression/Makefile: fix clean
9161
9162         * support/regression/ports/ds390/support.c: fix transmission of last character
9163
9164 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9165
9166         * /sdcc/src/ds390/gen.c:
9167         a) improved computing address of stack variable
9168         b) took out some #if 0 code
9169         c) improved parmBytes adjustment
9170         d) improved genPlusIncr & genMinusIncr
9171         e) genCmp could generate bad code (when left assigned to DPTR)
9172         f) Fixed bug in hasInc
9173
9174         * /sdcc/src/ds390/ralloc.c:
9175         a) packRegsForSupport could mess up live information (Fixed)
9176         b) packRegsDPTRuse could be incorrect for left & right shift
9177
9178         * /sdcc/src/mcs51/ralloc.c:
9179         packRegsForSupport could mess up the live information (Fixed)
9180
9181         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9182
9183         * /sdcc/src/SDCCast.c:
9184         can reverse a loop even if function call is present as long
9185         as the loop control variable is local & is not passed as parameter
9186
9187 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9188
9189         * /sdcc/ChangeLog: *** empty log message ***
9190
9191         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9192         More builtin function additions for TININative
9193
9194         * /sdcc/src/ds390/ralloc.c:
9195         Had broken the regression testsuite
9196
9197         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9198
9199         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9200         Added funcattr hasStackParms will be set for reentrant functions when there
9201         are paramteres on the stack, this helps in minimizing frame pointer generation
9202         typeFromStr can handle function pointers now
9203
9204         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9205         *** empty log message ***
9206
9207 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9208
9209         * /src/ds390/gen.c, /src/ds390/main.c:
9210         More builtin function additions for TININative
9211
9212         * /src/ds390/ralloc.c:
9213         Had broken the regression testsuite
9214
9215         * /src/SDCCast.c: Fixed a bug in dumptree
9216
9217         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9218         Added funcattr hasStackParms will be set for reentrant functions when there
9219         are paramteres on the stack, this helps in minimizing frame pointer generation
9220         typeFromStr can handle function pointers now
9221
9222         * /doc/builtins.txt, /doc/TININative.txt:
9223         *** empty log message ***
9224
9225
9226 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9227
9228         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9229         ALPHA version for -mTININative
9230
9231         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9232         updated to reflect changes in the port structure
9233
9234         * /src/port.h:
9235         added function do_assemble (similar to do_link) if non-null this function
9236         will be called to do assembly (-mTININative) requires a multi command
9237         assembly
9238         added function genAssemblerEnd will be called to generate assembler Epilogue
9239
9240         * /src/SDCCsymt.c:
9241         added _JavaNative to debug info printing
9242
9243         * /src/SDCCmain.c: added option --tini-libid
9244         added port->do_assemble function (-mTININative) has a multi command assemble
9245
9246         * /src/SDCCglue.c: Disabled "constExpr" check
9247         added port->genAssemblerEnd function
9248
9249         * /src/SDCCglobl.h: Added option --tini-libid value
9250
9251         * /src/SDCCast.h:
9252         tookout optimizeCompare from the header (has no external references)
9253
9254         * /src/SDCCast.c: made one more function "static"
9255
9256 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9257
9258         * src/z80/mappings.i: Added z80asm support.
9259
9260         * src/z80/main.c: Added z80asm support on --asm=z80asm
9261
9262         * src/z80/gen.c: Fixed asm portability issues.
9263
9264         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9265
9266         * src/SDCCglue.c (printExterns): Added global/extern split.
9267
9268 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9269
9270         * support/regression/Makefile: added test for mcs51 model large
9271
9272         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9273
9274         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9275
9276 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9277
9278         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9279
9280 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9281
9282         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9283
9284         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9285
9286 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9287
9288         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9289
9290         * support/regression/tests/simplefloat.c: Port to mcs51.
9291
9292 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9293         * support/regression/tests/bug-485362.c: Added.
9294
9295         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9296
9297         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9298
9299         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9300
9301         * src/z80/gen.c (aopDump): Added a dump function.
9302
9303 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9304         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9305
9306         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9307
9308         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9309
9310         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9311
9312         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9313
9314         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9315
9316         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9317
9318         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9319
9320         * support/regression/ports/ds390/support.c: Use tinibios.
9321
9322         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9323
9324 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9325
9326         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9327         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9328
9329         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9330
9331         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9332
9333 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9334
9335         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9336
9337         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9338         (packRegsForIYUse): Created and optimised.
9339
9340 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9341
9342         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9343 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9344
9345         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9346
9347         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9348
9349         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9350
9351 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9352
9353         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9354
9355         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9356
9357 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9358
9359         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9360
9361         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9362
9363         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9364
9365 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9366
9367         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9368         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9369         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9370
9371         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9372
9373         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9374         (genNotFloat): Added.
9375         (genUminusFloat): Added.
9376
9377         * device/lib/z80/Makefile: Added floating pt stubs.
9378
9379         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9380
9381         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9382
9383         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9384
9385 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9386
9387         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9388
9389         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9390
9391         * sdcc/support/regression/Makefile: Add port ds390.
9392
9393         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9394
9395         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9396
9397         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9398
9399         * sdcc/support/regression/ports/ds390/support.c: Added.
9400
9401         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9402
9403         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9404
9405         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9406
9407 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9408
9409         * device/include/malloc.h: Added z80 and gbz80 support.
9410
9411         * device/lib/gbz80/heap.s: Added.
9412
9413         * device/lib/z80/heap.s: Added.
9414
9415         * device/lib/malloc.c: Added z80 and gbz80 support.
9416
9417         * support/regression/tests/malloc.c (testMalloc): Added.
9418
9419         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9420
9421         * support/regression/tests/bug-478094.c: Added.
9422
9423         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9424
9425 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9426
9427         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9428
9429         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9430
9431         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9432
9433         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9434
9435         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9436
9437 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9438
9439         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9440
9441 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9442
9443         * support/regression/tests/bug-477927.c: Added.
9444
9445         * src/z80/peeph.def: Added minor rules.
9446
9447         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9448
9449         * src/z80/peeph.def: Added jump optimisation modification.
9450
9451 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9452
9453         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9454
9455 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9456
9457         * support/regression/tests/funptrs.c: Added.
9458
9459 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9460
9461         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9462
9463 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9464
9465         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9466
9467         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9468
9469         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9470         (movLeft2ResultLong): Created.
9471
9472         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9473         (joinPushes): Added.  Joins two char pushes into a word push.
9474
9475 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9476
9477         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9478
9479         * support/makebin/Makefile (install): Added creation of dest dir.
9480
9481 2001-10-24 Karl Bongers <karl AT turbobit.com>
9482
9483         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9484
9485 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9486
9487         * src/z80/ralloc.c: Turned off faulty pack for one use.
9488
9489         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9490
9491         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9492
9493 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9494
9495         * support/regression/Makefile: Improved clean
9496
9497         * support/regression/ports/gbz80/spec.mk: Added clean
9498
9499         * support/regression/ports/host/spec.mk: Added clean
9500
9501         * support/regression/ports/z80/spec.mk: Added clean
9502
9503         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9504
9505         * support/regression/ports/mcs51/timeout.c: little improvements
9506
9507 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9508
9509         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9510
9511         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9512
9513         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9514
9515 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9516
9517         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9518
9519         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9520
9521 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9522         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9523
9524         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9525
9526         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9527
9528         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9529
9530         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9531
9532         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9533
9534         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9535
9536         * support/regression/tests/longor.c: Added.
9537
9538 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9539
9540         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9541
9542         * as/mcs51/aslink.h: define PATH_MAX
9543
9544         * as/mcs51/asm.h: define PATH_MAX
9545
9546         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9547
9548         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9549
9550         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9551
9552         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9553
9554         * src/SDCCglobl.h: define PATH_MAX
9555
9556         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9557
9558         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9559
9560 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9561
9562         * src/z80/gen.c (gencjneshort): Fixed
9563
9564         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9565
9566 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9567
9568         * support/regression/tests/bug-469671.c: Added.
9569
9570         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9571
9572 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9573
9574         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9575
9576         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9577
9578 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9579
9580         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9581
9582         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9583
9584         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9585
9586         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9587
9588         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9589
9590         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9591
9592         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9593
9594 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9595
9596         * 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.
9597
9598         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9599
9600         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9601
9602 2001-10-07    <johan AT FRIJA>
9603
9604         * device/lib/gets.c (gets): fixed the return value.
9605
9606 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9607         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9608
9609         * 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.
9610
9611         * 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.
9612
9613         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9614
9615         * src/pic/gen.c: Removed Safe_strdup.
9616
9617         * configure.in: Added option to enable libgc support.
9618
9619         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9620         (bitVectUnion): Optimised.
9621         (bitVectIntersect): Optimised.
9622         (bitVectBitsInCommon): Optimised.
9623         (bitVectCplAnd): Optimised.
9624
9625         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9626
9627 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9628
9629         * src/SDCCmain.c: distinguish between assembler debug and plain options
9630
9631         * src/avr/main.c:   remove standard assembler options
9632
9633         * src/ds390/main.c: remove standard assembler options
9634
9635         * src/mcs51/main.c: remove standard assembler options
9636
9637         * src/port.h: removed "PENDING" comment
9638
9639 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9640
9641         * src/device/lib/_mulint.c  : new, with assember functions
9642
9643         * src/device/lib/_mullong.c : new, with assember functions
9644
9645         * src/device/lib/_divuint.c : with assember functions
9646
9647         * src/device/lib/_divsint.c : with assember functions
9648
9649         * src/device/lib/_divulong.c: with assember functions
9650
9651         * src/device/lib/_divslong.c: with assember functions
9652
9653         * src/device/lib/_moduint.c : with assember functions
9654
9655         * src/device/lib/_modsint.c : with assember functions
9656
9657         * src/device/lib/_modulong.c: with assember functions
9658
9659         * src/device/lib/_modslong.c: with assember functions
9660
9661         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9662
9663         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9664
9665         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9666                                       replaced _mululong.c and _mulslong.c by _mullong.c
9667
9668 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9669
9670         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9671
9672 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9673
9674         * src/SDCCglue.c: test, if win32api is available for MINGW
9675
9676 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9677
9678         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9679         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9680         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9681         * support/regression/ports/host/spec.mk: removed GENERIC
9682         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9683         * support/regression/ports/z80/spec.mk: removed GENERIC
9684
9685 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9686
9687         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9688
9689         * support/regression/tests/bug-467035.c: Created.
9690
9691 2001-10-01    <johan AT FRIJA>
9692
9693         * src/SDCC.y: fixed bug #466586 part 1
9694
9695 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9696
9697         * SDCCicode.c: z80 has no generic pointers
9698         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9699
9700 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9701
9702         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9703
9704 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9705
9706         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9707
9708         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9709
9710 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9711
9712         * configure.in: Fixed up so that ucsim is only configured once.
9713
9714         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9715
9716         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9717         (getPathDifference): As above.
9718
9719         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9720
9721         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9722
9723 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9724         * .version: Updated to 2.3.1
9725
9726         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9727         Added copyright header.
9728
9729         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9730         (assemble): Added support for macro based assembler commands.
9731         (linkEdit): Added support for macro based linker commands.
9732         (preProcess): Changed the pre-processor to use macros.
9733         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9734         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9735
9736         * device/lib/z80/crt0.s: Added module name for debugging.
9737
9738 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9739
9740         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9741
9742         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9743
9744         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9745
9746         * src/Makefile.in: Added SDCCmacro and SDCCutil
9747
9748 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9749
9750         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9751
9752 2001-09-16    <johan AT FRIJA>
9753
9754         * 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.
9755
9756 2001-09-15    <johan AT FRIJA>
9757
9758         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9759         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9760
9761 2001-09-11    <johan AT FRIJA>
9762
9763         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9764
9765 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9766
9767         * support/regression/tests/bug-460444.c: Added test case.
9768
9769         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9770         (genCast): Added justification for all of the asserts.
9771
9772 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9773
9774         * support/regression/support.c: _xdata replaced by xdata
9775
9776         * support/regression/spec.mk: removed _generic
9777
9778 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9779
9780         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9781
9782         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9783         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9784
9785         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9786
9787         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9788
9789         * support/regression/tests/bug-460010.c: Added test case.
9790
9791         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9792
9793 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9794
9795         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9796
9797         * support/regression/testfwk.c: removed workaround for bug #436344
9798
9799         * support/regression/tests/bp.c: use less memory with mcs51
9800
9801         * support/regression/tests/bug-441448.c: use less memory
9802
9803         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9804
9805         * support/regression/collate-results.py: typo
9806
9807 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9808
9809         * support/regression/tests/fetchoverlap.c: Added new test case.
9810
9811         * support/regression/tests/bp.c: Added new test case.
9812
9813         * support/regression/tests/bug-448984.c: Added new test case.
9814
9815         * support/regression/tests/pow2shifts.c: Added new test case.
9816
9817         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9818         (genlshTwo): Fixed right shift for count > 8.
9819
9820         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9821
9822 2001-09-08    <johan AT FRIJA>
9823
9824         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9825
9826 2001-09-07    <johan AT FRIJA>
9827
9828         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9829
9830         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9831
9832 2001-09-06    <johan AT FRIJA>
9833
9834         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9835         * bernhard noted me at this: "() equals to (void)" (1.38)
9836
9837 2001-09-05    <johan AT FRIJA>
9838
9839         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9840
9841 2001-09-04    <johan AT FRIJA>
9842
9843         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9844
9845
9846 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9847
9848         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9849
9850 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9851
9852         * link/z80/aslink.h: Fixed path for PATH_MAX
9853
9854 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9855
9856         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9857
9858         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9859
9860         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9861
9862         * 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.
9863
9864 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9865
9866         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9867         (genCmp): Fixed up genCmp for the GB with longs.
9868
9869         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9870
9871         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9872
9873         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9874
9875         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9876
9877 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9878
9879         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9880
9881 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9882
9883         * 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.
9884
9885         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9886
9887 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9888
9889         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9890
9891         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9892
9893 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9894
9895   * sim/ucsim/configure:    little improvement of Cygwin-detection
9896   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9897   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9898   * support/regression/tests/bug-221100.c: small changes for mcs51
9899   * support/regression/tests/bug-221168.c: small changes for mcs51
9900   * support/regression/tests/bug-227710.c: small changes for mcs51
9901   * support/regression/tests/staticinit.c: small changes for mcs51
9902   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9903   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9904   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9905
9906 $Revision$