* doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
[fw/sdcc] / ChangeLog
1 2005-10-27 Raphael Neider <rneider AT web.de>
2
3         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
4
5 2005-10-27 Raphael Neider <rneider AT web.de>
6
7         * .version: changed version to 2.5.4
8         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
9         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
10           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
11             arithmetics support routines
12         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
13         * device/lib/Makefile.in: also create installdir for pic
14         
15         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
16           pic14 port as well
17         * src/pic/device.c (dump_sfr): rewritten to delegate register
18           placement to the linker (use `extern sym' rather than sym EQU addr),
19           (validAddress): fixed to check last specified address
20         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
21           (popGetLit): truncate literal value to 8 bit,
22           (popGet): moved assert to more appropriate place
23           (popGetExternal): create pCode operand from and mark the according
24             symbol as being `extern'
25           (popGetAddr): added sanity check on immediate's offset, provide
26             GPOINTER tag on demand
27           (aopPut): fixed for immediates,
28           (mov2w_op): move operand's address or contents to WREG (depending on
29             operand type), safer variant of mov2w,
30           (movwf,call_libraryfunc): NEW, handy abbreviations,
31           (get_argument_pcop,get_return_val_pcop,pass_argument,
32           get_returnvalue): interface for accessing function parameters and
33             return values,
34           (assignResultValuei,genRet): use new parameter/return value interface
35           (pic14_getDataSize): back to old version handling generic pointers,
36           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
37             provided implementation and/or fixed old one,
38           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
39             calls, removed legacy 8051 reference code
40           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
41           (loadSignToC): NEW, move the operands sign bit to CARRY,
42           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
43             genRightShiftSigned, accepts negative shift counts,
44           (setup_fsr): load FSR and adjust IRP (indirect memory access),
45           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
46             generic pointers, __data pointers and __code pointers,
47           (genUnpackBits,genPackBits): rewritten to work with generic pointers
48             and signed bitfields, limit bitfields to 8 bit,
49           (genDataPointerGet): fixed number of bytes read,
50           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
51           (genPointerGet,genPointerSet): fixed handling of __code pointers,
52             pointers to constant data are no longer assumed to point to __code
53             space, removed invalid pointer types,
54           (bitpatternFromVal): retrieve the PICs representation of an integer
55             or float literal,
56           (genDataPointerSet): fixed assigning to po_immediate operands,
57           (genGenPointerSet): implemented as library call,
58           (genIfx): fixed incorrect condition,
59           (genAddrOf): limit generic pointers' addresses to 2 bytes,
60             provide GPOINTER tag according to destination's storage class,
61           (genCast): added code to handle casting to generic pointers, added
62             sign-/zero extension of the result
63           (aop_isLitLike,op_isLitLike): fixed handling of immediates
64         * src/pic/gen.h: added macros to access IRP bit in STATUS register
65         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
66           extend the result
67         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
68           address/register resides in the shared banks
69           (emitSymbolToFile): improved to handle global and `pinned' symbols,
70             put all variables into separate sections (have the linker arrange
71             them)
72           (picglue): put init code and interrupt handlers in separate sections
73         * src/pic/main.c: added port specific options table, modified to PORT
74           structure to make GPOINTERs 3 byte, added pic14_options
75           (_pic14_do_link): private linking routine (update paths to libraries,
76             add libsdcc.lib by default)
77         * src/pic/main.h: declare pic14_options
78         * src/pic/pcode.c: fixed instructions i/o relations,
79           (RegCond): reverted to correct version,
80           (newpCodeOpLit): truncate literals to 8 bit,
81           (genericPrint): added debug output,
82           (getRegFromInstruction): fixed for various operand types, simplified
83           (BuildFlow): fixed broken handling of isntructions with labels
84           (LinkFlow): start at last instruction in flow (skip trailing comments),
85             pass the flow on to the next instruction after CALL
86           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
87           (insertPCodeInstruction): fixed inserting after a skip instruction,
88           (DoBankSelect): fixed for labeled instructions
89           (OptimizepBlock): honor --nopeep switch
90           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
91         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
92         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
93           (pCodeOptime2pCodes): allow disabling this optimization via
94             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
95             but is still buggy), started implementation of a dataflow based
96             pCode optimization (CSE + dead code elimination)
97           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
98         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
99           names are independant of the stack location and therefore portable across
100           devices
101
102 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
103
104         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
105           (selectSpil): fixed bug 1337835 by not spilling bit variables
106         * support/regression/tests/bug1337835.c: added test for this bug
107         * src/mcs51/peeph.def: restart after rule 3.c,
108           addded rules 263.x to optimize loading constants
109
110 2005-10-26 Raphael Neider <rneider AT web.de>
111
112         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
113         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
114           (genAssign): emit warning when casting literals to generic pointer
115             type, also applies when taking the address of a fixed variable,
116           (genCast): improved casting to generic pointers
117         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
118           extern variables, added verbose error message
119         * device/include/pic16/{string.h,errno.h}: added #pragma library c
120
121 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
122
123         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
124         carry must be complemented too
125         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
126         could be emitted by genMinus
127         * src/SDCCval.c (constVal): fixed bug 1305065
128
129 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
130
131         * src/SDCCast.c (addCast): added promotion for bit variables
132         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
133         promotion casts + optimisation
134         (optimizeGetWord): fix warning 'i' might be used uninitialized
135         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
136         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
137
138 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
139
140         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
141         all chars are promoted to int; promotion should be handled in SDCCast.c
142
143 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
144
145         * device/lib/_strcmp.c: Fixed bug 1326457
146
147 2005-10-11 Raphael Neider <rneider AT web.de>
148
149         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
150         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
151
152 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
153
154         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
155         * support/regression/tests/sfr16.c: added test for the sfr32 bug
156
157 2005-10-04 Raphael Neider <rneider AT web.de>
158
159         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
160           device/lib/pic16/pics.all: added pic18f1320
161         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
162
163 2005-09-30 Raphael Neider <rneider AT web.de>
164
165         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
166         * src/pic16/devices.inc: NEW, provides device descriptions
167         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
168
169 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
170
171         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
172           GETHBIT
173
174 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
175
176         * doc/sdccman.lyx: updated Highest Order Bit documentation,
177           documented Any Order Bit, Higher Order Byte and Higher Order Word
178         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
179         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
180           (optimizeGetAbit): new, to get any bit, not only the high bit,
181           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
182           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
183           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
184           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
185             RIGHT_OP: also try GETBYTE, GETWORD optimization,
186             GETABIT, GETBYTE, GETWORD: decorate them,
187           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
188           (ast_print): added GETABIT, GETBYTE, GETWORD
189         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
190         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
191           (geniCodeBinary): new generic binary icode,
192           (ast2iCode): added GETABIT, GETBYTE, GETWORD
193         * src/port.h: updated comment for PORT.hasExtBitOp
194         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
195           (genGetByte): new, to get a single byte,
196           (genGetWord): new, to get a word from a long,
197           (gen51Code): added GETABIT, GETBYTE, GETWORD
198         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
199
200 2005-09-23 Raphael Neider <rneider AT web.de>
201
202         * configure.in, configure: have device/lib/pic configured
203         * device/lib/Makefile.in: added model-pic14
204         * device/lib/clean.mk: added pic/ to clean rule
205         * device/lib/pic: added rudimentary pic14 library providing support
206           functions for multiplication/division/generic pointer access
207         * src/SDCCopt.c (convilong): mark support functions as extern
208           for pic14 port as well
209         * src/pic/gen.c (genMult): added assertions,
210           (genpic14Code): emit warning on unhandled iCodes
211         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
212         * src/pic/pcode.c (pCodeOpCopy),
213         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
214           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
215           SFR_REGISTER}), made safe for future extensions
216         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
217           instructions even if preceeded by SKIP instructions (also remove
218           them); removed unused code
219         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
220           prevents leaving parts of the structure uninitialized after copying
221
222 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
223
224         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
225           ago by me
226         * support/regression/tests/addsub.c: added test for the bug
227
228 2005-09-21 Raphael Neider <rneider AT web.de>
229
230         * device/include/pic16/pic18f1220.h,
231           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
232         * device/lib/pic16/Makefile.rules: added missing opening paren
233         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
234           are provided in genutils.c,
235           (genUminusFloat,genUminus,genCmpEq): added asserts on different
236           operand/result sizes,
237           (genCmp): assert on NULL pointers first, then check deref'ed values
238         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
239           result size
240
241 2005-09-18 Raphael Neider <rneider AT web.de>
242
243         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
244           as these are now unused,
245           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
246         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
247           local, avoids uninitialized pointer dereference on r->name
248         * src/pic16/ralloc.c (newReg): fixed indentation
249
250 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
251
252         * src/SDCCval.c (constVal): fixed bug 730366
253         * support/Util/SDCCerr.c,
254         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
255
256 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
257
258         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
259
260 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
261
262         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
263
264 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
265
266         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
267           (hex2dec): made hex_digit unsigned char, removed ascii dependance
268         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
269           (hex2dec): made hex_digit unsigned char, removed ascii dependance
270         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
271         * packihx/packihx.c (hexDigit): made c unsigned char
272         * as/mcs51/lklibr.c (fndsym),
273         * link/z80/lkgb.c (gb),
274         * link/z80/lklibr.c (fndsym),
275         * link/z80/lkrloc.c (relr),
276         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
277         * src/SDCC.lex (checkCurrFile, process_pragma),
278         * src/SDCCglue.c (spacesToUnderscores),
279         * src/SDCCmain.c (setParseWithComma, processFile),
280         * src/asm.c (tvsprintf, printCLine),
281         * src/avr/gen.c (emitcode, aopPut),
282         * src/ds390/gen.c (emitcode),
283         * src/hc08/gen.c (emitcode, emitinline),
284         * src/mcs51/gen.c (emitcode, genInline),
285         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
286           tokenizeLineNode),
287         * src/pic/ralloc.c (debugLog),
288         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
289           tokenizeLineNode),
290         * src/pic16/ralloc.c (debugLog),
291         * src/z80/main.c (_process_pragma):
292            made all ctype.h function calls safe
293         * src/SDCCopt.c: include math.h for fabs
294         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
295           and used them throughout the code to make ctype.h function calls safe
296         * src/ds390/main.c (asmLineNodeFromLineNode),
297         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
298         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
299            unsigned char*
300         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
301           (newpCodeAsmDir): made ctype.h function calls safe
302         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
303           pic16_emitcode):  made lbp unsigned char*
304         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
305           (pic16_newpCodeAsmDir): made ctype.h function calls safe
306         * src/xa51/gen.c (emitcode),
307         * src/z80/gen.c (_emit2): made lbp unsigned char*
308         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
309            char*
310
311 2005-09-05 Raphael Neider <rneider AT web.de>
312
313         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
314           access bank splitpoint
315
316 2005-09-05 Raphael Neider <rneider AT web.de>
317
318         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
319
320 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
321
322         * .version: changed to version 2.5.3
323         * doc/sdccman.lyx: changed version to 2.5.3,
324           documented --codeseg and --constseg and pragma codeseg and constseg,
325           documented bit parameters (reentrant) and bit returning
326         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
327            currFunc->recvSize, but is this ok for all ports?
328           (ast2iCode): result of ~ on unsigned char must be cast to int for
329            bool to work
330         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
331           function pointers in bit space
332         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
333           (processFuncArgs): call port.reg_parm() with reentrancy info
334         * src/port.h,
335         * src/avr/main.c,
336         * src/ds390/main.c,
337         * src/hc08/main.c,
338         * src/pic/main.c,
339         * src/pic16/main.c,
340         * src/xa51/main.c,
341         * src/z80/main.c: port.reg_parm prototype extended with
342           "bool reentrant" parameter
343         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
344           options.stackAuto for allocating bit register parameters
345         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
346           (genSend): set BitBankUsed if it is,
347           (selectRegBank): factored out of genCall for use in genPcall,
348           (genCall): removed redundant dtype assignmen, use selectRegBank,
349           (genPcall): handle returning in Carry properly, save in F0 if needed,
350           (genReceive): handle bit register parameters
351         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
352           (mcs51_assignRegisters): enable bit registers for all reentrant
353            functions and don't set BitBankUsed unconditionally
354         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
355         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
356         * support/regression/tests/funptrs.c: added tests for BOOL and for return
357
358 2005-08-27 Borut Razem <borut.razem AT siol.net>
359
360         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
361         ppc-osx (Darwin) does not support -u option. It seems that it is
362         supported only on Linux - GNU cp
363
364 2005-08-25 Borut Razem <borut.razem AT siol.net>
365
366         * sim/ucsim/gui.src/serio.src/Makefile.in,
367           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
368           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
369           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
370           install and strip, since the strip at /usr/ccs/bin should be used
371           on solaris
372
373 2005-08-24 Borut Razem <borut.razem AT siol.net>
374
375         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
376
377 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
378
379         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
380         ffffffffu
381
382 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
383
384         * as/mcs51/aslink.h: completed lkrloc.c prototypes
385         * as/mcs51/lkmain.c (link_main): fixed warning
386         * device/include/stdbool.h: ds390 has no advanced bit support yet
387         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
388         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
389         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
390           and updated their macros
391         * src/SDCCval.c (constVal): updated comment for renamed b_long
392
393 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
394
395         * as/mcs51/asdata.c: changed ctype['['] to BINOP
396         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
397           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
398           (oprio): set priority for '['
399         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
400            and adb_24_bit
401         * as/mcs51/asm.h: added defines R_BIT and S_BIT
402         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
403         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
404         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
405           added overlayable BIT_BANK area
406         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
407           (summary2): explain 'T' in legenda
408         * as/mcs51/lkrloc.c: replaced old K&R style,
409           (relr): added R_BIT processing,
410           (errmsg): added "Bit-addressable relocation error",
411           (adb_bit): added for converting from byte- to bit-addressable space,
412           (adb_24_bit): added for converting from byte- to bit-addressable space
413         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
414            used in reentrant functions now even as return value
415         * device/lib/_gptrput.c (_gptrput): removed obsolete code
416         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
417           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
418         * src/SDCCglobl.h: added indicator BitBankUsed
419         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
420            the bit registers b0-b7
421         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
422           (geniCodeCast): fixed bug 1263853,
423           (geniCodeLogicAndOr): put result in bool or char,
424           (geniCodeReceive): added parameter func for accessing the return type,
425           (geniCodeFunctionBody): pass func to geniCodeReceive
426         * src/SDCCmain.c: added indicator BitBankUsed
427         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
428         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
429           (checkSClass): don't put automatic bool/bit on stack,
430           (checkFunction): removed check on function cannot return bit
431         * src/SDCCsymt.h: added newBoolLink prototype
432         * src/mcs51/gen.c (rb1regs): added bit registers,
433           (movc): created for assigning to carry,
434           (pushReg, popReg): created for pushing registers,
435           (sameRegs): check both AOP_REG and AOP_CRY types,
436           (aopOp): handle bit registers,
437           (aopPut): optimization no self-assign,
438           (saveRegisters): push reg->base (bits) only once for bit registers,
439            and use pushReg,
440           (unsaveRegisters): pop reg->base only once and use popReg,
441           (assignResultValue): added parameter func and return in carry for bits,
442           (genIpush): optimization no reload in A if not changed,
443           (genSend): bit parameters in reentrant functions are passed in bit
444            registers by first assigning to bits in B, then save registers and
445            copy B to bits,
446           (genCall): handle returning in Carry properly, save it in F0 if needed,
447           (genPcall): updated assignResultValue call, this is not safe yet for bit
448            returning function !!!
449           (genFunction): don't generate equ's for bit registers and use pushReg,
450           (genEndFunction): take care of bit returning functions and use popReg,
451           (genRet): return bit in Carry,
452           (genIfx): optimize bit registers and other directly addressable bits,
453           (genReceive): updated assignResultValue call
454         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
455           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
456            registers when using stack-auto
457         * src/mcs51/ralloc.c (_G): added allBitregs,
458           (regs8051): added the bit registers,
459           (createStackSpil): use macro IS_BIT,
460           (getRegBit): added to allocate a bit register, else spill,
461           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
462           (updateRegUsage): factored out to ease stepping while debugging,
463           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
464            also allocate bit registers,
465           (fillGaps): handle bit registers,
466           (findAllBitregs): added to create bit vector with all bit registers,
467           (mcs51_allBitregs): returns this bit vector,
468           (mcs51_assignRegisters): when using stack-auto use bit registers for
469            passing parameters and creating local variables
470         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
471
472 2005-08-22 Borut Razem <borut.razem AT siol.net>
473
474         * device/lib/Makefile.in: replaced find option -or with -o
475           to make it run on solaris
476
477 2005-08-22 Raphael Neider <rneider AT web.de>
478
479         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
480           fixes #1265442 (crash on Solaris)
481
482 2005-08-20 Borut Razem <borut.razem AT siol.net>
483
484         * configure, configure.in: added tests for libsocket and libnsl libraries,
485           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
486           from support/regression/Makefile.in
487         * support/regression/Makefile.in: added
488         * device/lib/pic16/Makefile.common.in: force make to use bash shell
489         * sim/ucsim/libtool: regenerated on sparc-solaris
490         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
491           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
492           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
493           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
494           sparc-solaris, which doesn't use GNU ld linker
495         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
496         * as/Makefile: find on sparc-solaris does not support -maxdepth option
497
498 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
499
500         * src/mcs51/peeph.def: updated comments
501
502 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
503
504         * device/lib/_gptrget.c,
505         * device/lib/_gptrput.c: slightly shorter
506         * doc/sdccman.lyx: incremented version
507         * src/mcs51/peeph.def: moved peephole comments to the line of first
508           change to better keep line correlation, reanimated 186.e
509         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
510
511 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
512
513         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
514           David Saxton with quotes around file name.
515
516 2005-08-15 Borut Razem <borut.razem AT siol.net>
517
518         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
519           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
520           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
521           make tests run on x86_64 platform
522
523 2005-08-13 Raphael Neider <rneider AT web.de>
524
525         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
526           as it might be executed DURING a build (parallel make is wonderful)
527
528 2005-08-13 Raphael Neider <rneider AT web.de>
529
530         * device/lib/Makefile.in (port-specific-objects-pic16):
531           revert to cp $(PORT)/bin/*.* $(PORTDIR)
532         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
533           dependency
534         * device/lib/pic16/Makefile.rules: build subdirs before creating
535           the library, removed builddir rule, create $(builddir) early in
536           recurse rule, use empty recurse rule for leaf directories
537         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
538           mkdir errors (race condition), removed duplicate suffix "hex"
539           from clean rules
540         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
541         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
542           prevents mkdir -p from aborting on Alpha
543
544 2005-08-12 Raphael Neider <rneider AT web.de>
545
546         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
547           db-statements in order to allow for arrays of pointers in code
548           sections to be placed without interspersed 0-padding, fixes
549           bug #1256215
550         * (emitStatistics): fixed division by zero for pic18f1220
551         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
552           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
553         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
554         * (pic16_pCodeConstString): keep track of already emitted string
555           literals to prevent "duplicate definitions of symbol _str_NR"
556         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
557           debug message
558         * device/lib/Makefile.in: ignore failing PIC16 library builds
559         * device/lib/pic16/Makefile: do not build if gputils are missing
560         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
561
562 2005-08-10 Raphael Neider <rneider AT web.de>
563
564         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
565           my last commit)
566
567 2005-08-10 Raphael Neider <rneider AT web.de>
568
569         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
570           Rokas' patch to add the new fixed point type "__fixed16x16"
571         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
572           functions for __fixed16x16 arithmetics
573         * device/lib/pic16: reimplemented the build system to support
574           a separate build directory, better handling of libio (create
575           the library in a separate subdir for each architecture) and
576           easier configuration (centralized in Makefile.common)
577
578 2005-08-07 Raphael Neider <rneider AT web.de>
579
580         * src/pic16/gen.c (genrshTwo): fixed sign extension
581         * src/pic16/device.c: added pic18f2320, 4220 and 4320
582         * device/include/pic16/pic18f2220.h: changed some bit definitions,
583           added T0CONbits
584         * device/include/pic16/pic18f4220.h: NEW, header for
585           pic18f4220 and pic18f4320
586         * device/include/pic16/pic18fregs.h: added new devices,
587           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
588         * device/include/pic16/signal.h: resolved name clashes
589           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
590           to also allow testing for interrupt enable bits, added
591           comments on how to use the macros
592         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
593         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
594           register definitions for the devices
595         * device/lib/pic16/pics.all: added new devices
596         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
597           allocated memory
598         * device/lib/pic16/libc/stdlib/memfree: do not count
599           the block header as free memory
600         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
601           simplified and added missing end-of-blocklist-marker
602           (reported by Peter Onion, fixes #1252814)
603         * (_mergeHeapBlock): fixed loop condition
604         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
605           len==0, restructured code
606         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
607           up a bit, reduced bitfield accesses, prevent endless loops
608           in case of heap corruption
609         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
610           "unreferenced arguments/must return a value" warnings
611         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
612           replaced BAUDREG with SPBRG
613         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
614           device/lib/pic16/debug/gstack/gstack.c: replaced
615           _naked, _asm, _endasm with __naked, __asm, __endasm
616
617 2005-08-05 Raphael Neider <rneider AT web.de>
618
619         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
620           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
621
622 2005-08-05 Borut Razem <borut.razem AT siol.net>
623
624         * device/lib/Makefile.in: added missing ';'
625         * configure: removed ^M characters
626
627 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
628
629         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
630           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
631           License
632
633 2005-08-04 Borut Razem <borut.razem AT siol.net>
634
635         * configure.in: pic16 libraries build 2nd try - enable running
636           configure in device/lib/pic16
637         * configure: regenerated from configure.in
638         * device/lib/Makefile.in: create $(PORT)/bin directory
639
640 2005-08-03 Raphael Neider <rneider AT web.de>
641
642         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
643           to get/set values via pointers
644         * (genUnpackBits,genPackBits): changed detection of
645           ptr->bitfield vs. sym.bitfield, fixed access via generic
646           pointers, removed dead (wrong) code for multibyte bitfields
647         * (genNearPointerGet, genGenPointerGet): removed useless code,
648           fixed bitfield detection, fixes #1250594
649         * (genNearPointerSet): removed useless code
650         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
651           and introduced macro pic16_emitpcode that conditionally emits
652           the origin of the following pCode (useful for debugging SDCC)
653         * src/pic16/pcode.c: changed (and disabled) some debug outputs
654         * (createDefmap): fixed handling of LFSR for --optimize-df
655
656 2005-08-02 Borut Razem <borut.razem AT siol.net>
657
658         * device/lib/Makefile.in: pic16 libraries build enabled since
659           gputils-0.13.2 are now localy installed at sourceforge's compile farm
660
661 2005-08-02 Raphael Neider <rneider AT web.de>
662
663         * src/pic16/gen.c (genPackBits): removed deprecated warning
664         * (genGenPointerSet): fixed bitfield detection
665
666 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
667
668         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
669
670 2005-07-31 Raphael Neider <rneider AT web.de>
671
672         * device/lib/pic16/libdev/pic18f458.c,
673           device/include/pic16/pic18f458.h: added missing T0CONbits
674
675 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
678
679 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
680
681         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
682
683 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
684
685         * device/include/mcs51/at89c51ed2.h: added.
686
687 2005-07-23 Raphael Neider <rneider AT web.de>
688
689         * src/pic/gen.h: added emitpcode macro for debugging
690         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
691           and replace by macro adding debug information on demand
692         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
693         * (gencjne): tried to fix; replaced with correct (slower) code
694         * (gen{Unp,P}ackBits): fixed single bit access
695         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
696         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
697           previous instruction
698         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
699           register has to be handled with care (forbidding movement
700           of assignments/uses, removing assignments completely, ...)
701         * (pCodeOptime2pCodes): make use of regIsSpecial
702         * added lots of debugging output (commented out)
703         * src/pic/rallloc.c (deassignLRs): prevent operand registers
704           from being reused as result UNLESS it is known to work
705
706 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
707
708         * support/Util/dbuf.h: include <stddef.h> for size_t
709         * .version: changed to version 2.5.2
710
711 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
712
713         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
714
715 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
716
717         * src/hc08/gen.c (genMinus): fixed bug #1241835,
718           (genModOneByte): removed needless psha/pula
719
720 2005-07-22 Raphael Neider <rneider AT web.de>
721
722         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
723           have PIC14 handled like PIC16, fixes broken pic14 linker calls
724         * src/pic/gen.c (resolveIfx): do not "invent" labels
725         * (genSkipc): changed to positive logic
726         * (genSkipCond): removed as no longer needed
727         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
728           backport from PIC16
729         * (genLeftShift): check operands are in different registers
730         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
731           INCF does not update CARRY...
732         * src/pic/main.c: fixed _linkCmd
733         * src/pic/pcode.c (unlinkpCode): added inactive code
734         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
735           alive (do not assign result and operand overlapping registers)
736
737 2005-07-22 Raphael Neider <rneider AT web.de>
738
739         * src/pic/device.c (dump_sfr): replaced register declaration with
740           call to emitSymbolToFile() to avoid duplicate symbols
741         * (assignRelocatableRegisters): do not declare external symbols
742         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
743           right (take size of type, not etype)
744         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
745         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
746         * (packRegsForAccUse): disabled assignment of WREG as
747           the result reg to prevent occurence of just fixed #1235003,
748           fixes #1242954
749         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
750           symbols (avoids duplicate symbols in .asm file)
751         * (pic14emitRegularMap): use emitSymbolToFile()
752         * src/pic/gen.c (aopOp): fixed spillLocation handling
753         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
754         * (genDataPointerSet): removed unneccessary variables/output
755
756 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
757
758         * as/mcs51/lkarea.c: enlarged codemap for banked memory
759         * device/lib/mcs51/crtbank.asm: added # to 0x0F
760
761 2005-07-21 Raphael Neider <rneider AT web.de>
762
763         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
764           architecture cannot handle them efficiently, fixes bug #1235003
765         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
766           check for empty sets before using them (fixes bug #1232190)
767
768 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
769
770         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
771           (lnksect2): generate warnings for memory overlap
772         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
773           constseg to set the name of these segments so you can instruct the linker
774           to place them in banks
775         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
776         * src/SDCCglobl.h: added MODEL_HUGE to enum,
777           added code_seg and const_seg to options
778         * src/SDCCglue.c (emitMaps): use options.const_seg,
779           (createInterruptVect): put interrupt vectors in segment HOME,
780           (glue): put HOME before static segment and put the main glue in HOME,
781           (glue): use options.code_seg
782         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
783         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
784           these segments so you can instruct the linker to place them in banks
785           (linkEdit): use code_loc for HOME segment which should be the first
786           segment in code memory now
787         * src/SDCCmem.c: fixed more stuff like bug 1238386
788         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
789           (changePointer): don't change function pointers to code pointers for
790           banked functions,
791           (compareType): added exceptional check for banked function pointers
792         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
793         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
794           after static in code memory
795         * src/mcs51/gen.c: added aopLiteralLong prototype,
796           (aopForSym): use getSize for functions,
797           (genCall): generate banked calls over one trampoline __sdcc_banked_call
798           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
799           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
800           the segment,
801           (genPcall): use call for literal function pointers and generate banked
802           calls over the one trampoline so there's only one place for the user to
803           modify according to his/hers hardware,
804           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
805           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
806         * src/mcs51/main.c: added keyword banked,
807           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
808         * support/Util/SDCCerr.c,
809         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
810           needed for passing the bank and address to the trampoline
811         * device/lib/mcs51/crtbank.asm: added for bankswitching
812         * device/lib/mcs51/Makefile: added crtbank
813
814 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
815
816         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
817           for fields at offset 0 of a struct or union as reported
818           on 2005-07-07 in the developer mailing list.
819
820 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
821
822         * src/SDCCmem.c: fixed bug 1238386
823
824 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
825
826         * src/mcs51/peeph.def: added labelrefcounting for peepholes
827           (patch #1144962), added peephole 300, enabled 259.x
828         * doc/sdccman.lyx: removed screenshot and provided link instead
829
830 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
831
832         * doc/sdccman.lyx: added section about debugging with ddd
833         * doc/figures/ddd_example.eps: screenshot of debugging session
834
835 2005-07-04 Raphael Neider <rneider AT web.de>
836
837         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
838           like CODE pointers, fixes #1115683
839         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
840           call, fixes bugs #1232211, #1228110,
841           fixed wrong casts to pCodeFlow from pCodeInstructions
842
843 2005-07-04 Raphael Neider <rneider AT web.de>
844
845         * src/pic/gen.c (popGet): changed assert to allow for
846           bit operands
847         * (popGetAddr): changed signature to provide
848           an additional index, patched all call sites
849         * (genCmpEq): handle literal-like operands correctly
850         * (genAddrOf): added sanity checks on __code/__data pointers
851         * (genAssign): added handling of symbols from __code section
852         * (gencjne): do not generate code for comparisons whose result
853           is neither stored nor used, fixes bug #1171114
854         * (AccLsh, AccRsh): operate on operand instead of WREG
855         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
856           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
857           by known count
858         * rewrote complete shift-by-literal logic, commented unused
859           functions out
860         * (genConstPointerGet): get multiple bytes (if result size > 1),
861           fixed handling of non-immediate addresses
862         * (genPointerGet): handle CODE pointers like CONST pointers
863         * (genpic14Code): insert C-SRC lines as Cource-pCodes
864         * ({aop,op}_isLitLike): NEW, single place to decide whether an
865           operand is to be treated as a literal or not
866         * (mov2w,genPcall,genCmpEq),
867           src/pic/genarith.c: use aop_isLitLike() to decide between
868           literal/register contents
869         * (addSign): added missing offset
870         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
871           only emit comment in debug-mode,
872           use {aop,op}_isLitLike throughout the file
873         * src/pic/glue.c: fix initializers for pointers (work in progress)
874         * src/pic/pcode.c (get_op): honor index on _const symbols
875         * ({reset,dump}pCodeStatistics): NEW, estimate code size
876         * (dumppBlock): added pCode size estimation
877         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
878           check for IS_SYMOP before OP_SYMBOL'ing
879         * fixed indentation, compacted switch-statements
880         * (allocReg): find free register and allocate it instead of
881           allocating new registers all the time
882         * (deassignLRs): prevent POINTER_GET's from being assigned the same
883           registers as its operands (necessary only for multibyte GETs)
884
885 2005-07-01 Raphael Neider <rneider AT web.de>
886
887         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
888           debugging .asm-output macros FENTRY + FEXIT
889         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
890           way... I wonder...
891         * (emitpComment): NEW, printf to pCode
892         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
893           offset handling
894         * (popGetAddr): NEW, variant of popGet to access an immediates
895           high(er) bytes instead of the n'th byte of memory they reference,
896           replaced popGet with popGetAddr where neccessary
897         * (genDataPointerGet): reactivated and fixed implementation
898         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
899           accesses
900         * (genDataPointerSet): fixed multibyte assignments
901         * (genpic14Code): fixed --i-code-in-asm handling
902         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
903         * (genPlus): fixed index-out-of-bounds error
904         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
905         * src/pic/ralloc.c: added debugging output macro FENTRY2
906         * (spillThis): fixed indentation, enbraced for-body for clarity
907         * (rematStr): commented out as now unused
908         * (regTypeNum): commented out special spill case (overwrites
909           arbitrary values)
910         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
911
912 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
913
914         * doc/sdccman.lyx: documented sfr16/sfr32,
915           added example for using storage class with function pointers
916         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
917
918 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
921         * device/lib/_itoa.c,
922         * device/lib/_ltoa.c: optimized codesize
923         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
924           but don't know how to suppress the double warning.
925         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
926         * support/Util/SDCCerr.c,
927         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
928
929 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
930
931         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
932           fixed old K&R prototypes
933         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
934         * device/lib/_gptrget.c,
935         * device/lib/_gptrgetc.c,
936         * device/lib/_gptrput.c: changed versions for new memory indicator values,
937           also new versions for small generic pointers and banked generic pointers
938         * src/port.h: added const_name
939         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
940         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
941         * src/SDCCcse.c (findPrevIc): check all associative operators
942         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
943         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
944         * src/SDCCmem.c: updated comments,
945           set far-space to 0 for pdata, results in optimized code
946         * src/SDCCmem.h: added macro CONST_NAME
947         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
948           moving the info into the highest bits, see also gptrget/gptrput
949         * src/src.dsp: added sdcc.ico to project files
950         * src/avr/gen.c (genCast): fixed bug 0x%d
951         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
952         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
953           relation between ptr_type and DCL_TYPE,
954           (genCast): fixed bug 0x%d
955         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
956           (CODE)" for const_name
957         * src/hc08/gen.c (genCast): fixed bug 0x%d
958         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
959           (hc08_port): added "CONST (CODE)" for const_name
960         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
961           (aopForRemat, adjustArithmeticResult): disconnected direct relation
962           between ptr_type and DCL_TYPE,
963           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
964           operand* and took AOP() inside function so sfr-ness can be checked,
965           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
966           new prototype,
967           (genFunction, genEndFunction): optimized stack setup,
968           (genMinus): optimized for literals with ending zeroes (in bytes),
969           (genCast): fixed bug 0x%d
970         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
971           (mcs51_port): added "CONST (CODE)" for const_name
972         * src/mcs51/peeph.def: made rule 226 more generic
973         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
974         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
975         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
976         * src/z80/main.c (z80_port): added NULL for const_name,
977           (gbz80_port): added NULL for const_name
978         * support/regression/tests/bug663539.c,
979         * support/regression/tests/sfr16.c: new tests
980
981 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
982
983         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
984
985 2005-06-24 Raphael Neider <rneider AT web.de>
986
987         * device/lib/pic16/libdev/pic18f[68][567]20.c:
988           corrected typos...
989         * device/include/pic16/signal.h: added USBIF
990           and SIG_USB
991
992 2005-06-24 Raphael Neider <rneider AT web.de>
993
994         * device/lib/pic16/libdev/pic18f2455.c,
995           device/include/pic16/pic18f2455.h: NEW
996         * device/include/pic16/pic18fregs.h,
997           device/lib/pic16/pics.all,
998           src/pic16/device.c: added 18f2455
999         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1000           device/include/pic16/{pic18f[68][567].h,usart.h}:
1001           replaced MULTIPLE_USARTS define with more relaible
1002           compatibility sfrs (for USART access)
1003
1004 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1005
1006         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1007           and the output asm file line is printed on two lines.
1008
1009 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1010
1011         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1012           BGT, BLE, BHI, and BLS instructions
1013         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1014           genCmpEq): removed
1015         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1016           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1017           fixes bug #1216342
1018         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1019
1020 2005-06-15 Raphael Neider <rneider AT web.de>
1021
1022         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1023         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1024         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1025           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1026           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1027
1028 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1029
1030         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1031           Marcel Telka in bug #1215704
1032
1033 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1034
1035         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1036           located in shared memory bank.
1037
1038 2005-05-31 Raphael Neider <rneider AT web.de>
1039
1040         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1041           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1042           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1043
1044 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1045
1046         * device/lib/_strncpy.c: fixed the fix
1047
1048 2005-05-26 Raphael Neider <rneider AT web.de>
1049
1050         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1051           initializers with \0, bug #1208187
1052         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1053           intializers with \0, bug #1208187
1054
1055 2005-05-26 Raphael Neider <rneider AT web.de>
1056
1057         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1058           initializers with \0, bug #1208187
1059         * src/pic16/main.c (_process_pragma): added sanity checks
1060           for stack position and size, emit warnings when appropriate
1061
1062 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1063
1064         * device/lib/_strncpy.c: fixed not filling with \0
1065
1066 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1067
1068         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1069           createFunction),
1070         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1071           compound_statement),
1072         * src/SDCCsymt.h,
1073         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1074
1075 2005-05-24 Raphael Neider <rneider AT web.de>
1076
1077         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1078
1079 2005-05-24 Raphael Neider <rneider AT web.de>
1080
1081         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1082           TRISE definitions, closes bug #1162453
1083
1084 2005-05-22 Raphael Neider <rneider AT web.de>
1085
1086         * src/pic16/main.c (_process_pragma): check for missing
1087           arguments to pragmas code and udata
1088         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1089           consistency fixes to match other headers (thanks to Jim Paris)
1090         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1091
1092 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1093
1094         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1095
1096 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1097
1098         * support/regression/tests/bug1198642.c: new test
1099         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1100         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1101         * support/scripts/resource.h,
1102         * support/scripts/resource.rc,
1103         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1104         * support/scripts/sdcc.ico: added 32x32 icon
1105
1106 2005-05-18 Raphael Neider <rneider AT web.de>
1107
1108         * device/lib/pic16/libdev/pic18f*.c,
1109         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1110           keywords to "__sfr" and "__at (X)"
1111         * device/include/pic16/pic18fregs.h: added pic18f4520
1112         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1113           #1203088 (MPLAB compatibility)
1114
1115 2005-05-17 Raphael Neider <rneider AT web.de>
1116
1117         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1118         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1119         * device/lib/pic16/pics.all: added new devices
1120         * src/pic16/device.c: added support for pic18f4520
1121
1122 2005-05-16 Raphael Neider <rneider AT web.de>
1123         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1124         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1125         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1126           convenience function for bit access
1127
1128 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1129
1130         * device/lib/printf_large.c: fixed bug 1193299
1131         * support/regression/tests/bug1057979.c: added test %3.3s
1132
1133 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1134
1135         * device/include/mcs51/8051.h,
1136         * device/include/mcs51/8052.h: made parseable with lint
1137         * device/include/mcs51/lint.h: added include file for (sp)lint
1138         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1139         * doc/cdbfileformat.lyx,
1140         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1141
1142 2005-05-14 Raphael Neider <rneider AT web.de>
1143
1144         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1145         * device/lib/pic16/libc/stdlib/itoa.c (new)
1146         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1147         * device/lib/pic16/libio/Makefile: exclude subdir according to
1148           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1149         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1150         * src/pic16/gen.c (genFunction): prevent annoying warning
1151         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1152           nameclashes on BeOS
1153         * support/cpp2/cppmain.c (cpp_output_string): new
1154         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1155           fixes bug 1116802
1156
1157 2005-05-13 Borut Razem <borut.razem AT siol.net>
1158
1159         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1160
1161 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1162
1163         * .version: changed to version 2.5.1; back to bleeding edge development
1164
1165 2005-05-11 Borut Razem <borut.razem AT siol.net>
1166
1167         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1168           generate PDF version 1.3 documents
1169
1170 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1171
1172         * .version: changed to version 2.5.0
1173
1174 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1175
1176         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1177
1178 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1179
1180         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1181         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1182         well as many smaller updates.
1183         * .version: changed to version 2.5.0-pre1
1184
1185 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1186
1187         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1188
1189 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * support/regression/tests/bug1185672.c: added
1192         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1193           bug 1185672
1194         * src/mcs51/gen.c (genCall): added comments, made it look safer
1195         * src/mcs51/gen.c (genEndFunction): simplified
1196
1197 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1198
1199         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1200
1201 2005-04-14 Borut Razem <borut.razem AT siol.net>
1202
1203         * fixed bug 1045046 - SIGSEGV with really simple code?:
1204           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1205           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1206
1207 2005-04-14 Borut Razem <borut.razem AT siol.net>
1208
1209         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1210           src/pic16/device.h: temporarily disabled experimental #inline pragma
1211           for 2.5.0 release
1212
1213 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1214
1215         * device/include/z80/stdio.h,
1216         * device/include/z80/string.h: removed these highly incomplete files so
1217           SDCC can use the default ones in device/include/
1218
1219 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1220
1221         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1222         gcc warning.
1223         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1224         fix sdcpp warnings.
1225
1226 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1227
1228         * device/include/malloc.h: removed redundant __reentrant prototypes
1229         * device/lib/_mullong.c: added working xstack variant in asm (C version
1230           doesn't pass regression tests)
1231         * device/lib/bpx.c: used __data and made bpx char for mcs51
1232         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1233           (createFunction): fixed bug with xstackPtr
1234         * src/SDCCcse.c: corrected comments
1235         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1236           (killDeadCode, eBBlockFromiCode): removed unused code
1237         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1238           corrected comments
1239         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1240           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1241           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1242           (genModOneByte): fixed warning in MSVC
1243         * src/mcs51/main.c (): added comments
1244         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1245
1246 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1247
1248         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1249
1250 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1251
1252         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1253
1254 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1255
1256         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1257         characters arrays of larger size than the declared one.
1258
1259 2005-04-10 Borut Razem <borut.razem AT siol.net>
1260
1261         * src/pic/gen.c (genInline),
1262           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1263           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1264           (findNextInstruction), (findPrevInstruction),
1265           (findInstructionUsingLabel),
1266           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1267         * src/pic/pcode.c (findLabel): added missing '\n'
1268         * src/src.dsp: added SDCCdwarf2.c to the project
1269
1270 2005-04-09 Borut Razem <borut.razem AT siol.net>
1271
1272         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1273
1274 2005-04-08 Raphael Neider <rneider AT web.de>
1275
1276         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1277           into the chain after a given one) and mergeDefmapSymbols (combine
1278           defmap entries for each symbol per pcode)
1279         * (createDefmap): have defmap entries merged in the end
1280         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1281           a symbol before replacing one access type's symbol, merge symbols in
1282           the end (replacement symbol might already have an entry)
1283         * (assignValnums): keep reference to written WREG intact
1284
1285 2005-04-08 Raphael Neider <rneider AT web.de>
1286
1287         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1288           Alpha)
1289
1290 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1291
1292         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1293         bytes
1294
1295 2005-04-07 Raphael Neider <rneider AT web.de>
1296
1297         * device/include/pic16/usart.h: added compatibility defines for
1298           devices with more than one USART
1299         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1300
1301 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1302
1303         * device/lib/Makefile.in: updated for port specific include
1304
1305 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1306
1307         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1308
1309 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1310
1311         * device/include/8051.h,
1312         * device/include/8052.h,
1313         * device/include/at89S8252.h,
1314         * device/include/at89c55.h,
1315         * device/include/at89x051.h,
1316         * device/include/at89x51.h,
1317         * device/include/at89x52.h,
1318         * device/include/mcs51reg.h,
1319         * device/include/reg51.h,
1320         * device/include/reg764.h,
1321         * device/include/regc515c.h,
1322         * device/include/sab80515.h: (re)moved these 12 files
1323         * device/include/mcs51/8051.h,
1324         * device/include/mcs51/8052.h,
1325         * device/include/mcs51/at89S8252.h,
1326         * device/include/mcs51/at89c55.h,
1327         * device/include/mcs51/at89x051.h,
1328         * device/include/mcs51/at89x51.h,
1329         * device/include/mcs51/at89x52.h,
1330         * device/include/mcs51/mcs51reg.h,
1331         * device/include/mcs51/reg51.h,
1332         * device/include/mcs51/reg764.h,
1333         * device/include/mcs51/regc515c.h,
1334         * device/include/mcs51/sab80515.h: and added them here
1335
1336 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1337
1338         * device/include/stdarg.h: changed SDCC specific keywords to double
1339           underlined form.
1340         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1341           mcs51 and ds390.
1342         * device/include/hc08/mc68hc908gp32.h,
1343         * device/include/hc08/mc68hc908jb8.h,
1344         * device/include/hc08/mc68hc908jkjl.h,
1345         * device/include/hc08/mc68hc908qy.h: fixed comments
1346         * device/include/mcs51/README: updated
1347         * device/include/mcs51/c8051f120.h: added PINRSF
1348         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1349         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1350           amidst code. Also inline is not supported.
1351
1352 2005-04-06 Raphael Neider <rneider AT web.de>
1353
1354         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1355         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1356           callers stack/frame pointers
1357
1358 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1359
1360         * device/include/pic16/usart.h: added, missing in previous commit,
1361         * device/include/pic16/adc.h: fixed typo,
1362         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1363         commit,
1364         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1365         <p18fxxx.inc>
1366         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1367         uninitialized because a bug appears with gplink
1368         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1369         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1370         complains for unrecognised option
1371
1372 2005-04-05 Raphael Neider <rneider AT web.de>
1373
1374         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1375           structs as well (using memcpy)
1376         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1377           on ISRs (GOTO has no label)
1378         * src/pic16/device.h: added OF_OPTIMIZE_DF
1379         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1380           new data flow analysis/optimization
1381         * src/pic16/pcode.c: added (prototypes for and implementation of)
1382           dataflow analysis functions, fixed pCodeInstructions' inCond and
1383           outCond values, made RCALL a branch instruction
1384         * (pic16_unlinkpCode): keep C line if possible
1385         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1386           C line moved if possible
1387         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1388         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1389           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1390         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1391           new flow)
1392         * (pic16_getJumptabpCode): NEW, needed in...
1393         * (LinkFlow): fixed handling of jumptables, calls and conditional
1394           branches
1395         * (pic16_InsertCommentAfter): NEW
1396         * (pic16_pCodeReplace): made verbose and flow preserving
1397         * (AnalyzeFlow): added call to data flow analysis
1398         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1399         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1400         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1401
1402 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1403
1404         * src/SDCCast.c (decorateType): fixed bug #1105626
1405
1406 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1407
1408         * device/include/asm/pic16/features.h,
1409         * pic18f*.h headers,
1410         * device/include/pic16/adc.h,
1411         * device/include/pic16/delay.h,
1412         * device/include/pic16/i2c.h,
1413         * device/include/pic16/malloc.h,
1414         * device/include/pic16/stdio.h,
1415         * device/include/pic16/stdlib.h,
1416         * device/include/pic16/string.h,
1417         * device/lib/pic16/libc/stdio/printf_tiny.c,
1418         * device/lib/pic16/libc/stdio/printf_small.c,
1419         * device/lib/pic16/libc/stdio/strmgpsim.c,
1420         * device/lib/pic16/libc/stdio/strmmssp.c,
1421         * device/lib/pic16/libc/stdio/strmusart.c,
1422         * device/lib/pic16/libc/stdio/vfprintf.c,
1423         * device/lib/pic16/libc/stdlib/ltoa.c,
1424         * device/lib/pic16/libc/stdlib/putchar.c,
1425         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1426         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1427         * device/lib/pic16/libc/stdlib/memchrram.c,
1428         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1429         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1430         * device/lib/pic16/libio/adc/adcbusy.c,
1431         * device/lib/pic16/libio/adc/adcread.c,
1432         * device/lib/pic16/libio/adc/adcsetch.c,
1433         * device/lib/pic16/libio/usart/ubaud.c,
1434         * device/lib/pic16/libio/usart/ubusy.c,
1435         * device/lib/pic16/libio/usart/udrdy.c,
1436         * device/lib/pic16/libio/usart/uopen.c,
1437         * device/lib/pic16/libio/usart/uputc.c,
1438         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1439         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1440         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1441         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1442         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1443         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1444         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1445         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1446         specific keywords to double underlined form,
1447         * device/lib/pic16/libc/Makefile.rules,
1448         * device/lib/pic16/libsdcc/Makefile.rules,
1449         * device/lib/pic16/libm/Makefile,
1450         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1451         to compile with C standard set in Makefile.common
1452         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1453         rand.c and crc.c in compilation process,
1454         * device/lib/pic16/libsdcc/int/divuint.c,
1455         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1456         `c' from signed to unsigned,
1457         * device/lib/pic16/startup/crt0.c,
1458         * device/lib/pic16/startup/crt0i.c,
1459         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1460         keywords to double underlined form, bug fixes in _do_cinit function
1461         which prevented the correct initialization of the .idata segment,
1462         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1463         core to enter a infinite loop
1464         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1465
1466 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1467
1468         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1469
1470 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1471
1472         * device/include/Makefile.in: add support for hc08 subdirectory
1473         * device/include/hc08/: new subdirectory
1474         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1475         Lucas Loizaga, thanks!
1476         * device/include/hc08/mc68hc908qy.h,
1477         * device/include/hc08/mc68hc908gp32.h,
1478         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1479         their own directory. Changed internal macro names to use the compiler
1480         reserved namespace. Changed SDCC specific keywords to double
1481         underlined form.
1482         * device/include/math.h,
1483         * device/include/malloc.h,
1484         * device/include/stdarg.h,
1485         * device/include/stdbool.h
1486         * device/include/string.h,
1487         * device/include/tinibios.h,
1488         * device/include/ds400rom.h,
1489         * device/include/8051.h,
1490         * device/include/8052.h,
1491         * device/include/80c51xa.h,
1492         * device/include/at89c55.h,
1493         * device/include/at89S8252.h,
1494         * device/include/at89x51.h,
1495         * device/include/at89x52.h,
1496         * device/include/ds80c390.h,
1497         * device/include/reg764.h,
1498         * device/include/regc515c.h,
1499         * device/include/sab80515.h,
1500         * device/include/mcs51/c8051f000.h,
1501         * device/include/mcs51/c8051f018.h,
1502         * device/include/mcs51/c8051f020.h,
1503         * device/include/mcs51/c8051f040.h,
1504         * device/include/mcs51/c8051f060.h,
1505         * device/include/mcs51/c8051f120.h,
1506         * device/include/mcs51/c8051f300.h,
1507         * device/include/mcs51/c8051f310.h,
1508         * device/include/mcs51/c8051f320.h,
1509         * device/include/mcs51/c8051f330.h,
1510         * device/include/mcs51/c8051f350.h,
1511         * device/include/z180.h: Changed SDCC specific keywords to double
1512         underlined form.
1513
1514 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1515
1516         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1517         18F4455,
1518         * (pic16_assignConfigWordValue): disable testing of configuration
1519         register value with config mask,
1520         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1521         function with port->fun_prefix,
1522         * (genFunction): when generating a naked interrupt function never
1523         create an absolute segment placed in interrupt vector address, place
1524         the actual interrupt function at IVA instead, when an interrupt
1525         function is generated with unspecified interrupt then do not create
1526         the absolute section,
1527         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1528         code for generating a call to generic pointer get/put function with
1529         a call to function pic16_callGenericPointer(),
1530         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1531         the call to the generic pointer get/put functions with prefixing the
1532         function name with port->fun_prefix,
1533         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1534         * src/pic16/main.c (_process_pragma): prefix function with
1535         port->fun_prefix,
1536         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1537         calling assembler, old 18Fxxxx macro is deprecated,
1538         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1539         PC_ASMDIR in while condition,
1540         * (findInstruction): add PC_ASMDIR in while condition,
1541         * (buildCallTree): prefix main with port->fun_prefix,
1542         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1543         identifier for variable with banked access in instructions BTFSS,
1544         BTFSC, BCF, BSF, BTG
1545         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1546         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1547         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1548         perform optimization when enviroment variable NO_REG_OPT is set,
1549         * (insideLRBlock): NEW, return 1 if register is inside an
1550         INF_LOCALREGS block,
1551         * (RemoveRegFromLRBlock): remove a register that is completely
1552         eliminated by register optimization, but it is still left in local
1553         register store/restore in/from stack block,
1554         * (Remove2pcodes): after removing register, check to see if it
1555         should be removed from local register store/restore in/from stack
1556         block,
1557         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1558         DUMMY_READ_VOLATILE,
1559
1560         * device/include/pic16/adc.h: minor prototype modifications and
1561         update,
1562         * device/include/pic16/malloc.h: added GPL notice various
1563         modifications,
1564         * device/include/pic16/stdint.h: NEW, standard header for ints
1565         * device/include/pic16/delay.h: NEW, header for delay functions,
1566         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1567         delay1mtcy,
1568         * device/include/pic16/signal.h: NEW, header providing helper macros
1569         for implementing signal handlers,
1570         * device/include/pic16/stdio.h: added prototypes for functions,
1571         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1572         prototypes for stdin and stdout, added macro PUTCHAR to
1573         automatically implement putchar function prototype,
1574         * device/include/pic16/usart.h: modified and updated USART library,
1575         * device/lib/pic16/libio/adc/,
1576         * device/lib/pic16/libio/i2c: some modifications to improve library
1577         performance,
1578         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1579         family of functions,
1580         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1581         family of functions and other sources,
1582         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1583         of the PIC18Fxx[28] devices,
1584         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1585         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1586         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1587         _do_cinit function, because the previous failed when local variables
1588         where not placed in the same memory bank,
1589         * device/lib/pic16/libsdcc/char/: various modifications to improve
1590         library performance,
1591         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1592         information on the new functions of the c library and more...
1593
1594 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1595
1596         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1597
1598 2005-03-26 Raphael Neider <rneider AT web.de>
1599
1600         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1601           if condition == CARRY)
1602         * (genCmp): adapted to new genSkipc semantics
1603         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1604           on rIfx (genCmp was broken)
1605
1606 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1607
1608         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1609         * src/z80/main.c (_keywords[]),
1610         * src/SDCCglobal.h (struct options),
1611         * src/SDCC.y,
1612         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1613         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1614         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1615         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1616         always available in leading double underscore form. The C99 support is
1617         mostly missing, but it's a start.
1618         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1619         reserved identifier "__data".
1620
1621 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1622
1623         * src/mcs51/peeph.def: fixed bug 1170013
1624
1625 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1626
1627         * device/include/mcs51reg.h: fixed bug 842007
1628
1629 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1630
1631         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1632         last time.
1633
1634 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1635
1636         * src/port.h (struct PORT),
1637         * src/avr/ralloc.c (avr_assignRegisters),
1638         * src/avr/main.c,
1639         * src/ds390/ralloc.c (ds390_assignRegisters),
1640         * src/ds390/main.c,
1641         * src/hc08/ralloc.c (hc08_assignRegisters),
1642         * src/hc08/main.c,
1643         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1644         * src/mcs51/main.c,
1645         * src/pic/ralloc.c (pic14_assignRegisters),
1646         * src/pic/main.c,
1647         * src/pic16/ralloc.c (pic16_assignRegisters),
1648         * src/pic16/main.c,
1649         * src/xa51/ralloc.c (xa51_assignRegisters),
1650         * src/xa51/main.c,
1651         * src/z80/ralloc.c (z80_assignRegisters),
1652         * src/z80/ralloc.h,
1653         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1654         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1655         * src/SDCCcse.h,
1656         * src/SDCCdflow.c (computeDataFlow),
1657         * src/SDCCdflow.h,
1658         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1659         * src/SDCCloop.h,
1660         * src/SDCCcflow.c (*),
1661         * src/SDCCcflow.h,
1662         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1663         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1664         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1665         immedDom() returning wrong block; probably fixes bug #1160833)
1666
1667 2005-03-20 Borut Razem <borut.razem AT siol.net>
1668
1669         * support/scripts/inc2h.pl: WIN32 port
1670
1671 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1672
1673         * device/lib/makefile.in: added abs.c and labs.c
1674
1675 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1676
1677         * device/include/stdint.h: added
1678         * device/lib/abs.c: added
1679         * device/lib/labs.c: added
1680         * device/include/stdlib.h: added abs() and labs() prototypes
1681         * device/lib/libsdcc.lib: added abs and labs
1682         * device/include/float.h,
1683         * device/lib/_fsmul.c,
1684         * device/lib/printf_fast.c,
1685         * device/lib/printf_tiny.c: updated comments
1686
1687 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1688
1689         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1690         bug #1164313
1691
1692 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1693
1694         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1695         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1696
1697 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1698
1699         * device/lib/printf_large.c: removed inline assembly for portability and
1700           readability. Use printf_fast if speed or size are more important.
1701         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1702         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1703
1704 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1705
1706         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1707         prevent compiler warning
1708
1709 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1710
1711         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1712         moved to level 0 and declared as static. Also they are explicit
1713         placed in access bank. This was necessery because some times they
1714         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1715         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1716         optimizations. Currently only compare to unsigned char is implemented,
1717         * src/pic16/gen.c: added fReturnIdx array,
1718         * (struct resolvedIfx) is moved to gen.h and made public,
1719         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1720         * (aopForSym): added an optimization to directly store in stack of
1721         the operand of a SEND iCode,
1722         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1723         but as registers instead (AOP_REG) using the fReturnIdx array,
1724         * (pic16_freeAsmop): remove the freed register from the
1725         _G.sregsAlloc field,
1726         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1727         a compare of 'WREG',
1728         * (pic16_popGetTempRegCond): changed function prototype, now
1729         function takes also a bitVector argument v which holds the current
1730         set of registers that are allocated for stack access by aopForSym,
1731         registers allocated in aopForSym for accessing stack symbols are not
1732         any more part of the functions usedRegs field,
1733         * (genCall): some times aopOp is called for a stack variable to be
1734         send, aopForSym might perform the push, if this is true make sure
1735         that genCall doesn't push the variable twice by testing _G.resDirect,
1736         * (genFunction): changed testing for unspecified interrupt number
1737         from 256 to INTNO_UNSPEC,
1738         * modified selection scheme of frame pointer generation. Previously
1739         if function did use local registers a frame pointer was generated,
1740         now a frame pointer is generated only if function has arguments
1741         (that need PLUSW2 register access), or has stack arguments, or the
1742         compiler is not instructed to omit the frame pointer,
1743         * (genEndFunction): before restoring local registers that were saved
1744         in the function preamble, also restore the registers that *might*
1745         have been allocated for stack access,
1746         * (genRet): removed some old comments,
1747         * (genCmp, the active (RN's) version): added a call to the
1748         pic16_genCmp_special function to perform the compare with a more
1749         robust and optimized way,
1750         * (genInline): a feature has been added in inline code generation,
1751         which allows a wildcard variable substitution when writing inline
1752         assembly. Code is incomplete and experimental therefore undocumented,
1753         * (genCast): changed order of aopOp for result and right to allow
1754         aopForSym to directly load the result if possible,
1755         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1756         perform an optimized compare on some selected special occasions,
1757         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1758         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1759         generate an IVT any more,
1760         * src/pic16/main.c (pic16_optionsTable): added command line option
1761         --optimize-cmp,
1762         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1763         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1764         macros,
1765         * src/pic16/NOTES: Raphael Neider added in list of active developers
1766         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1767         jumptable_end to prevent bug #,
1768         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1769         inCond and outCond fields,
1770         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1771         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1772         turn off register spilling,
1773         * (packRegsForOneUse): synced with other ports' versions although it
1774         is not used currently,
1775         * (pic16_packRegisters): added an optimization while reading
1776         structure bitfields, some registers may be saved (malloc code is
1777         decreased by 80 bytes)
1778
1779 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1780
1781         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1782         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1783         this can be optimized more?
1784
1785 2005-03-10 Raphael Neider <rneider AT web.de>
1786
1787         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1788           genNearPointerGet): (hopefully) fixed access to bitfields via
1789           pointers (p->bitN = x; and x = p->bitN; failed)
1790
1791 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1792
1793         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1794
1795 2005-03-09 Raphael Neider <rneider AT web.de>
1796
1797         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1798
1799 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1800
1801         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1802         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1803           (regTypeNum): set REG_BIT type if necessary
1804         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1805         * support/regression/tests/critical.c: check bug 1144613
1806
1807 2005-03-02 Raphael Neider <rneider AT web.de>
1808
1809         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1810
1811 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1812
1813         * src/avr/ralloc.c (serialRegAssign),
1814         * src/ds390/ralloc.c (serialRegAssign),
1815         * src/hc08/ralloc.c (serialRegAssign),
1816         * src/mcs51/ralloc.c (serialRegAssign),
1817         * src/pic/ralloc.c (serialRegAssign),
1818         * src/pic16/ralloc.c (serialRegAssign),
1819         * src/xa51/ralloc.c (serialRegAssign),
1820         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1821
1822 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1823
1824         * src/SDCCast.c (decorateType): fixed bug 1124787
1825
1826 2005-02-20 Hubert Sack <sack AT digiplan.de>
1827         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1828
1829         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1830         patch #1121755
1831
1832 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1833
1834         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1835         to keep the correct label reference count when adding/removing references
1836         to labels. A peephole file using this is appended to patch #1144962.
1837
1838 2005-02-14 Raphael Neider <rneider AT web.de>
1839
1840         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1841         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1842         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1843           retrievals of result operand's value on assignment
1844
1845 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1846
1847         * device/include/pic16/string.h: modified prototype for memccpy()
1848         to memccpy(void *, void *, char, size_t)
1849         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1850         check whether to omit frame pointer or not,
1851         * (genInline): convert all occurences of "\n" to LF in inline
1852         assembler blocks, this helps formatting the inline text,
1853         * (pic16_loadFSR0): modified prototype,
1854         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1855         removed some 8051 legacy code,
1856         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1857         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1858         before allocating temporary registers in functions,
1859
1860 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1861
1862         * support/regression/tests/bitvars.c: corrected the "fix"
1863
1864 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1865
1866         * support/regression/tests/bitvars.c,
1867         * support/regression/tests/bitwise.c,
1868         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1869
1870 2005-02-10 Raphael Neider <rneider AT web.de>
1871
1872         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1873           different size for Alpha
1874         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1875
1876 2005-02-09 Raphael Neider <rneider AT web.de>
1877
1878         * src/SDCC.lex(doPragma) : save and restore warning options as well
1879           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1880         * have #pragma less_pedantic set the errorlevel to WARNING
1881           (fixes #1117001)
1882         * (cloneOptimize) : fixed wrong malloc's size
1883         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1884           facilitate correct handling of #pragma (save|restore)
1885
1886 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1887
1888         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1889
1890 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1891
1892         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1893
1894 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1895
1896         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1897
1898 2005-02-02 Raphael Neider <rneider AT web.de>
1899
1900         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1901         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1902         * (pic16_storeForReturn): fixed to allow returning function pointers
1903         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1904         * device/include/pic16/{stddef.h,stdbool.h}: added
1905
1906 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1907
1908         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1909
1910 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1911
1912         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1913         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1914          appeared to be required
1915
1916 2005-01-31 Borut Razem <borut.razem AT siol.net>
1917
1918         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1919           include/mcs51 and include/z80 directories to the package
1920
1921 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1922
1923         * src/hc08/gen.c (genFunction): fixed bug #1112752
1924
1925 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1926
1927         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1928
1929 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1930
1931         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1932
1933 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1936
1937 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1938
1939         * device/include/c8051fxxx.h: removed these 6 files
1940         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1941
1942 2005-01-26 Raphael Neider <rneider AT web.de>
1943
1944         * src/pic16/gen.c (genAssign): fixed assignment from longs
1945           in codespace (were cut to three bytes)
1946         * (genDummyRead): implemented (except for CODESPACE...),
1947           fixed bug #1108575
1948         * src/pic16/glue.c (emitStatistics): beautified
1949         * device/lib/pic16/libm/Makefile: added include path
1950
1951 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1952
1953         * src/z80/gen.c (aopPut): fixed bug #1103902
1954
1955 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1956
1957         * device/lib/expf.c: fixed bug #1095792
1958
1959 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1960
1961         * device/lib/pic16/libm: added Math library sources
1962
1963 2005-01-24 Raphael Neider <rneider AT web.de>
1964
1965         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1966           to enable upcast to pCodeOpReg2 (there is no type tag to
1967           differenciate the two and pic16_popGet2p cast into PCOR2)
1968         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1969           (sizeof(sectNames) changed to sizeof(sectName))
1970           Both patches fix segfaults under MinGW.
1971
1972 2005-01-23 Raphael Neider <rneider AT web.de>
1973
1974         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1975           Safe_[mc]?alloc()'ed variables
1976         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1977           of (byte sized) temporaries (assign them to WREG for now)
1978         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1979           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1980           this might fix SIGSEGVs on MinGW...
1981         * src/SDCCopt.c (killDeadCode): restored original behaviour
1982           (volatile operands might get thrown away though)
1983
1984 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1985
1986         * src/pic16/gen.c: fixed bug #1106975,
1987         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1988         pointer update, INTCON is saved, global interrupts are disabled and
1989         restored after updateing TOS.
1990         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1991         * added function attribute 'shadowregs' to take advantage of shadow
1992         registers,
1993         * added function attribute 'wparam' as an alternative to the wparam
1994         pragma,
1995         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1996         user declares a non-ISR function as 'shadowregs',
1997         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1998
1999 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2000
2001         * .version: bumped version number to 2.4.8
2002         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2003         pic16 port,
2004         * device/lib/pic16/libio/i2c/: I2C module support library,
2005         * device/include/pic16/i2c.h: I2C support library header,
2006         * device/lib/pic16/libc/stdio/: standard IO support sources,
2007         * (printf_small.c): printf_small() source, supports float print,
2008         * (printf_tiny.c): printf_tiny() source, does not support floats,
2009         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2010         enable global optimizations for entire library source, other
2011         Makefiles in the source tree are also modified to reflect this,
2012         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2013         function,
2014         * doc/sdccman.lyx: updated to reflect new changes,
2015         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2016         sym->onStack if-case,
2017         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2018         sbit, idata, _idata, xdata, _xdata,
2019         * added pragma library, to link an external library, (see doc),
2020         * removed command line options, --pomit-config-words, --pomit-ivt,
2021         --pleave-reset-vector,
2022         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2023         when calling assembler to reflect memory model used, also define
2024         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2025         reflect stack model used,
2026         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2027         on stack return NULL,
2028
2029 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2030
2031         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2032           of the operands is volatile. Fixes #1020220
2033
2034 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2035
2036         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2037         * (OptimizeRegUsage): make sure that there is really no other flow where
2038           the first pCode is used
2039
2040 2005-01-22 Raphael Neider <rneider AT web.de>
2041
2042         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2043           to fix #1106967 (pCode->seq are not set up correctly)
2044
2045 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2046
2047         * src/SDCCglue.c (glue): make sure code area is declared before the
2048         static initialization area.
2049
2050 2005-01-21 Raphael Neider <rneider AT web.de>
2051
2052         * device/lib/Makefile.in: fixed test for pic16 install dir
2053         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2054           optimizations
2055         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2056           added --optimize-goto compiler switch and pragma wparam documentation
2057         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2058         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2059           and PRODH closing bug #1071770 (peephole optimizer)
2060
2061 2005-01-19 Raphael Neider <rneider AT web.de>
2062
2063         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2064           cmdLine buffers (used when calling sdcpp...) are large enough
2065           (MAX_PATH=256 truncates arguments leading to system halts when
2066           used in MinGW...)
2067         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2068         * (genUminus): rewritten to for efficiency
2069         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2070           used uninitialized in some cases)
2071         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2072           copy the third byte from the int -- now assumes 0x80 (data memory)
2073         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2074           operands (genAddLit expects the iCode's operands to swapped as
2075           well), fixed leftover bytes (crashed for short left operands)
2076         * (pic16_genMinusDec): performance improvements, removed false
2077           PIC14 emitSKPNCs
2078         * (pic16_genMinus): fixed to cope with differently sized operands
2079         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2080           for --obanksel > 1
2081         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2082         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2083           new banksel optimization
2084         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2085           analysis for temporary registers (segfaults...)
2086         * src/pic16/peeph.def: added rule
2087
2088 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2089
2090         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2091         which converts a float number to its ASCII representation
2092         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2093         functions to convert the fractional and integer part of a float to ASCII,
2094         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2095         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2096         ram
2097         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2098         _STATMEM macros,
2099         * device/include/pic16/adc.h: added GPL info,
2100         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2101         a pCodeOp as tested operand,
2102         * (genNearPointerGet): optimized bit testing, does not use
2103         intermediate register for bit value, test directly instead with
2104         BTFSS, BTFSC, works only for single bits,
2105         * (genpic16Code): dump the name of the iCode in the asm,
2106         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2107         renamed to pic16_decodeOp,
2108         * (serialRegAssign): do not allocate a temporary register for iCode
2109         sequences that test a single bit for 1/0
2110
2111 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2112
2113         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2114         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2115         access stack and frame pointers. They are initially assigned to
2116         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2117         accessing SFRs. Updated all occurences of modification of stack or
2118         frame pointer in gen.c and pcode.c,
2119         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2120         assigning of a literal value to pointers,
2121         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2122         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2123         selected
2124
2125 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2126
2127         * doc/sdccman.lyx: update documentation about stack pragma, added
2128         some info for stack memory models
2129
2130 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2131
2132         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2133
2134 2005-01-08 Raphael Neider <rneider AT web.de>
2135
2136         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2137           udata sections to fix bug #1097823
2138
2139 2005-01-05 Raphael Neider <rneider AT web.de>
2140
2141         * src/pic16/gen.c (genGenericShift): added handling of differently
2142           sized left operand and result
2143
2144 2005-01-04 Raphael Neider <rneider AT web.de>
2145
2146         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2147         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2148           to hold the condition bit)
2149         * added new version of genCmp (old code available via #define)
2150         * added new version of genShiftLeft/genShiftRight in a generic
2151           way, now supports shifting by negative values
2152         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2153           shiftCount (expected by genGenericShift)
2154         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2155         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2156           dump
2157         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2158           is an invalid literal too...)
2159
2160 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2161
2162         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2163         from Raphael Neider,
2164         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2165         for 8-bit literals. This fixes some literal operands which are sign
2166         extended to 16-bits ints when instruction needs only 8-bits.
2167
2168 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2169
2170         * device/lib/logf.c: added mcs51 assembly version
2171         * device/lib/expf.c: added mcs51 assembly version
2172         * device/lib/_logexpf.c: new shared asm code for expf and logf
2173         * device/include/math.h: add defines for assembly math library
2174         * device/lib/Makefile.in: build new _logexpf.c
2175         * device/lib/libfloat.lib: use new _logexpf.c
2176
2177 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2178
2179         * src/pic/device.c
2180         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2181           device types which have less than 0x7f registers.
2182
2183 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2184
2185         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2186
2187 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2188
2189         * device/lib/printf_fast.c: only build on supported arch.
2190         * device/lib/printf_tiny.c: only build on supported arch.
2191         * device/lib/printf_fast_f.c: only build if asm float lib
2192         * device/lib/_fsget1arg.c: only build if asm float lib
2193         * device/lib/_fsget2args.c: only build if asm float lib
2194         * device/lib/_fsnormalize.c: only build if asm float lib
2195         * device/lib/_fsreturnval.c: only build if asm float lib
2196         * device/lib/_fsrshift.c: only build if asm float lib
2197         * device/lib/_fsswapargs.c: only build if asm float lib
2198         * device/include/stdio.h: don't provide print_fast,
2199           print_fast_f, print_tiny prototypes if --xstack used
2200
2201 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2202
2203         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2204         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2205           to the SOURCES
2206
2207 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2208
2209         * device/lib/printf_fast_f.c: same as printf_fast, but
2210           with floating point enabled
2211         * device/lib/printf_fast.c: minor tweaks
2212         * device/include/stdio.h: add printf_fast_f
2213
2214 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2215
2216         * src/SDCCmain.c: make --float-reent default for mcs51
2217         * device/lib/_fsadd.c: added mcs51 assembly version
2218         * device/lib/_fssub.c: added mcs51 assembly version
2219         * device/lib/_fsmul.c: added mcs51 assembly version
2220         * device/lib/_fsdiv.c: added mcs51 assembly version
2221         * device/lib/_fseq.c: added mcs51 assembly version
2222         * device/lib/_fsneq.c: added mcs51 assembly version
2223         * device/lib/_fsgt.c: added mcs51 assembly version
2224         * device/lib/_fslt.c: added mcs51 assembly version
2225         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2226         * device/lib/Makefile.in: add _fscmp to build
2227         * device/lib/libfloat.lib: add _fscmp to build
2228
2229 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2230
2231         * device/lib/_fs2slong.c: added mcs51 assembly version
2232         * device/lib/_fs2sint.c: added mcs51 assembly version
2233         * device/lib/_fs2schar.c: added mcs51 assembly version
2234         * device/lib/_fs2ulong.c: added mcs51 assembly version
2235         * device/lib/_fs2uint.c: added mcs51 assembly version
2236         * device/lib/_fs2uchar.c: added mcs51 assembly version
2237         * device/lib/_slong2fs.c: added mcs51 assembly version
2238         * device/lib/_sint2fs.c: added mcs51 assembly version
2239         * device/lib/_schar2fs.c: added mcs51 assembly version
2240         * device/lib/_ulong2fs.c: added mcs51 assembly version
2241         * device/lib/_uint2fs.c: added mcs51 assembly version
2242         * device/lib/_uchar2fs.c: added mcs51 assembly version
2243         * device/include/float.h: added #define to select asm vs c
2244
2245 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2246
2247         * device/lib/printf_fast.c: improvements to float output
2248         * device/include/float.h: add defines for assembly float library
2249         * device/lib/_fsget1arg.c: receive 1 float arg
2250         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2251         * device/lib/_fsnormalize.c: normalize a float
2252         * device/lib/_fsreturnval.c: return float, various helper routines
2253         * device/lib/_fsrshift.c: right shift a float's mantissa
2254         * device/lib/_fsswapargs.c: swap 2 floats
2255         * device/lib/Makefile.in: build these 6 new files for mcs51
2256         * device/lib/libfloat.lib: add these 6 files to the library
2257
2258 2004-12-26 Borut Razem <borut.razem AT siol.net>
2259
2260         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2261           built by gcc 3.4.2
2262
2263 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2264
2265         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2266           and fully reentrant and register bank neutral.
2267         * device/lib/printf_fast.c: added float (not enabled by default),
2268           added compact/slower integer (also not enabled by default),
2269           improved size/speed of fast integer code, other minor changes
2270         * device/include/stdio.h, device/lib/Makefile.in,
2271           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2272
2273 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2274
2275         * src/pic16/pcode.c: declaring variables other than at the start of a
2276           block is not supported in C by VC6.
2277
2278 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2279
2280         * applied a previous patch from Raphael Neider that wasn't included
2281         in the previous commits, which fixes infinite loops within jumptable
2282         improvements,
2283         * made some fixes that previous patches introduced
2284
2285 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2286
2287         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2288         that fixes an issue with AOP_PCODE asmop's offset,
2289         * (pic16_popCopyReg): update instance field too,
2290         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2291         function of pic port,
2292         * (genCmp, genAnd, genAssign),
2293         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2294
2295 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2296
2297         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2298         variables initial values to idata section,
2299         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2300         variables in some functions. This utilizes parmBytes field of iCode
2301         structure to hold the offset of the variable in stack. (might be
2302         able to use the stack field too?)
2303         * applied patch from Raphael Neider # ### , # ###
2304         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2305         variable initial values in idata section,
2306         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2307         for static variables with initial value
2308         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2309         applied fix in while loop from Raphael Neider.
2310
2311 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2312
2313         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2314         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2315         * src/ds390/ralloc.c (serialRegAssign): spill bits
2316         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2317         * support/Util/SDCCerr.c,
2318         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2319         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2320         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2321
2322 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2323
2324         * device/include/sdcc-lib.h: inserted LGPL, added includes
2325           asm/ds390/features.h and asm/mcs51/features.h
2326         * device/include/asm/default/features.h,
2327         * device/include/asm/gbz80/features.h,
2328         * device/include/asm/z80/features.h: added empty _AUTOMEM
2329           and _STATMEM
2330         * device/include/asm/ds390/features.h,
2331         * device/include/asm/mcs51/features.h: added files with defines for
2332           _AUTOMEM and _STATMEM indicating automatic and static storage class
2333         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2334         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2335         * src/SDCCicode.c (geniCodeCast),
2336         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2337         * src/SDCCloop.c (loopInduction): removed unused variable lr
2338         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2339           to convertToFcall to include char modulo (RFE 1065037), added check
2340           if left operand is unsigned and use abs of literal value
2341         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2342           as it doesn't work after conversion from peephole.def to peephole.rul
2343         * src/mcs51/gen.c (toBoolean): added check for size,
2344           (genModOneByte): optimized code for signed char modulo a literal
2345           power of 2 (thanks to Hubert Sack),
2346           (genRRC): removed unnecessary "clr c",
2347           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2348         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2349           jump optimization,
2350           swapped rules 256.c and 256.d,
2351           extended 256.d by using new multiple checks (thanks Erik),
2352           added rules 256.e and 256.f,
2353           updated rule 261.a and 261.b to new generated code
2354         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2355
2356 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2357
2358         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2359           induction related bugs, including first part of bug #1074377
2360
2361 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2362
2363         * applied patch from bug-report #1076292,
2364         * applied patches for genAnd and Goto-optimizations for Raphael
2365         Neider,
2366         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2367         dump a less iCode information,
2368         * src/pic16/device.h (pic16_options_t): added field debgen,
2369         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2370         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2371         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2372         puclic,
2373         * (various functions): added macros FENTRY and FENTRY2 to functions,
2374         to emit function prologue,
2375         * (various functions): fixed indentation,
2376         * (genNearPointerGet): fixed loading of FSR0,
2377         * (genPackBits): applied patch from Raphael Neider to fix updating
2378         of FSR0 and touching only the modified bits,
2379         * src/pic16/genarith.c (various functions): added macros FENTRY to
2380         emit function prologue in comments,
2381         * src/pic16/pcode.h: added functions debugf2, debugf3,
2382         * src/pic16/ralloc.c: partial fix for packForPush caused
2383         segmentation fault,
2384
2385 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2386
2387         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2388           <stsp AT users.sourceforge.net> with reversed byte order
2389         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2390
2391 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2392
2393         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2394           bug #1074377
2395         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2396         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2397
2398 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2399
2400         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2401
2402 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2403
2404         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2405           conditions,
2406           (setFromConditionArgs): friendly operand parser for peephole rules,
2407           (operandBaseName, operandsNotRelated): new peephole condition
2408           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2409           architecture specific register naming into account, handles n-way
2410           comparisons, and supports quoted literals
2411         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2412
2413 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2414
2415         * src/mcs51/peeph.def: fixed bug #1076940
2416
2417 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2418
2419         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2420
2421 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2422
2423         Adding support for replacing ljmps with sjmps in jumptables
2424         generated for switch statements. For now you need to set the
2425         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2426         Now 4 algorithms for mcs51 jumptable generation are used:
2427         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2428         addresses loaded pc-relative for up to 112 cases and stack-pushing
2429         target addresses loaded with offset from dptr for up to 256 cases.
2430
2431         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2432         * src/mcs51/main.c: adapted constants for switch table generation
2433         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2434
2435 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2436
2437         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2438         * support/regression/tests/bug1057979.c: added test for bug 1073386
2439
2440 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2441
2442         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2443         compilers
2444
2445 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2446
2447         * src/pic16/device.h,
2448         * src/pic16/genarith.c,
2449         * src/pic16/glue.c,
2450         * src/pic16/main.c,
2451         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2452
2453 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2454
2455         Large cummulative patch for pic16 port.
2456         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2457         to call when a stack overflow occurs,
2458         * (malloc.h): added CVS Id tag,
2459         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2460         variable,
2461         * added libc directory. The current version of LibC contains string
2462         functions, ctype functions and macros and some functions of the
2463         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2464         be extensively tested in the future. Standard disclaimer here.
2465         Library is not automatically build yet. But one can build it by
2466         invoking 'make' inside the libc directory.
2467         * added ADC library under libio. Preliminary version yet.
2468
2469         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2470         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2471         aopForRemat() now and not by pic16_aopOp(),
2472         * (pic16_popGetTempReg): removed warning messgae when allocating
2473         temporary registers, its a buggy feature and will be removed,
2474         * (pic16_popGet): set register instance field in AOP_CRY,
2475         * (pic16_outBitC): fixed for results in size greater than 1,
2476         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2477         * (pic16_storeForReturn): optimized return of 0,
2478         * (genCmp): experimental code for new genCmp which uses PIC18's
2479         special compare&skip instructions. Initial tests fail some times
2480         with variables grater than 1 byte in size, so new code is disabled,
2481         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2482         a single bit,
2483         * (genCast): began a fix to optimize the casting of a bit to another
2484         bit, now assigning a bitfield to another bitfield will fail, sorry,
2485         * src/pic16/main.c: disabled the use of lr-support feature,
2486         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2487         * added some function prototypes, added function _debugf prototype,
2488         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2489         bits with offset (case PO_GPR_BIT),
2490         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2491         command line,
2492         * (isBankInstruction): modified to return 0 for no banking instruction,
2493         and 1 for banking instruction,
2494         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2495         caused stop processing pCodes after a inline assembly block,
2496         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2497         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2498         registers when it shouldn't,
2499         * src/pic16/ralloc.c (allocReg): add preliminary support for
2500         supporting a limited set of temporary registers,
2501
2502 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2503
2504         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2505           genDataPointerSet): ensure assignments always copy in MSB to LSB
2506           order,
2507           (loadRegFromAop): recognize CLRH optimization,
2508           (genFunction): optimize RECEIVE iCodes in reentrant functions
2509
2510 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2511
2512         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2513           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2514           selected.
2515         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2516         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2517           contiguous with data
2518
2519 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2520
2521         * device/lib/_gptrget.c (_gptrget),
2522         * device/lib/_gptrgetc.c (_gptrgetc),
2523         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2524           instead of sjmp to ret
2525         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2526           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2527
2528 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2529
2530         * .version: bumped version to 2.4.7
2531         * device/lib/_gptrget.c (_gptrget): is now _naked
2532         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2533         * device/lib/_gptrput.c (_gptrput): is now _naked
2534         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2535           (createFunction): fixed xstack
2536         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2537         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2538           or bit either,
2539           (geniCodeCritical): store original interrupt state in an iTemp bit
2540           var unless stack-auto
2541         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2542         * src/SDCCmain.c (setIncludePath): added include/target to search path
2543         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2544         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2545           prototype,
2546           (processFuncArgs): put bit vars in bit area
2547         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2548           unsaveRBank): fixed xstack,
2549           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2550           (genFunction, genEndFunction): fixed xstack,
2551           (genAssign): optimization don't walk backwards through mem
2552         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2553         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2554         * support/regression/Makefile: also make library (for stack-auto) when
2555           making "all" and added "test-mcs51-xstack-auto"
2556         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2557         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2558         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2559         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2560         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2561           make-library by MAKE_LIBRARY
2562         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2563           regression tests for xstack
2564         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2565         * support/regression/tests/critical.c: test for critical on mcs51
2566
2567 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2568
2569         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2570           built version of sdcc instead of installed version
2571
2572 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2573
2574         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2575         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2576           vprintf.c now
2577         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2578         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2579           WARNING: remove device/lib/build/z80/printf.o by hand when
2580           updating from previous build!
2581         * device/lib/z80/printf.c: updated comment
2582         * support/regression/tests/bug1057979.c: test all ports now
2583         * support/regression/tests/bug1065458.c: file added
2584
2585 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2586
2587         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2588           *_start and *_end symbols for static functions
2589
2590 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2591
2592         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2593           and search crt0.o in all library paths,
2594           (setIncludePath): proper handling of --nostdinc,
2595           (setLibPath): proper handling of --nostdlib
2596         * support/regression/Makefile,
2597         * support/regression/ports/ds390/spec.mk,
2598         * support/regression/ports/gbz80/spec.mk,
2599         * support/regression/ports/hc08/spec.mk,
2600         * support/regression/ports/mcs51/spec.mk,
2601         * support/regression/ports/mcs51-large/spec.mk,
2602         * support/regression/ports/mcs51-stack-auto/spec.mk,
2603         * support/regression/ports/z80/spec.mk: use include and lib files from
2604           built version of sdcc instead of installed version
2605         * doc/sdccman.lyx: fixed typo in --nostdinc
2606
2607 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2608
2609         * src/pic/pcode.c,
2610         * src/pic/device.c,
2611         * src/pic/ralloc.c,
2612         * src/pic/gen.c : added support to generate code for struct bit fields.
2613
2614 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2615
2616         * as/xa51/xa_version.h,
2617         * device/include/errno.h,
2618         * device/include/regc515c.h,
2619         * device/lib/_itoa.c,
2620         * device/lib/_ltoa.c,
2621         * device/lib/ser_ir_cts_rts.c,
2622         * sim/ucsim/xa.src/glob.cc,
2623         * sim/ucsim/xa.src/inst_gen.cc,
2624         * sim/ucsim/xa.src/xa_bit.cc,
2625         * sim/ucsim/xa.src/xa_sfr.cc,
2626         * sim/ucsim/z80.src/inst_dd.cc,
2627         * sim/ucsim/z80.src/inst_fdcb.cc,
2628         * support/scripts/keil2sdcc.pl,
2629         * src/pic16/pic16.dsp,
2630         * src/pic16/pic16a.dsp: corrected cvs line endings
2631         * device/lib/printf_large.c: fixed bug 1057979
2632         * src/pic16/gen.c: fixed non-C standard code
2633         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2634         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2635         * support/regression/ports/mcs51/support.c: reload T1 asap
2636         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2637           pdata use and clear idata startup behaviour
2638         * support/regression/tests/bug1057979.c: added
2639
2640 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2641
2642         * device/examples/ds390/ow390/ad26.h,
2643         * device/examples/ds390/ow390/cnt1d.h,
2644         * device/examples/ds390/ow390/crcutil.c,
2645         * device/examples/ds390/ow390/ownet.h,
2646         * device/examples/ds390/ow390/owsesu.c,
2647         * device/examples/ds390/ow390/swt12.h,
2648         * device/examples/ds390/ow390/swtoper.c,
2649         * device/examples/ds390/ow390/temp10.h,
2650         * device/examples/ds390/ow390/thermodl.c,
2651         * device/examples/ds390/tinitalk/tinitalk.dsp,
2652         * device/examples/ds390/tinitalk/tinitalk.dsw,
2653         * device/examples/mcs51/clock/hw.h,
2654         * device/examples/mcs51/simple2/go.bat,
2655         * device/examples/serialcomm/windows/serial.h,
2656         * device/examples/xa51/dummy.c,
2657         * device/examples/xa51/hello.c,
2658         * device/include/80c51xa.h,
2659         * device/include/at89x051.h: corrected cvs line endings
2660
2661 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2662
2663         * src/pic16/main.c (options): added command line --gstack, to trace
2664         stack over/under flows,
2665         * added pragma 'wparam' to allow passing first byte of function
2666         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2667         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2668         call to __gstack_test function and sets up the symbol as extern,
2669         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2670         * popaop): added call to pic16_testStackOverflow,
2671         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2672         wparamList list,
2673         * (genCall, genPcall): now all parameters are passed via stack
2674         except in functions that are pass to wparam pragma in which WREG is
2675         used too,
2676         * (genPcall): REENTRANT flag is checked to see if variable prototype
2677         contains reentrant keyword, don't call a non-reentrant function, via
2678         a reentrant function pointer or vice versa, functions are never
2679         passed via WREG,
2680         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2681         D.Winkler,
2682         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2683         SIGSEGV when accessing a NULL register stucture,
2684         * (pic16_printGPointerType): modified to handle UPPER modifier for
2685         function initializers, changed prototype of function to simpler one,
2686         * (pic16_printIvalFuncPtr): check to see if function is already
2687         added in externs list,
2688         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2689         optimized a move from W to SFR with a move to the same register
2690         later after a CALL,
2691         * device/lib/pic16/debug: NEW directory, contains debug features
2692         which are enabled when linking with libdebug.lib, currently command
2693         line option --gstack enables stack pointer tracing for over/under
2694         flow, corresponding sources are in debug/gstack
2695
2696 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2697
2698         * doc/sdccman.lyx: updated SDCC version,
2699         * (PIC16 port): update list of command line options,
2700         * src/pic16/device.h (structure pic16_options_t): added field gstack
2701         to enable stack overflow tracing on push/pops,
2702         * src/pic16/device.c (statistics structure): added statistics
2703         structure,
2704         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2705         pic16_dump_int_registers): increase statistics counters for each
2706         * variable which is encountered
2707         * (pic16_dump_usection): emit each .udata variable to its own udata
2708         section,
2709         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2710         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2711         parameters via stack, otherwise use old scheme,
2712         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2713         assembler output file,
2714         * src/pic16/main.c: added command line options --gstack to enable
2715         push/pop tracing for stack overflow,
2716         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2717         instructions): added size of each instruction,
2718         * (pic16_countInstruction): estimate size of instructions in
2719         the_pFile list, inline assembly blocks are not counted,
2720         * (pic16_FixRegisterBanking): trace previous register usage, when
2721         banksel optimizations is greater than 0, don't emit a redudant
2722         banksel directive,
2723
2724 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2725
2726         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2727         * src/pic16/ralloc.c : applied same fix for pic16.
2728         * src/pic/gen.c : tidied it up a little.
2729
2730 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2731
2732         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2733         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2734
2735 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2736
2737         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2738
2739 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2740
2741         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2742         non-reentrant function __modsint in the interrupt function (thus
2743         corrupting math operations during serial I/O)
2744         * device/lib/ser_ir.c: as above, changed buffersize
2745         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2746         256.c,d for zeroing
2747         * doc/Makefile: added option -t for rsync
2748
2749 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2750
2751         * src/SDCCast.h (struct ast),
2752         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2753
2754 2004-10-20 Borut Razem <borut.razem AT siol.net>
2755
2756         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2757         package
2758
2759 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2760
2761         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2762         makefile targets,
2763         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2764         support functions to replace long sequences of MOVFF's from access
2765         bank registers to stack and vice versa,
2766         * src/pic16/device.h: added new field opt_flags, where optimization
2767         flags can be set to enable certain features,
2768         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2769         * pBlock, (genFunction, genEndFunction): surroung loop for
2770         saving/loading used registers in stack with PC_INFO pCodes,
2771         INF_LREGS. Code in between can then be optimized by pCode optimizer
2772         to support function calls,
2773         * (genDataPointerSet): fixed bug which loaded float fields in
2774         structures with corrupt data,
2775         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2776         in a standard way debug info on stderr. Feature used for developing
2777         and debugging only,
2778         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2779         obsolete chunks of code,
2780         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2781         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2782         * pic16/src/pcode.c (pic16_newpCodeInfo,
2783         * (pic16_newpCodeOpLocalRegs),
2784         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2785         feature,
2786         * (pic16_pCodeConstString): printing of the initial value of a
2787         symbol as a comment is inhibited since parsing was already done by
2788         copyStr and output is corrupt,
2789         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2790
2791 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2792
2793         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2794
2795 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2796
2797         * as/mcs51/lkarea.c: removed old K&R style,
2798           (lnksect): changed check on boundary error,
2799           (lnksect2): changed check on boundary error,
2800           (lnksect2): extend XSTK to end of page if size = 1
2801         * as/mcs51/lkmain.c: removed old K&R style,
2802           (Areas51): create l_IRAM symbol
2803         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2804         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2805           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2806         * device/lib/_mullong.c: added version to be compiled with xstack
2807         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2808         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2809         * device/lib/mcs51/crtxstack.asm: fixed comment
2810         * src/SDCCglue.c: maxInterrupts defaults to 0,
2811           (emitMaps): added pdata,
2812           (createInterruptVect): (re)moved default,
2813           (glue): added pdata,
2814           (glue): moved __start__xstack to XSTK with default size 1
2815         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2816           and options.float_rent when options.stackAuto is set,
2817           (linkEdit): only write XDATA_NAME if provided on command line
2818         * src/SDCCmem.h,
2819         * src/SDCCmem.c: added pdata
2820         * src/port.h: added pdata_name to PORT
2821         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2822           (saveRegisters, unsaveRegisters): removed usage of B,
2823           (genMinus): fixed accumulator clash,
2824           (genJumpTab): added comment, this needs another look
2825         * src/mcs51/gen.c: added check for "B in use" paranoia,
2826           added pushB() and popB()
2827         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2828           chance
2829         * src/avr/main.c,
2830         * src/ds390/main.c,
2831         * src/hc08/main.c,
2832         * src/mcs51/main.c,
2833         * src/pic/main.c,
2834         * src/pic16/main.c,
2835         * src/xa51/main.c,
2836         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2837           added PSEG (PAG,XDATA) or NULL to port specifier
2838         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2839         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2840           (_mcs51_genInitStartup): removed __start__xstack equ,
2841           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2842         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2843         * src/z80/gen.c (_rleAppend): fixed warnings
2844         * support/regression/tests/zeropad.c: added pdata test
2845         * .version: bumped to 2.4.6
2846
2847 2004-10-17 Borut Razem <borut.razem AT siol.net>
2848
2849         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2850         as a part of nightly build
2851
2852 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2853
2854         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2855         WREG holds the first byte function parameters,
2856         * (aopForSym): take special case for symbols which are in FARSPACE
2857         but in CODESPACE too,
2858         * (assignResultValue): modified to take into account _G.useWreg,
2859         * (genCall): don't use wreg for parameter passing when function is
2860         declared as reentrant, too, added optimization INCF to stack
2861         pointer when stack parameter count is 1,
2862         * (genFunction, genEndFunction): refurnished and fixed to not using
2863         wreg for passing parameters when function has varargs or is
2864         reentrant, fixed bug with symbol name compare for generating
2865         functions in absolute address,
2866         * (pic16_storeForReturn): refurnished,
2867         * (genCmp): began writing a new version of the function, not ready
2868         yet, therefore it is disabled,
2869         * (genAssign): do not read code memory when assigning a function to
2870         a pointer function,
2871         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2872         array of characters, not pointer,
2873         * (pic16initialComments): in debug mode emit an .ident directive for
2874         the assembler,
2875         * (_process_pragma): emit a new warning type (internal to pic16)
2876         when setting stack to default length, emit a similar warning when
2877         placing a function at absolute address and address is not word aligned
2878         * (_pic16_parseOptions): added 'return TRUE' statement,
2879         * (_pic16_linkEdit): if compiling a source, then add the source's
2880         file object, first in the list of objects to link,
2881
2882 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2883
2884         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2885         * src/pic/main.c : removed VC warning.
2886         * src/pic/gen.c : changed comment.
2887
2888 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2889
2890         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2891         reference to a deprecated symbol _GPTRREG was causing failure to
2892         link. Thanks G. M. Gallant for the info.
2893
2894 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2895
2896         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2897         comments for Bugs item #954788.
2898
2899 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2900
2901         * src/pic16/device.c (pic16_dump_gsection,
2902         * pic16_groupRegistersInSection): handle symbols declared to be in
2903         access bank differently,
2904         * src/pic16/gen.c (struct _G): added field resDirect,
2905         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2906         send values read from stack directly to result and don't allocate
2907         temporary values,
2908         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2909         same registers,
2910         * (pic16_sameRegsOfs): NEW,
2911         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2912         free because they were not allocated from temporary pool,
2913         * pic16_popRegFromString): workaround to fix a problem with
2914         allocating variables twice or never,
2915         * (genGenPointerGet): using PRODL instead of FSR0H,
2916         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2917         instead of FSR0H,
2918         * (genAssign): take advantage of the _G.resDirect flag,
2919         * (genCast): around line 11844, use mov2f instead of directly
2920         MOVFF'ing between operands to account for literal values,
2921         * src/pic16/genutils.c: some new debug functions for gpsim have been
2922         added,
2923         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2924         float with integer part only,
2925         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2926         place variables in access bank
2927         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2928         updated sources to reflect recent changes in gen.c
2929
2930 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2931
2932         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2933         sources that searched for headers in installation path, now the
2934         device/include/pic16 is used,
2935         * src/pic16/glue.c (pic16glue),
2936         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2937         .line directives if not in debug mode, this suppresses assembler's
2938         warnings for ignored directives
2939
2940 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2941
2942         * src/port.h: made reset_regparms prototype void parameter explicit.
2943         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2944         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2945         * doc/sdccman.lyx: documented warning disabling and how to use
2946           printf_large to make it print floats.
2947         * device/include/stdbool.h: NEW
2948         * device/lib/_atof.c,
2949         * device/lib/_divuint.c,
2950         * device/lib/_divulong.c,
2951         * device/lib/expf.c,
2952         * device/lib/printf_large.c,
2953         * device/lib/sincosf.c,
2954         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2955         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2956           a completely reentrant lib.
2957
2958 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2959
2960         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2961         * device/include/pic16/stdio.h: fixed bug with colon
2962
2963 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2964
2965         * device/include/pic16/stdio.h,
2966         * device/include/pic16/stdlib.h,
2967         * device/include/pic16/math.h: NEW
2968         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2969         declared as _naked to reduce overhead
2970         * device/lib/Makefile.in (target port-specific-objects-pic16):
2971         changed * to *.* so to ignore the CVS directory,
2972         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2973         stacked variables back in stack,
2974         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2975         corruption
2976
2977 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2978
2979         * .version: bumped version number to 2.4.5
2980         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2981         * support/Util/SDCCerr.c (messages structure): added entry for
2982         W_POSSBUG2
2983
2984         Large cumulative patch for pic16 port and libraries.
2985         * device/include/pic16/sdcc-lib.h,
2986         * device/include/pic16/stdarg.h,
2987         * device/include/asm/pic16/features.h,
2988         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2989         * device/include/pic16/float.h: changes reentrant keyword with
2990         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2991         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2992         updated target build-libraries to include objects from gptr,
2993         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2994         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2995         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2996         all function headings,
2997         * src/SDCCmain.c: added global parameter userIncDirsSet,
2998         * (parseCmdLine): when option -I is encountered add directory to
2999         userIncDirsSet too,
3000         * src/version.awk: added space between control and long,
3001         * src/pic16/NOTES: added some notes for the port,
3002         * src/pic16/gen.c: added prototype for mov2fp function,
3003         * (fReturnpic16[]): properly named return value registers,
3004         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3005         * (aopForSym): added code to handle symbols with onStack flag set,
3006         symbols onStack are allocated PTRSIZE bytes,
3007         * (aopFreeAsmop): handles special case where asmops are stack objects,
3008         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3009         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3010         added argument lock to trace flaws in allocating temporary registers
3011         when developing port,
3012         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3013         * (pic16_popRegFromString): reenabled allocating a direct register
3014         from string,
3015         * (assignResultValue): various beautifications,
3016         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3017         referenced function argument,
3018         * (genIpush): reenabled to allow stacked arguments, handles only
3019         ic->parmPush iCodes,
3020         * (genCall, genPcall): major changes to allow for variable argument
3021         functions, fixed a bug with falsely restoring stack pointer after
3022         returning from call,
3023         * (genFunction): pending code for critical function,
3024         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3025         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3026         * (genNearPointerGet): fixed bug with indirect reading, was always
3027         reading from INDF0
3028         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3029         pointers,
3030         * (genAddrOf): rewrote code to take address of a stacked function parameter
3031         * (genCast): fixed casting to generic pointer type,
3032         * src/pic16/gen.h: added AOP_STA,
3033         * (struct asmop): added field stk,
3034         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3035         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3036         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3037         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3038         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3039         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3040         generic pointers,
3041         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3042         and library paths,
3043         * (pic16_port structure): generic pointer size is set to 3,
3044         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3045         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3046         compiler warning,
3047         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3048         operand is an iTemp,
3049
3050 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3051
3052         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3053         * debugger/mcs51/simi.c: addapt new syntax of s51
3054
3055 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3056
3057         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3058         * src/pic16/pcode.c: commented out some calls to free() in order to
3059         fix bug #989576,
3060
3061 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3062
3063         * src/SDCCicode.h,
3064         * src/SDCCicode.c (isiCodeInFunctionCall),
3065         * src/avr/ralloc.c (selectSpil),
3066         * src/pic/ralloc.c (selectSpil),
3067         * src/pic16/ralloc.c (selectSpil),
3068         * src/ds390/ralloc.c (selectSpil),
3069         * src/hc08/ralloc.c (selectSpil),
3070         * src/xa51/ralloc.c (selectSpil),
3071         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3072         stack in the middle of a function call sequence (fixes bug #1020268)
3073         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3074         costs associated with the minimum switch case.
3075
3076 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3077
3078         * src/SDCC.lex: fixed bug #1030549
3079
3080 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3081
3082         * src/SDCCcse.h (struct cseDef),
3083         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3084         over a function call if the CSE is derived from a symbol whose
3085         address has been taken (fixes bug #1029883)
3086         * support/regression/tests/bug-1029883: a new regression test for
3087         this bug
3088
3089 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3090
3091         * src/hc08/gen.c (emitinline): fixed bug #1029778
3092         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3093         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3094         and starts toward RFE #905167)
3095
3096 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3097
3098         * src/pic16/gen.c (mov2f): New function to move an operand to
3099         another without considering if it is a literal or a register,
3100         * (pic16_sameRegs): don't check if they are both AOP_REG,
3101         * (AccRsh): removed andmask=0 lines,
3102         * (genLeftShift): duplicated to be improved in future versions,
3103         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3104         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3105         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3106         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3107         * (insertBankSwitch): fixed inserting banksel directives algorithm
3108         for instructions that follow a skip instruction, this fixes a report
3109         for broken subtraction code generation,
3110         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3111         iCode is a left op, just in case result and right share the same
3112         registers
3113
3114 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3115
3116         * src/hc08/main.c,
3117         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3118         preservation of HX
3119         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3120         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3121         on 2004-09-12; it was buggy
3122
3123 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3124
3125         * src/SDCCsymt.h: removed RESULT_CHECK
3126         * src/SDCCast.c,
3127         * src/SDCCglue.c,
3128         * src/SDCCval.c,
3129         * src/pic/glue.c,
3130         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3131
3132 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3133
3134         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3135         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3136         configuration values no more rejected by compiler, they are assigned
3137         to configuration registers with a warning message instead,
3138         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3139         the for-loop so last conf register is emitted too,
3140         * (_pic16_initPaths): link library libsdcc.lib by default,
3141         * (_hasNativeMulFor): modified test for multiplication according to
3142         Raphael Neider's remarks. Integer multiplication is also done with
3143         support functions,
3144         * device/include/pic16/pic18fregs.h: corrected type error in while
3145         testing and including 18f6720 header file
3146
3147 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3148
3149         * src/pic16/device.h (pic16_options): removed field use_crt,
3150         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3151         until an optimization to handle single bits is added,
3152         * (pic16_loadFSR0): moved before genUnpackBits,
3153         * (genAnd): some white lines removed,
3154         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3155         leave_reset flags in pic16_options when using crt modules,
3156
3157 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3158
3159         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3160           for bugs 898889 & 979599. Also used some safer print instructions.
3161
3162 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3163
3164         * src/pic16/device.h (pic16_options_t): added field use_crt,
3165         crt_name, no_crt,
3166         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3167         catch a probable future bug,
3168         * src/pic16/gen.c: aopIdx function commented out,
3169         * (genAssign): commented out old code which used aopIdx,
3170         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3171         code, added if conditionals to take into account the --use-crt
3172         command line options,
3173         * src/pic16/main.c (pic16_optionsTable): added new command line
3174         options, --use-crt= and --no-crt,
3175         * (_pic16_linkEdit): now the proper crt object is added in the
3176         linker command line except than when --no-crt is specified,
3177         * src/pic16/pcode.c,
3178         * src/pic16/pcode.h: added some structures and functions for a new
3179         optimization scheme to compansate for instruction overhead between
3180         same iCodes, this scheme is currently under development and is not
3181         working in any way,
3182         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3183         to && operator,
3184         * device/lib/pic16/startup/crt0i.c,
3185         * device/lib/pic16/startup/crt0iz.c: added global char variable
3186         __uflags to force the generation of an idata section
3187
3188 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3189
3190         * doc/Makefile,
3191         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3192         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3193
3194 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3195
3196         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3197         Frieder) and clarified the default code optimization mode
3198
3199 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3200
3201         * src/SDCC.lex (doPragma, process_pragma),
3202         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3203         "opt_code_size", and "opt_code_balanced"
3204         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3205         regrouped options by category, added support for category headers
3206         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3207         and "--opt-code-size"
3208         * doc/sdccman.lyx: documented these new options and pragmas
3209         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3210         preference into account
3211
3212 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3213
3214         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3215           geniCodePreDec): Fixed bug 904237 by generating a warning
3216         * src/SDCCerr.h,
3217         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3218
3219 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3220
3221         * src/pic/device.c : When no max ram set validate full memory range.
3222         * src/pic/pcode.c,
3223         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3224
3225 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3226
3227         * device/lib/_gptrget.c,
3228         * device/lib/_gptrput.c: updated comment
3229         * device/lib/calloc.c,
3230         * device/lib/free.c,
3231         * device/lib/malloc.c,
3232         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3233         * src/SDCCcse.c (cseBBlock),
3234         * src/SDCCicode.c (printOperand, geniCodeArray),
3235         * src/SDCCicode.h (struct operand): fixed bug 868103
3236         * support/regression/tests/bug-868103.c: added
3237         * src/SDCCast.c (searchLitOp),
3238         * src/SDCCcse.h (struct cseDef),
3239         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3240         * src/SDCCicode.h (struct operand),
3241         * src/SDCCsymt.h (struct sym_link),
3242         * src/avr/gen.c (hasInc),
3243         * src/ds390/gen.c (hasInc),
3244         * src/hc08/gen.c (genPlusIncr, hasInc),
3245         * src/mcs51/gen.c (hasInc),
3246         * src/pic16/glue.c (pic16_printIvalChar),
3247         * src/pic16/ralloc.c (regWithIdx),
3248         * src/xa51/gen.c (hasInc) : removed warnings
3249         * src/SDCCast.c (createBlock): added comment ???
3250         * src/hc08/ralloc.c: updated comments
3251
3252 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3253
3254         * doc/sdccman.lyx: updated section on switch statements, added
3255         section about semaphore locking
3256         * doc/Makefile: added option -info for latex2html
3257         * device/lib/_gptrget.c,
3258         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3259
3260 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3261
3262         * src/pic/device.h,
3263         * src/pic/device.c,
3264         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3265          maxram is less than 0x100.
3266
3267 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3268
3269         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3270
3271 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3272
3273         * src/port.h,
3274         * src/mcs51/main.c,
3275         * src/ds390/main.c,
3276         * src/z80/main.c,
3277         * src/hc08/main.c,
3278         * src/pic/main.c,
3279         * src/pic16/main.c,
3280         * src/avr/main.c,
3281         * src/xa51/main.c
3282         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3283         a jump table is the best form for a switch statement, including
3284         automatic insertion of missing cases to make the case range
3285         continuous. Developed in collaboration with Frieder Ferlemann.
3286
3287 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3288
3289         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3290         accumulator result if it needs sign extension
3291
3292 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3293
3294         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3295
3296 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3297
3298         * device/lib/gbz80/printf.c,
3299         * device/lib/z80/printf.c: removed define for NULL
3300
3301 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3302
3303         * as/xa51/xa_link.c,
3304         * device/examples/ds390/ow390/ad26.c,
3305         * device/examples/ds390/ow390/cnt1d.c,
3306         * device/examples/ds390/ow390/counter.c,
3307         * device/examples/ds390/ow390/ds2480.h,
3308         * device/examples/ds390/ow390/ds2480ut.c,
3309         * device/examples/ds390/ow390/findtype.c,
3310         * device/examples/ds390/ow390/gethumd.c,
3311         * device/examples/ds390/ow390/owllu.c,
3312         * device/examples/ds390/ow390/ownetu.c,
3313         * device/examples/ds390/ow390/swt12.c,
3314         * device/examples/ds390/ow390/swtloop.c,
3315         * device/examples/ds390/ow390/temp.c,
3316         * device/examples/ds390/ow390/temp10.c,
3317         * device/examples/ds390/ow390/thermo21.c,
3318         * device/examples/ds390/ow390/tinilnk.c,
3319         * device/examples/ds390/ow390/tstfind.c,
3320         * device/examples/serialcomm/windows/serial.cpp,
3321         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3322         * device/include/reg51.h: fixed line endings for cvs
3323
3324 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3325
3326         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3327         packRegsForAccUse, packRegisters): new accumulator register
3328         packing algorithm
3329         * support/regression/ports/hc08/support.c (_putchar): suppress
3330         warning of unused variable
3331         * src/SDCCicode.c: added SWAP entry to codeTable
3332
3333 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3334
3335         * device/lib/sprintf.c: forgot to add this file before previous commit
3336
3337 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3338
3339         * src/pic16/gen.c (genPackBits): added operand right in function
3340         parameters, load result directly if p_type is POINTER (that is
3341         called by genNearPointerSet)
3342         * (genUnPackBits): added operand left in function parameters,
3343         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3344         FSR0 if accessing bitfields,
3345
3346 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3349           _print_format; updated printf, sprintf, vsprintf
3350         * device/include/asm/default/features.h: corrected comment/define
3351         * device/lib/Makefile.in: added sprintf.c
3352         * device/lib/libsdcc.lib: added sprintf module
3353         * device/lib/printf_large.c,
3354         * device/lib/vprintf.c,
3355         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3356           into these 3 files
3357         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3358         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3359         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3360           hc08 test
3361         * support/regression/tests/zeropad.c: define idata as data for hc08
3362
3363 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3364
3365         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3366         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3367         labels are referenced at least once (even if a reference is not found)
3368         * src/hc08/gen.c (emitcode): set isComment flag for comments
3369         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3370         loads), rules 6a..6b (optimize jumps to return)
3371
3372 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3373
3374         * device/lib/acosf.c (acosf),
3375         * device/lib/asinf.c (asinf),
3376         * device/lib/atanf.c (atanf),
3377         * device/lib/ceilf.c (ceilf),
3378         * device/lib/cosf.c (cosf),
3379         * device/lib/coshf.c (coshf),
3380         * device/lib/cotf.c (cotf),
3381         * device/lib/fabsf.c (fabsf),
3382         * device/lib/floorf.c (floorf),
3383         * device/lib/log10f.c (log10f),
3384         * device/lib/logf.c (logf),
3385         * device/lib/sinf.c (sinf),
3386         * device/lib/sinhf.c (sinhf),
3387         * device/lib/sqrtf.c (sqrtf),
3388         * device/lib/tanf.c (tanf),
3389         * device/lib/tanhf.c (tanhf),
3390         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3391         replaced all instances of "reentrant" in the library functions
3392         defined in math.h with this macro.
3393         * support/regression/tests/float_trans.c: reenabled test for hc08
3394
3395 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3396
3397         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3398         erroneously deleted
3399
3400 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3401
3402         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3403         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3404         multi-byte volatile operands are used
3405         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3406         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3407         initialization to area GSINIT0 so that it would always precede
3408         any static initializers in GSINIT
3409         * support/regression/tests/zeropad.c: fixed idata define for hc08
3410         * support/regression/tests/bug-927659.c,
3411         * support/regression/tests/float_trans.c: disabled tests for hc08
3412         pending missing library routines
3413         * .version: increased version number to 2.4.4 - hc08 port now passes
3414         regression tests
3415
3416
3417 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3418
3419         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3420         * Makefile.common.in,
3421         * as/Makefile,
3422         * as/hc08/Makefile.in,
3423         * as/mcs51/Makefile.in,
3424         * as/z80/Makefile.in,
3425         * debugger/mcs51/Makefile.in,
3426         * device/include/Makefile.in,
3427         * device/lib/Makefile.in,
3428         * doc/Makefile,
3429         * link/Makefile,
3430         * link/z80/Makefile.in,
3431         * packihx/Makefile.in,
3432         * sim/ucsim/main_in.mk,
3433         * sim/ucsim/avr.src/Makefile.in,
3434         * sim/ucsim/doc/Makefile.in,
3435         * sim/ucsim/gui.src/serio.src/Makefile.in,
3436         * sim/ucsim/hc08.src/Makefile.in,
3437         * sim/ucsim/s51.src/Makefile.in,
3438         * sim/ucsim/xa.src/Makefile.in,
3439         * sim/ucsim/z80.src/Makefile.in,
3440         * src/Makefile.in,
3441         * support/cpp2/Makefile.in,
3442         * support/librarian/Makefile,
3443         * support/makebin/Makefile: added DESTDIR to the install path proposed
3444         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3445         * doc/sdccman.lyx: added DESTDIR documentation
3446
3447 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3448
3449         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3450         instruction for interrupt handlers, use fast returns when returning
3451         from high priority interrupts
3452
3453 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3454
3455         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3456         code generation
3457         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3458         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3459         bugs, ported much of Bernhard's code from mcs51
3460         * src/mcs51/gen.c (genSend),
3461         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3462         than one when calling a reentrant function
3463         * device/lib/_mullong.c: defined an alternate struct layout for big
3464         endian ports (hc08)
3465
3466 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3467
3468         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3469         test
3470
3471 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3472
3473         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3474         are sane and complete before asking the port its prefered parameter
3475         passing method (fixes bug #1017633)
3476         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3477         and _ret3
3478
3479 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3480
3481         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3482         problem in bitfields >= 8 bits.
3483
3484 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3485
3486         * src/SDCCsymt.c: undid changes that were not meant to be committed
3487
3488 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3489
3490         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3491
3492 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3493
3494         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3495           copied and wrong bit got inverted
3496
3497 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3498
3499         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3500         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3501         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3502         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3503         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3504         assignments to bitfields at known addresses
3505         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3506         reads from bitfields at known addresses
3507         * src/hc08/ralloc.c (packRegisters),
3508         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3509         genhc08Code): optimize pointer get values used as conditionals
3510         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3511         and branch
3512
3513 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3514
3515         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3516         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3517         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3518         as conditionals
3519
3520 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3521
3522         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3523
3524 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3525
3526         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3527         related problems
3528
3529 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3530
3531         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3532
3533 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3534
3535         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3536         mcs51 port
3537
3538 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3539
3540         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3541
3542 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3543
3544         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3545         cases use more compact code.
3546
3547 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3548
3549         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3550
3551 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3552
3553         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3554
3555 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3556
3557         * src/SDCCsymt.h,
3558         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3559         parameter of changePointer() from symbol* to sym_link*
3560         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3561         * src/SDCCsymt.c (compareType): void* type is castable to other
3562         pointers, but not necesarily an exact match.
3563         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3564         is no longer blindly treated as an exact match.
3565         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3566
3567 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3568
3569         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3570
3571 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3572
3573         * src/pic/gen.c,
3574         * src/pic/pcode.c,
3575         * src/pic/ralloc.h,
3576         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3577
3578 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3579
3580         * src/pic/device.c,
3581         * src/pic/device.h,
3582         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3583
3584 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3585
3586         * src/mcs51/gen.c (emitcode): fixed bug #992819
3587
3588 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3589
3590         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3591           there's no need to make it worse
3592
3593 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3594
3595         * src/mcs51/ralloc.c (deassignLR),
3596         * src/ds390/ralloc.c (deassignLR),
3597         * src/hc08/ralloc.c (deassignLR),
3598         * src/z80/ralloc.c (deassignLR),
3599         * src/pic/ralloc.c (deassignLR),
3600         * src/pic16/ralloc.c (deassignLR),
3601         * src/avr/ralloc.c (deassignLR),
3602         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3603         rlivePoint): fixed another part of bug #971834
3604
3605 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3606
3607         * src/z80/main.c: enabled "critical" keyword
3608         * src/z80/mappings.i,
3609         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3610         functions (fixes bug #979646)
3611         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3612
3613 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3614
3615         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3616           such as c:\mydir.
3617
3618 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3619
3620         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3621           doesn't disable too much optimizations
3622
3623 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3624
3625         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3626
3627 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3628
3629         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3630
3631 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3632
3633         * src/pic/gen.c tidied up tabs
3634         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3635         * src/pic/main.c tidied up tabs
3636         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3637         * src/pic/pcoderegs.c tidied up tabs
3638         * src/pic/ralloc.c tidied up tabs
3639
3640 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3641
3642         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3643         to S_FIXED for pic16 port and when symbol is not in level 0,
3644         allocate for S_REGISTER storage class and pic16 port, too,
3645         * src/pic16/device.h: prototype for checkSym,
3646         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3647         * (pic16_assignConfigWordValue): test the value and the mask to
3648         validate that the value is suitable for the configuration word,
3649         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3650         collect extern declared symbols, don't emit symbol twice, check
3651         first if symbol is in publics set first,
3652         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3653         * added command line '--fstack' which enables an experimental
3654         feature for stack access, too buggy to be used yet...
3655         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3656         * (pic16_allocDirReg): when register has storage class S_REGISTER
3657         allocate in pic16_dynAccessRegs,
3658         * device/include/pic16/pic18f????.h: modified configuration word
3659         naming convention, words started as CONFIG0H but should be CONFIG1H
3660
3661 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3662
3663         * device/include/mcs51reg.h: fixed bug 970993
3664
3665 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3666
3667         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3668         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3669         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3670         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3671         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3672         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3673           error/warning numbers,
3674           added function setWarningDisabled()
3675         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3676         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3677           _memcmp.c _memmove.c calloc.c realloc.c free.c
3678         * support/regression/tests/malloc.c: added tests for new functionality
3679         * support/regression/tests/zeropad.c: added tests for truncated initializers
3680           and initialized char arrays starting with '\x0'
3681         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3682
3683 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3684
3685         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3686
3687 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3688
3689         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3690         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3691         peephole 177.e. Thanks to anonymous
3692
3693 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3694
3695         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3696         function isn't used in the source but referenced as a
3697         variable initializer then declare it as extern in .asm file
3698
3699 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3700
3701         * .version: increased version number to 2.4.3
3702
3703         Adding version extension according to ChangeLog CVS revision
3704         * src/Makefile.in (target all): added dependency 'version.h'
3705         * (rule version.h): added rule to create version.h from ChangeLog,
3706         * (rule dep): added dependency version.h,
3707         * src/version.awk: AWK script to create version.h
3708         * src/SDCCdwarf2.c (dwWriteModule),
3709         * src/SDCCglue.c (initialComments),
3710         * src/SDCCmain.c (printVersionInfo): modified to write after
3711         version string the version extension number,
3712         * src/SDCCutil.c: included "version.h"
3713         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3714         number,
3715         * src/SDCCutil.h: added prototype for getBuildNumber
3716
3717         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3718         includeDirsSet, too,
3719         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3720         const char [] is found in function prototype...
3721
3722         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3723         moving to WREG with source is already in WREG,
3724         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3725         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3726         * (aopForSym): stack'ed symbols are partially supported, added
3727         if-clause to support symbols in FARSPACE,
3728         * (sameRegs): added test for AOP_ACC to see if registers are same,
3729         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3730         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3731         * (pic16_popRegFromString): will not allocate a new register if it
3732         doesn't find one by name, bug may have introduced...
3733         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3734         * (genIpush): revived to use pic16 port's stack,
3735         * (genAddrOf): added incomplete case for stack'ed operand,
3736         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3737         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3738         can handle multibyte operands,
3739         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3740         * (pic16initialComments): added message for MPLAB compatibility
3741         mode enabled,
3742         * src/pic16/main.h: prototype for pic16_mplab_comp,
3743         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3744         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3745         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3746         because of increased complexity of procedure,
3747         * (_process_pragma): stack pragma changed to format 'stack pos len',
3748         emit symbol '_stack_end' to conform with gplink,
3749         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3750         to search for register,
3751         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3752         PO_GPR_REGISTER,
3753         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3754         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3755         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3756         case for PO_GPR_REGISTER,
3757         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3758         dies, the new era is ahead !...
3759         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3760         pic16_dynInternalRegs,
3761         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3762         * (pic16_allocDirReg): minor optimizations and bug fixes,
3763         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3764
3765         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3766         load stack and frame pointer with address of 'stack_end' symbol
3767
3768 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3769
3770         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3771         without source code but only variable initializers
3772
3773 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3774
3775         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3776         external are not declared as extern to reduce overhead while linking
3777
3778 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3779
3780         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3781
3782 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3783
3784         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3785           Yee Keat for the patch
3786         * src/SDCCast.c (decorateType): fixed bug #979599
3787         * src/ds390/gen.h: removed local fReturnSizeDS390
3788         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3789         * src/ds390/gen.c (genAnd, genOr, genXor),
3790         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3791
3792 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3795         add relFilesSet to $3, manipulate $2 to handle linking of object
3796         files without source files in command line,
3797         * device/include/pic16 (all headers): added ID location macros,
3798         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3799         entries for ID location bytes,
3800         * (pic16_assignIdByteValue): NEW,
3801         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3802         added field dumpcalltree to pic16_options_t,
3803         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3804         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3805         emitting rFalseIfx label after check_carry label,
3806         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3807         pic16_emitDIRegs), NEW
3808         * (pic16glue): dump .calltree file when option --calltree found,
3809         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3810         * (_pic16_genAssemblerPreamble): emit ID locations after
3811         configuration registers,
3812         * (pic16_linkCmd): modifications of the link command,
3813         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3814         * (pic16_pCodeInitRegisters): don't init stack registers,
3815         * (pic16_findPrevInstruction): fixed bug,
3816         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3817         bug with immediate registers,
3818         * (buildCallTree): traces stack push and pop,
3819         * (pct2): dump also stack usage for each function,
3820         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3821         * (pic16_allocDirReg): various modifications,
3822         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3823         fixed to 1,
3824
3825 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3826
3827         * src/pic16/pcode.c: removed buggy double colon
3828
3829 2004-07-01 Borut Razem <borut.razem AT siol.net>
3830
3831         * support/scripts/sdcc.nsi: added include/pic16 to setup
3832
3833 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3834
3835         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3836         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3837         target 'clean',
3838         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3839         specific command line arguments. Also added sample lkr script
3840         for placing a variable at a specific memory bank.
3841         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3842         at a specific memory bank,
3843         * (pic16_dump_isection): fixed bug which caused string literals to
3844         be omitted when dumping idata section,
3845         * (pic16_groupRegistersInSection): added code to handle registers
3846         in specific memory banks,
3847         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3848         public, all references are renamed too,
3849         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3850         AOP_DPTR2,
3851         * (pic16_storeForReturn): added case to handle when dest is WREG,
3852         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3853         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3854         pic16_rel_udata, check to see if that register is marked as being
3855         a member of a specific memory bank,
3856         * (pic16_printIvalCharPtr): added code to add string literals either
3857         to code or the idata sections,
3858         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3859         also accept the 'udata' pragma,
3860         * src/pic16/main.h: new structure types sectName and sectSym
3861         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3862         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3863         * (pic16_findPrevInstruction): fixed, it returned nothing,
3864         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3865         instruction combinations,
3866         * (pic16_FixRegisterBanking): heavily reorganised,
3867         * (pic16_AnalyzeBanking): if generating banksel directives is
3868         disabled, then don't call FixRegisterBanking at all,
3869         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3870         completely removed,
3871         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3872
3873 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3874
3875         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3876         Phuah Yee Keat <yk.phuah AT nestac.com>
3877
3878 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3879
3880         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3881         correctly the IVT even if it is relocated to some other location
3882
3883 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3884
3885         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3886         * device/include/pic16/pic18f2220.h: NEW,
3887         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3888         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3889         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3890         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3891         nodefaultlibs, ivt_loc is the location of the interrupt vector
3892         table, and nodefaultlibs signs that default libraries should not be
3893         linked in link stage,
3894         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3895         according to --ivt-loc argument,
3896         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3897         when pragma stack is found,
3898
3899 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3900
3901         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3902         256 (range check), 257 (do while), 258.a-f (bit banging
3903         f.e. on 3-wire SPI bus)
3904
3905 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3906
3907         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3908         variables used exclusively within a loop
3909
3910 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3911
3912         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3913
3914 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3915
3916         * src/SDCClrange.c (computeClash): fixed bug #971834
3917
3918 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3919
3920         * src/mcs51/gen.c (genCmp): fixed bug #975903
3921         * src/hc08/gen.c (operandsEqu),
3922         * src/ds390/gen.c (operandsEqu),
3923         * src/z80/gen.c (operandsEqu),
3924         * src/pic/gen.c (operandsEqu),
3925         * src/pic16/gen.c (operandsEqu),
3926         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3927         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3928
3929 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3930
3931         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3932
3933 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3934
3935         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3936         default case in switch statement,
3937         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3938         to eliminate problem with initialisation of pointers, but problem
3939         still exists,
3940         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3941         * (emitStaticSegment): removed various lines emitting debug info,
3942         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3943         added processor registers for utilizing EEPROM,
3944         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3945         configurable and set 8
3946
3947 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3948
3949         * .version: increased version number to 2.4.2,
3950
3951         Cumulative patch for pic16 port
3952         * src/pic16/device.c: changed scheme to dump initial values for
3953         variables in idata segment, all print_idata* functions were removed,
3954         now the pic16_printIval* will be called,
3955         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3956         * _pic16_printPointerType, pic16_printPointerType,
3957         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3958         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3959         NEW, similar to the respective functions in SDCCglue.c,
3960         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3961         way, emitting hex bytes,
3962         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3963
3964 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3965
3966         * src/avr/ralloc.c (serialRegAssign),
3967         * src/xa51/ralloc.c (serialRegAssign),
3968         * src/pic/ralloc.c (serialRegAssign),
3969         * src/pic16/ralloc.c (serialRegAssign),
3970         * src/hc08/ralloc.c (serialRegAssign),
3971         * src/z80/ralloc.c (serialRegAssign),
3972         * src/ds390/ralloc.c (serialRegAssign),
3973         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3974
3975 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3976
3977         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3978         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3979
3980 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3981
3982         Cumulative patch for pic16 port:
3983         * src/pic16/device.h (typedef PIC16_device) modified fields for
3984         defining microcontrollers,
3985         * src/pic16/device.c: added new info for all devices in Pics16 array,
3986         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3987         to be optimised out by the pCode optimiser,
3988         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3989         specially, bug reported by G.M. Gallant,
3990         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3991         as force'd so that cannot be optimised out by pCode optimiser,
3992         * src/pic16/pcode.c,
3993         * src/pic16/pcodepeeph.c,
3994         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3995         they are disabled by default, but can be enabled explicit with
3996         command argument --denable-peeps, for testing,
3997         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3998         --pomit-ivt in COMPILE_FLAGS
3999
4000 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4001
4002         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4003           compilation on MSVC
4004
4005 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4006
4007         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4008
4009 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4010
4011         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4012         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4013
4014 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4015
4016         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4017         would only assign 0x300001 register.
4018
4019 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4020
4021         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4022         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4023
4024 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4025
4026         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4027         for ds80c400
4028         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4029         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4030         added peephole 254 (left shift), 255 (jump table)
4031
4032 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4033
4034         * device/lib/Makefile.in: removed comment line with model-pic16,
4035         * (target port-specific-objects-pic16): the libraries and objects
4036         are copied to the build directory form the device/lib/pic16/bin
4037         directory
4038
4039         Cumulative patch concerning pic16 port:
4040         * library directory has been re-organized,
4041         * added support for PIC18F1220,
4042         * added headers and library sources for chips 18f1220,18f6520,
4043         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4044
4045         * configuration registers setting has changed, now each supported
4046         device has a complete description of the registers it uses,
4047         * all initialisations are moved to idata sections, these section
4048         can be absolute or relocatable,
4049         * fixed initialisation of codespace variables,
4050         * fixed warning about PCLATU and gpsim,
4051         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4052         * (genAssign): use table reads when assigning from variables in codespace,
4053         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4054         char/int variables placed in codespace,
4055         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4056         registers set in .asm file, no need for --pomit-config-words anymore,
4057         * (pic16glue): some 8051 legacy segments are commented out
4058         (to be removed completely),
4059         * added support for alternative assembler and linker with --asm=
4060         and --link= command line arguments,
4061         * peepholes are disabled automatically in the port, no need to
4062         specify on command line,
4063         * port supports natively char/int/long multiplication, but converts
4064         all divisions to support functions,
4065         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4066         to the file set in variable $2,
4067         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4068         strings in ASCII format and not in hex,
4069         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4070         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4071         allocate proper register if iCodes aren't temporary,
4072
4073 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4074
4075         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4076
4077 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4078
4079         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4080         is commented out
4081
4082 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4083
4084         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4085         computed address is reused
4086         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4087         multi-byte bitfields
4088
4089 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4090
4091         * src/z80/gen.c: (genArrayInit): must check for pointers too
4092
4093 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4094
4095         * support/regression/tests/zeropad.c: never meant to commit the
4096           nestedstruct test: removed, added check for GCC version
4097
4098 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4099
4100         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4101         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4102         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4103           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4104           bugs 928906 and 954082 half-empty initializers
4105         * src/SDCCsymt.h,
4106         * src/SDCCsymt.c (getAllocSize): added for above fix
4107         * src/z80/gen.c (genArrayInit): fixed bug 741044
4108         * support/regression/tests/zeropad.c: added tests
4109
4110 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4111
4112         * src/pic16/device.c (pic16_dump_section): corrected bug which
4113         caused some symbols of the libraries to be misplaced
4114
4115 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4116
4117         * src/pic16/glue.c,
4118         * src/pic16/ralloc.h,
4119         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4120         to fix conflict with pic port
4121
4122 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4123
4124         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4125         externs configuration variables,
4126         * src/pic16/ralloc.h,
4127         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4128         prototype in header, commented out some debug messages
4129
4130 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4131
4132         * src/pic16/glue.c,
4133         * src/pic16/main.c,
4134         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4135         for gpasm COFF object generation. Thanks to D. Hawkins for
4136         his patch info
4137
4138 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4139
4140         * src/ds390/main.c,
4141         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4142         Brock for spotting this)
4143         * src/ds390/gen.c (genEndFunction),
4144         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4145         interrupt handler and critical. Disable push/pop optimizations when
4146         peephole optimizations disabled.
4147
4148 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4149
4150         Updated pic16 library sources and headers.
4151         * device/lib/pic16/pic18f*/ ,
4152         * device/include/pic16/*.h: modified to handle structured SFR
4153         definitions
4154
4155 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4156
4157         * src/port.h (PORT structure): added hook initPaths, now each
4158         port can declare its own default search paths,
4159         which can been seen with the --print-search-dirs option,
4160         see pic16 port for example,
4161         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4162         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4163         * (doPrintSearchDirs): NEW, replaces in a central manner the
4164         printing of search dirs which was split in set*Paths functions,
4165         * (main): added call to port->initPaths and doPrintSearchDirs,
4166         * src/avr/main.c,
4167         * src/ds390/main.c,
4168         * src/hc08/main.c,
4169         * src/izt/i186.c,
4170         * src/izt/tlcs900h.c,
4171         * src/mcs51/main.c,
4172         * src/pic/main.c,
4173         * src/pic16/main.c: modified port structures to reflect addition of
4174         initPaths hook,
4175
4176         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4177         * (pic16_dump_section): for registers in same address reserve memory once,
4178         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4179         to no_banksel,
4180         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4181         result is greater in size than right or left,
4182         * (pic16_genUMult8X8_8): there are some cases where the result can
4183         be 16 bits size, so handle these,
4184         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4185         * (pic16_outBitC): modified to emit pcodes,
4186         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4187         or not,
4188         * (genDivOneByte): implemented algorithm to divide 8-bits,
4189         * (genCmp): uncommented goto, but issues still exist,
4190         * (genAnd): fixed a bug with variables >8bits,
4191         * (genPackBits): optimization added that uses BCF/BSF to change a
4192         single bit,
4193         * (genAssign): fixed bug when assigning floating point literals,
4194         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4195         __sdcc_gsinit_startup label,
4196         * src/pic16/main.c (_pic16_init): removed search directory
4197         initialisations,
4198         * (_pic16_initPaths): NEW, used to initialise search directories,
4199         * (_hasNativeMulFor): support functions for all except char/int
4200         multiplication, and char division,
4201         * (PIC16_port struct): modified entry for native mul support,
4202         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4203         no_banksel option,
4204         * (buildCallTree): call to register_usage is ifdef'ed out,
4205
4206 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4207
4208         * device/include/string.h: applied Stas Sergeev's patch to make this
4209         header file compatible with the preprocessor -Wundef option
4210         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4211         failure (fixes bug #941458)
4212
4213 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4214
4215         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4216         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4217         that the variable, not the function, should be static
4218         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4219         to be consistent with non-literal case
4220
4221 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4222
4223         * src/SDCCast.c (isConformingBody): fixed bug #949967
4224         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4225         convilong): fixed bug #952086
4226
4227 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4228
4229         * src/SDCCmem.c (allocVariables): fixed bug #955321
4230
4231 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4232
4233         * src/hc08/main.c (_hc08_genAssemblerEnd),
4234         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4235         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4236         completely eliminated the use of a temporary file
4237         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4238         when more than one file linked
4239         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4240
4241 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4242
4243         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4244         which fixes bug #543481
4245         * support/regression/tests/bug-751703.c: fixed comments left from a
4246         cut and paste error
4247         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4248         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4249         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4250         scopes
4251         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4252         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4253         are now changed to underscores in moduleName
4254
4255 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4256
4257         * as/mcs51/lkmem.c: better fix for bug #954173
4258
4259 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4260         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4261
4262         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4263         * device/include/c8051f000.h,
4264         * device/include/c8051f120.h,
4265         * device/include/c8051f300.h,
4266         * device/include/c8051f310.h,
4267         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4268         PWM16) and detab'ed
4269
4270 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4271
4272         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4273         and mailing lists, doc'ed --no-peep-comments, removed reference
4274         to knoppix (newest version has no LyX/LaTeX), other minor changes
4275         * src/SDCCglue.c (glue): save 2 bytes stack space with
4276         option --main-return. The ljmp could probably be avoided too
4277
4278 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4279
4280         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4281
4282 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4283
4284         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4285         * src/SDCCopt.c (isLocalWithoutDef),
4286         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4287         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4288         (credit to Maarten Brock for patch #949363, on which this is based)
4289         * support/regression/tests/bug-751703.c: some test cases of extern used
4290         within inner scopes.
4291
4292 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4295         SPEC_STRUCT
4296         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4297         struct definitions
4298         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4299         dwWriteLabel): fix to create valid debugger symbols even when
4300         the module name has non-alphanumeric symbols in it
4301         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4302         when a variable's allocation has been optimized away
4303
4304
4305 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4306
4307         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4308         * src/hc08/main.c,
4309         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4310         * src/mcs51/main.c,
4311         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4312         * src/ds390/main.c,
4313         * src/z80/gen.c (z80_emitDebuggerSymbol),
4314         * src/z80/main.c,
4315         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4316         * src/pic/main.c,
4317         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4318         * src/pic16/main.c,
4319         * src/avr/gen.c (avr_emitDebuggerSymbol),
4320         * src/avr/main.c,
4321         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4322         * src/xa51/main.c,
4323         * src/SDCCdebug.c (emitDebuggerSymbol),
4324         * src/SDCCdebug.h,
4325         * src/port.h: added a debugger struct to the port struct. Added a
4326         callback for defining debugger symbols
4327
4328         * src/SDCCast.c (createLabel),
4329         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4330         with isitmp = 1
4331         * src/SDCCicode.h,
4332         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4333         iCode back to the ast for the function
4334
4335         * src/hc08/ralloc.c (hc08_assignRegisters),
4336         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4337         unneeded fields from the regs struct.
4338         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4339         pushReg() & pullReg() functions instead of emitcode()
4340
4341         * src/hc08/gen.c (genLabel, genhc08Code),
4342         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4343
4344         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4345         debugger hooks
4346
4347         * src/hc08/gen.c (genEndFunction, genhc08Code),
4348         * src/hc08/gen.h,
4349         * src/mcs51/gen.c (genEndFunction, gen51Code),
4350         * src/mcs51/gen.h,
4351         * src/ds390/gen.c (genEndFunction, gen390Code),
4352         * src/ds390/gen.h,
4353         * src/z80/gen.c (genEndFunction, genZ80Code),
4354         * src/z80/gen.h,
4355         * src/z80/z80.h,
4356         * src/pic/gen.c (genEndFunction, genpic14Code),
4357         * src/pic/gen.h,
4358         * src/pic16/gen.c (genEndFunction, genpic16Code),
4359         * src/pic16/gen.h,
4360         * src/avr/gen.c (genEndFunction, genAVRCode),
4361         * src/avr/gen.h,
4362         * src/xa51/gen.c (genEndFunction, genXA51Code),
4363         * src/xa51/gen.h,
4364         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4365         specific code to cdbFile.c and out of the backend code generators
4366
4367         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4368         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4369         starting address is now 0
4370
4371         * as/hc08/asm.h,
4372         * as/hc08/m08pst.c,
4373         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4374         assembler directive for DWARF support
4375         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4376
4377         * src/src.dsp,
4378         * src/Makefile.in,
4379         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4380
4381 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4382
4383         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4384         and inappropriate peephole optimization in jump tables
4385
4386 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4387
4388         * as/hc08/m08pst.c,
4389         * src/SDCCglue.c: sdccopt works for the hc08 port now
4390
4391 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4392
4393         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4394
4395 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4396
4397         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4398
4399 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4400
4401         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4402         rules
4403         * src/SDCCmain.c,
4404         * src/SDCCglobl.h,
4405         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4406         comments from the peephole optimizer replacement rules
4407         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4408         symbols
4409         * src/SDCCcse.c (updateSpillLocation),
4410         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4411         equivalents
4412         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4413         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4414         objects far pointers
4415
4416 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4417
4418         * src/SDCCsymt.h: a missing part of my last change
4419         * src/pic/ralloc.c (regTypeNum),
4420         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4421
4422 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4423
4424         * src/SDCCicode.h,
4425         * src/SDCCicode.c (aggrToPtrDclType),
4426         * src/SDCCptropt.h,
4427         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4428         ptrPseudoSymConvert),
4429         * src/pic/ralloc.c (regTypeNum),
4430         * src/pic16/ralloc.c (regTypeNum),
4431         * src/hc08/ralloc.c (regTypeNum),
4432         * src/ds390/ralloc.c (regTypeNum),
4433         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4434         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4435
4436 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4437
4438         * link/z80/lkmain.c (afile),
4439         * as/hc08/lkmain.c (afile),
4440         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4441         prevent a pointer problem when a filename has no directory and
4442         no extension specified.
4443
4444 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4445
4446         * link/z80/lkmain.c (afile): allow periods in directory names
4447         * link/z80/lkmain.c (afile),
4448         * as/mcs51/lkmain.c (afile),
4449         * as/hc08/lkmain.c (afile): allow linker script file to have an
4450         extension other than ".lnk"
4451         * link/z80/lklex.c (getfid),
4452         * link/z80/lkmain.c (parse),
4453         * as/mcs51/lklex.c (getfid),
4454         * as/mcs51/lkmain.c (parse),
4455         * as/hc08/lklex.c (getfid),
4456         * as/hc08/lkmain.c (parse): Support comments in the linker script
4457         file on lines by themselves and after filenames
4458
4459 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4460
4461         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4462
4463 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4464
4465         * src/z80/peeph-z80.def: removed some peephole rules that don't
4466         work with multibyte arithmetic (fixed bug #937126)
4467         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4468         to registers and not global variables
4469         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4470         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4471         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4472         checking for assignments not internally generated (fixed bug #931895)
4473         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4474         structure member (fixed bug #930072)
4475
4476 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4477
4478         * src/SDCCmain.c (linkEdit),
4479         * src/hc08/main.c (_hc08_parseOptions),
4480         * as/hc08/Makefile.in,
4481         * as/hc08/aslink.h,
4482         * as/hc08/asm.h,
4483         * as/hc08/m08pst.c,
4484         * as/hc08/lkrloc.c (relr, rele),
4485         * as/hc08/lkarea.c (lnkarea)
4486         * as/hc08/lkmain.c (afile, parse),
4487         * as/hc08/lkelf.c: support for ELF output
4488         * as/hc08/lks19.c (s19),
4489         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4490
4491 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4492
4493         * as/mcs51/lkihx.c: Fixed bug #899105.
4494
4495 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4496
4497         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4498         .dsp files from Unix to DOS.
4499
4500 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4501
4502         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4503         function pointers; we have been compliant for several months now.
4504         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4505         change that was accidently commented out
4506         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4507         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4508         bug #922319
4509
4510 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4511
4512         * src/hc08/gen.c: output of all of the internal debugging information
4513         is now controlled by the D() macro; it is disabled by default
4514
4515 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4516
4517         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4518         harder to keep the same registers during a CAST iCode
4519         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4520         long via int can be done in a single cast, if the signedness is
4521         correct.
4522         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4523         putchar() in tinibios.c in ds390's library
4524
4525 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4526
4527         * src/SDCCast.c (decorateType): fixed bug #898889,
4528         cast result of a literal complement too
4529         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4530         fixed check for bitfields
4531
4532 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4533
4534         * src/SDCCicode.c (geniCodeLogic): made it static,
4535         (geniCodeLogicAndOr): added in order to fix bug #905492,
4536         (ast2iCode): fixed bug #905492
4537         * support/regression/tests/bug-905492.c: added
4538         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4539         (processParms): fixed bug #927659: don't copy parms, this will clear
4540         decorated flag
4541         * support/regression/tests/bug-927659.c: added
4542
4543 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4544
4545         * src/SDCCast.c (addCast): don't cast float to char
4546         * device/lib/libsdcc.lib: added _memmove
4547
4548 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4549
4550         * device/lib/large/Makefile: fixed parallel execution by
4551         replacing `make` by `$(MAKE)`
4552
4553 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4554
4555         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4556         offsets (fixes bug #923936)
4557
4558 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4559
4560         * device/lib/small/Makefile: fixed parallel execution by
4561         replacing `make` by `$(MAKE)`
4562
4563 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4564
4565         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4566
4567 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4568
4569         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4570         * src/regression/Makefile: Regression test was not running.
4571
4572 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4573
4574         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4575         complement if possible
4576         * src/SDCCval.c (valComplement),
4577         * src/SDCCicode.c (operandOperation): fixed complement of literal
4578         * support/regression/tests/onebyte.c (testComplement): added
4579
4580 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4581
4582         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4583         return an optimized tree; actually replace actParm with the new tree
4584         * src/SDCCast.h: added some parantheses to remove side effects
4585         * support/regression/tests/bug-920866.c
4586
4587 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4588         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4589         Bit operands were not being handled properly in the pic14 port.
4590         (now src/regression/add.c passes again).
4591
4592 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4593
4594         * src/SDCC.y (labeled_statement): case and default no longer require
4595         a following statement (RFE #893037)
4596
4597 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4598
4599         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4600         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4601         disabled (fixes bug #916294)
4602         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4603         "mov a,acc"; patch provided by Lenny Story
4604         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4605
4606 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4607
4608         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4609         functions
4610         * src/ds390/gen.c (genFunction, genEndFunction),
4611         * src/ds390/ralloc.c (ds390_assignRegisters),
4612         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4613         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4614         pushed if there are parameters passed on the stack. Also, a cleaner
4615         way to decide if r0/r1 should be pushed/popped. (Together they fix
4616         bug #918693)
4617
4618 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4619
4620         * doc/sdccman.lyx,
4621         * device/lib/mcs51/crtpagesfr.asm,
4622         * device/lib/mcs51/crtxinit.asm,
4623         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4624         to avoid confusion with Si Lab's SFRPAGE register.
4625
4626 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4627
4628         * src/SDCCglue.c (emitMaps): allow public sfr variables
4629         * src/SDCCglue.c (initialComments): include compiler build date
4630         with compiler version and put the timestamp of the generated
4631         assembly file on a serperate line to be less confusing.
4632         * src/port.h: added genInitStartup hook
4633         * src/avr/main.c,
4634         * src/ds390/main.c,
4635         * src/hc08/main.c,
4636         * src/pic/main.c,
4637         * src/pic16/main.c,
4638         * src/xa51/main.c,
4639         * src/z80/main.c: genInitStartup initialize as NULL (default to
4640         historical behaviour)
4641         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4642         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4643         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4644         library instead of hard coding it into the compiler.
4645         * support/regression/ports/mcs51-stack-auto/spec.mk,
4646         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4647         * device/lib/mcs51/Makefile,
4648         * device/lib/small/Makefile,
4649         * device/lib/large/Makefile,
4650         * device/lib/mcs51/crtpagesfr.asm,
4651         * device/lib/mcs51/crtstart.asm,
4652         * device/lib/mcs51/crtxclear.asm,
4653         * device/lib/mcs51/crtxinit.asm,
4654         * device/lib/mcs51/crtclear.asm,
4655         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4656         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4657         and into user configurable files.
4658         * device/lib/clean.mk: clean mcs51 directory too
4659         * support/regression/tests/longlit.c: added static to T1 declaration
4660         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4661         accesses in the initialization code
4662
4663 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4664
4665         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4666         OSCTRIMVAL as noted in bug #916008
4667
4668 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4669
4670         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4671         in loops with multiple exits (reported as incorrect registers
4672         used by Martin Helmling in Sdcc-user list)
4673
4674 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4675
4676         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4677         made ds390 register extensions look less like error messages
4678
4679 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4680
4681         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4682         reported by Adam Wozniak in Sdcc-user list
4683
4684 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4685
4686         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4687         arithmetic optimizations, added debug output
4688
4689 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4690
4691         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4692         * sdcc.spec: updated and split sdcc into 3 rpms
4693         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4694         needed for literals of LEFT_OP and '+'
4695         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4696         introduced RESULT_TYPE_NOPROM
4697         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4698         left shift
4699         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4700         limited promotion to int only for '*'
4701         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4702
4703 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4704
4705         * src/pic16/gen.c (genSkip),
4706         (genc16bit2lit), (gencjneshort): commented out
4707         (is_LitOp): new helper function, checks operand type
4708         (genCmpEq): rewritten
4709
4710 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4711
4712         * support/regression/tests/bug-908454.c: added
4713
4714 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4715
4716         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4717         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4718         (geniCodeCast): cosmetic, don't preserve bit storage class
4719         (geniCodeLeftShift): added promotion
4720         (geniCodeLogic): fixed regression
4721         * src/SDCCsymt.c (computeTypeOr): accept bits too
4722         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4723
4724 2004-03-07  Borut Razem <borut.razem AT siol.net>
4725
4726         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4727
4728 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4729
4730         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4731         version of pic16_genPackRegisters which does not check if ic is a
4732         CAST operator,
4733         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4734         function cause string1.c regression test fails
4735
4736 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4737
4738         * sim/ucsim/configure.in,
4739         * sim/ucsim/configure,
4740         * sim/ucsim/doc/Makefile.in: use docdir
4741         * src/SDCC.y: fixed sbit atrributes
4742         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4743         * src/SDCCast.c (decorateType): |^& need special promotion handling
4744         * src/SDCCast.h,
4745         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4746         * src/SDCCsymt.h (computeType),
4747         * src/SDCCicode.c: computeType() needs op
4748         * src/SDCCsymt.c (checkTypeSanity),
4749         * doc/sddman.lyx: "plain" bitfields are unsigned
4750         * src/SDCCsymt.c (computeTypeOr): added
4751         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4752         |^& ops
4753         * src/SDCCval.c (val*): computeType() needs op
4754         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4755         * support/regression/tests/onebyte.c: added tests for |^&
4756
4757 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4758
4759         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4760         for writing icode into asm output.
4761
4762 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4763
4764         * src/pic16/device.c: added some debug lines enabled
4765         with macro DEBUG_CHECK,
4766         * src/pic16/genarith.c: more debug in genPlus,
4767         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4768         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4769         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4770         * (aopForSym): onStack symbols are re-placed in data memspace,
4771         and onStack flag is cleared,
4772         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4773         copy temporary pcodeop,
4774         * (genPcall): added warning for not updating PCLATU,
4775         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4776         always true for pic16 port,
4777         * (genMultOneWord): NEW, supports integer multiplication,
4778         * (genMult): modified to call genMultOneWord,
4779         * (ifxForOp): added warning when return NULL,
4780         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4781         flag is set before call to operandFromSymbol for implicit
4782         added structures,
4783         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4784         options.intlong_rent are set by default,
4785         * (_hasNativeMulFor): modified to allow port generation of integer
4786         multiplication,
4787         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4788         set regtype to REG_SFR for all registers, restricting seting the
4789         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4790
4791 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4792
4793         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4794         more than 500 times in the regression tests
4795
4796 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4797
4798         * support/Util/SDCCerr.h,
4799         * support/Util/SDCCerr.c,
4800         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4801         enumerator_list),
4802         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4803         for symbol conflicts.
4804         * support/valdiags/tests/enum.c,
4805         * support/valdiags/tests/tentdecl.c,
4806         * support/valdiags/tests/struct.c: expect possible error messages
4807         referring to original symbol definitions.
4808         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4809         * src/SDCCsymt.h,
4810         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4811
4812 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4813
4814         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4815
4816 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4817
4818         * src/pic16/ralloc.c (newReg): fixed bug #908929
4819
4820 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4821
4822         * src/ds390/gen.c: added missing #include "main.h"
4823
4824 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4825
4826         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4827         checking if symbol is already in set,
4828         * src/pic16/device.h: prototype for checkAddSym,
4829         * src/pic16/gen.c: (_G): added entry interruptvector,
4830         * (assignResultValue): removed some commented out lines,
4831         * (genFunction): check for ISR via sym->type, absolute section for
4832         interrupt code is created via a new pBlock, the goto instruction is
4833         placed now correctly at the interrupt vector position, changed all
4834         references from ivec to _G.interruptvector,
4835         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4836         is the interrupt is a high priority one, same for return from ISR,
4837         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4838         externs to calls of checkAddSym,
4839         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4840         pic16_pcode_verbose flag is set,
4841         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4842         * src/pic16/pcoderegs.c: message about how many registers are saved
4843         will only be emitted if pic16_pcode_verbose flag is set,
4844
4845 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4846
4847         * src/ds390/ralloc.h,
4848         * src/ds390/ralloc.c (ds390_regWithIdx),
4849         * src/ds390/gen.c (emitcode),
4850         * src/ds390/main.h,
4851         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4852         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4853         ds390operandCompare, getRegsRead, getRegsWritten,
4854         initializeAsmLineNode): customized instruction size calculation for
4855         ds390, started basis for some register optimizations
4856         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4857         corresponding assembly output
4858         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4859         missing push/pop of r0/r1. Optimized push/pops
4860
4861 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4862
4863         * src/mcs51/main.c (instructionSize): fixed ACALL size
4864         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4865
4866 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4867
4868         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4869         the sorting of rlist with NULL elements
4870         * (print_idataType, print_idata): NEW to create idata sections
4871         * src/pic16/device.h: idataSymSet new variable
4872         * src/pic16/gen.c (genFunction): fixed some bugs in string
4873         comparing, improved the absolute section creation for ISRs,
4874         added FSR0L/FSR0H in registers that are saved in an ISR,
4875         * (genInline): fixed the processing of inline snippets,
4876         now they undergo no process by the peephole optimizer
4877         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4878         are placed in idataSymSet,
4879         * (pic16emitStaticSeg): extern symbols are added in externs,
4880         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4881         switching when aboslute variables are placed in access bank memory
4882         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4883         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4884         commented out with #if,
4885         * (pic16_packRegisters): reintroduce the check for CAST because some
4886         symbols are not correctly handled,
4887         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4888         pCodeInstruction instead of pCode,
4889         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4890         pCodeAsmDir definition,
4891         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4892         directive, then the argument directive is emitted without the leading
4893         tab, hack for inline labels which must be in the first column,
4894         * (compareLabel,pic16_findNextInstruction),
4895         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4896         * (insertBankSwitch): modified for the new pCodeAsmDir,
4897
4898 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4899         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4900
4901         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4902         instance,
4903         * (pushSide): commented out with #if,
4904         * (assignResultValue): fixed some typos in saving
4905         registers,
4906         * (genPcall): FIXED and sync'ed with genCall,
4907         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4908         * (genNearPointerGet): fixed to handle some more cases,
4909         implementation scheme via table reads,
4910         * (genConstPointerGet): modified to access code memory correct,
4911         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4912         and improved to handle some cases
4913         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4914         instead of "RETLW" for init data
4915         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4916         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4917         variables are placed in access bank memory (<0x80 and >=0xf80),
4918         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4919         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4920         TBLWT_POSTDEC,TBLWT_PREINC
4921         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4922         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4923         directives
4924         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4925         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4926         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4927         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4928
4929 2004-02-29  Borut Razem <borut.razem AT siol.net>
4930
4931         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4932         support/Util/findme.h, support/Util/system.h: enhance binary relative
4933         search for lib and include by using findProgramPath()
4934
4935 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4936
4937         * src/SDCCpeeph.h,
4938         * src/SDCCpeeph.c (pcDistance),
4939         * src/port.h,
4940         * src/mcs51/ralloc.h,
4941         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4942         * src/mcs51/main.h,
4943         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4944         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4945         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4946         size calculation port specific, started basis for some register
4947         optimizations
4948         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4949         missing push/pop of r0/r1. Optimized push/pops
4950         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4951         * device/lib/_modsint.c (_modsint),
4952         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4953         and stack version so regression tests pass
4954
4955 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4956
4957         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4958         * src/SDCCast.c (decorateType): catch another small optimization
4959         with '?' operator
4960         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4961         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4962         modified to finally use computeType() all over SDCC,
4963         see Feature Request #877103
4964         * src/SDCCval.h: cosmetic
4965         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4966         valCompare(); regression tested in muldiv.c
4967         * support/regression/tests/muldiv.c (testMod): mod sign follows
4968         dividend only
4969
4970 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4971
4972         * src/SDCCast.c (decorateType): fixed bug #902362
4973         * doc/INSTALL.txt: fixed install instructions for win32
4974
4975 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4976
4977         * device/include/Makefile.in (install): fixed by replacing spaces
4978         by tabs
4979         * doc/README.txt,
4980         * doc/INSTALL.txt: updated for release
4981         * doc/sdccman.lyx: added warning for --xstack being buggy
4982
4983 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4984
4985         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4986         to eliminate build warnings.
4987         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4988
4989 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4990            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4991
4992         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4993         removed -penable-stack, added comment for stack pragma, added
4994         warning for not initializing the stack/frame registers, removed
4995         comment at interrupts section
4996
4997         Stack is made permanent, there is no ability to disable stack usage.
4998         * src/pic16/device.h,
4999         * src/pic16/device.c: removed all references to USE_STACK macro,
5000         * src/pic16/device.c (pic16_dump_section): when no elements in
5001         rlist, free rlist before return,
5002         * (pic16_dump_int_registers): NEW, internal registers are a new set
5003         of general purpose registers reused by each function,
5004         * (checkAddReg): returns 1 if registers is added to set,
5005         * (pic16_groupRegistersInSection): when a registers is of type
5006         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5007         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5008         SRCASECMP macro is moved here from device.c
5009         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5010         PO_PCLATU, PO_PRODL, PO_PRODH,
5011         * (pic16_pCodeOpType, genMinus,
5012         changed compares to "a" register, with AOP_ACC,
5013         * (pic16_genPlus): fixed some bugs and indented properly,
5014         * (pic16_addSign): changed size to size+offset in the MOVWF
5015         instruction,
5016         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5017         multiply 8-bit operand by literal, result is 8-bit,
5018         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5019         multiply 2 8-bit operand, result is 8-bit,
5020         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5021         genUMult8X*_16,
5022         * src/pic16/gen.c: changed accUse to contain WREG only,
5023         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5024         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5025         true, do not use immediate addressing any more unless sym is a
5026         pointer in codespace,
5027         * (aopForRemat): do not use immediate addressing when symbol not in
5028         codespace and when symbol's address is requested,
5029         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5030         accUse size (= 1),
5031         * (aopGet): added case for AOP_ACC and don't return "accumulator
5032         bug" but WREG instead,
5033         * (popGetTempReg): pushes contents of temporary register in stack,
5034         * (popReleaseTempReg): pops contents of temporary register from
5035         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5036         * (pic16_popGet): separated case AOP_ACC to return register WREG
5037         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5038         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5039         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5040         the use of immediate pointers to certain cases only.
5041
5042         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5043         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5044         * (assignResultValue, genCall, genRet): modified to use the new
5045         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5046         genPcall is still broken,
5047         * (genFunction): added code to create 'A' type pBlocks when
5048         interrupt functions are generated, code not extensively tested yet,
5049         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5050         * (genEndFunction): modified so ISRs pop stored registers from stack,
5051         * (genMultOneByte): cleanup,
5052         * (AccRsh): added flag andmask, to and result with appropriate mask,
5053         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5054         * (genDataPointerGet): fixed and reenabled its use,
5055         * (genNearDataPointerGet): bugs fixed,
5056         * (genDataPointerSet): bugs fixed,
5057         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5058         pic16_DumpSymbol, pic16_DumpOp,
5059         * src/pic16/genutils.h: function prototypes for the above functions,
5060         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5061         pointers,
5062         * (pic16emitRegularMap): many many many improvements, but needs a
5063         major cleanup,
5064         * src/pic16/main.c: enable_stack in pic16_options is removed,
5065         * (_pic16_parseOptions): removed command line options -penable-stack,
5066         * (_process_pragma): emit stack symbol only when stack pragma is
5067         processed,
5068         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5069         redirected to FSR0L/FSR0H pair,
5070         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5071         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5072         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5073         for immediates,
5074         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5075         * (dumpPicOptype): NEW,
5076         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5077         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5078         with movff instruction,
5079         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5080         added pic16_int_regs, some packRegsFor* functions are commented out,
5081         because produce errors,
5082         * src/pic16/NOTES: minor modifications
5083
5084 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5085
5086         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5087         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5088         --pack-iram.
5089         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5090         * as/mcs51/lkaomf51.c: fixed bug #895763
5091
5092 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5093
5094         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5095
5096 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5097
5098         * doc/sdccman.lyx: added details about the HC08 storage classes and
5099         interrupts, fixed the register usage info for z80 & gbz80
5100
5101 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5102
5103         * doc/sdccman.lyx: added more pic16 port documentation
5104         * device/include/pic16/: added header pic18fregs.h
5105
5106 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5107
5108         * doc/sdccman.lyx: added Vangelis' contribution
5109
5110 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5111
5112         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5113         extend to the next CALL or PCALL, not just to the next CALL.
5114
5115 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5116
5117         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5118
5119 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5120
5121         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5122         bug #895752 and a better fix for bug #716790
5123
5124 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5125
5126         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5127
5128 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5129
5130         * doc/sdccman.lyx: minor changes, minor changed
5131
5132 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5133
5134         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5135         which can't handle SDCC_NEWONEBYTEOPS,
5136         (geniCodeMultiply): removed conversion from mult to shift for pic14
5137         and pic16
5138
5139 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/hc08/gen.h,
5142         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5143         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5144         thus fixing bug #895406
5145
5146 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5147
5148         * device/lib/_modsint.c,
5149         * device/lib/_modslong.c: sign follows divisor only
5150         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5151         signs or signedness can be ignored
5152         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5153         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5154         added optimization for IFX,
5155         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5156         arguments;
5157         reenabled optimization for IFX, which was removed on 2004-01-11
5158         * src/SDCCast.h: added return type IFX
5159         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5160         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5161         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5162         SDCC_OLDONEBYTEOPS selects the old behaviour
5163         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5164         changed again and commented promotion rule
5165         * src/SDCCval.c (valDiv): promotion no longer necessary
5166         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5167         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5168         rewritten
5169         * support/regression/tests/onebyte.c: added
5170
5171 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5172
5173         * gen.c (genInline): reverted to old code for assemnling inline
5174         code because of bug reported James Chadd
5175
5176 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5177
5178         * ralloc.h: missing declarations from previous patch,
5179         seems that patch for ralloc.h was never applied, fixed
5180
5181 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5182            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5183
5184         * pcode.c,
5185         * pcode.h,
5186         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5187         indirect addressing. Marked FSR0 as deprecated
5188         * gen.c (pointerCode): commented out, not needed now
5189         (pic16_popGet2p): new MOVFF helper function
5190         (genGenPointerGet),
5191         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5192         (shiftRLong): removed duplicate debugging info
5193
5194 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5195
5196         * src/ds390/gen.c (genNearPointerGet),
5197         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5198         optimization with bits, but not bitfields.
5199         * src/ds390/ralloc.c (packRegisters),
5200         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5201
5202 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5203
5204         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5205
5206 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/SDCCsymt.h,
5209         * src/SDCCicode.c (operandFromSymbol),
5210         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5211         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5212         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5213         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5214         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5215         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5216         bug #892038
5217         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5218         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5219         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5220         * src/SDCCsymt.c (newSymbol),
5221         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5222         enumerator_list),
5223         * src/SDCCval.h,
5224         * src/SDCCval.c (newiList): fixed bug #885705
5225
5226 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5227
5228         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5229         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5230
5231 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5232
5233         * device/include/c8051f120.h,
5234         * device/include/c8051f300.h,
5235         * device/include/c8051f310.h: added/updated header files for Silicon
5236         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5237         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5238         in new section Submitting patches
5239
5240 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5243         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5244         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5245         genGenPointerSet),
5246         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5247         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5248         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5249         genGenPointerSet),
5250         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5251         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5252         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5253         genGenPointerSet),
5254         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5255         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5256         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5257         genGenPointerSet): fixed bug #892400
5258         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5259         to eliminate build warnings.
5260         * src/SDCCast.c (processParms),
5261         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5262         fixed bug 751859
5263         * support/valdiag/valdiag.py: added GCC to the list of defines active
5264         when compiling with gcc
5265
5266 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5267
5268         * support/Util/SDCCerr.h,
5269         * support/Util/SDCCerr.c,
5270         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5271         with an incomplete type (fixed bug #883734)
5272         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5273
5274 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5277
5278 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5279
5280         * src/SDCCast.c (decorateType),
5281         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5282         function pointer implementation
5283         * support/regression/tests/funptrs.c: added tests to verify both forms
5284         of function pointers work correctly. Added tests to verify parameters
5285         are passed in the correct order.
5286
5287 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5288
5289         * device.c (regCompare): registers are sorted by ascending
5290         address and increasing size,
5291         * main.c (_pic16_finaliseOptions): removed the declaration
5292         of compiler macro MCU. Now a macro of the format pic18fxxxx
5293         will be defined from the command line
5294
5295 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5296             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5297
5298         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5299         PCOP_RLCF was overwritten!
5300         * gen.c (genSkip): commented out calls to pic16_emitcode,
5301         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5302         * (genlshTwo),
5303         * (genRRC): added debugging info,
5304         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5305         overwritten while shifting,
5306         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5307         overwritten while shifting,
5308         * (AccLsh),
5309         * (AccRsh),
5310         * (shiftLLeftOrResult),
5311         * (shiftRLeftOrResult),
5312         * (shiftRLong),
5313         * (shiftLLong): Implemented with pic16_emitpcode
5314         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5315         * (genLeftShift): Fixed bug, operand for shift by variable always
5316         was "and"ed with 0x0f,
5317         * (genLeftShiftLiteral),
5318         * (genrshTwo),
5319         * (genRightShiftLiteral): added debugging info,
5320         * (genrshFour): added comment,
5321         * (genRightShift): determined signedness from operand "left"
5322         instead of "result"
5323
5324 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/SDCCicode.c (geniCodeParms),
5327         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5328         function pointers, fixed function pointer bugs #861242 and #861896
5329
5330 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5331
5332         * device/include/c8051f000.h,
5333         * device/include/c8051f120.h,
5334         * device/include/c8051f300.h: added header files for Silicon
5335         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5336
5337 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5338
5339         * src/SDCCast.c (processParams): added new type flow and restructured
5340         (gatherAutoInit): added new type flow
5341         (addCast): cosmetic changes
5342         (getLeftResultType): added new type flow for array indices, patch
5343         provided by Stas, see FR #877103
5344         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5345         array index patch by Stas
5346         * src/SDCCast.h: added prototype getResultTypeFromType()
5347         * src/SDCCval.h,
5348         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5349         * src/pic/glue.c (pic14emitStaticSeg),
5350         * src/pic16/glue.c (pic16emitStaticSeg),
5351         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5352         for initialization of symbols
5353         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5354         * support/Util/SDCCerr.h:
5355         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5356         * .version: bumped version number to 2.3.8
5357         * device/include/Makefile.in (install),
5358         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5359         avoid warnings
5360
5361 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5362
5363         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5364         Slade Rich fixed an optimization bug
5365         * src/pic/pcodepeep.c,
5366         * src/pic/pcoderegs.c
5367         * doc/Makefile (install): added test for directory
5368
5369 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5370
5371         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5372         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5373         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5374         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5375         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5376         * as/mcs51/asexpr.c (term),
5377         * as/hc08/asexpr.c (term): fixed bug #887146
5378
5379 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5380
5381         * src/z80/gen.c (genMult): handle single byte result product
5382         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5383         DUMMY_READ_VOLATILE (fixed bug #886367)
5384
5385 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5386
5387         * support/regression/tests/libmullong.c: fixed logic, on little endian
5388         hosts we ended without a mullong_wrapper()
5389
5390 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5391
5392         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5393         virus/worm forged address usage.
5394
5395 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5396
5397         Fixed promotion, it should be done on AST level:
5398         * src/SDCCast.c (addCast): added promotion to int
5399         (decorateType): updated call to upCast()
5400         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5401         usualUnaryConversions()
5402
5403 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5404
5405         * support/regression/tests/literalop.c (mulWrapper): Added a
5406         wrapper to remove integer overflow warnings.
5407
5408         * support/regression/tests/float_trans.c: Made work on host.
5409
5410         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5411         location of sz80.
5412
5413         * support/regression/generate-cases.py (main): Changed from inline
5414         to a main method.
5415
5416         * doc/Makefile (install): Changed to depth first to get rid of
5417         missing directory install warning.
5418
5419         * as/Makefile (install-doc): Made work on Mac.
5420
5421 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5422
5423         * src/SDCCast.c: added an additional type flow in decorateType() of
5424         opposite direction, see feature request #860006; it's enabled at runtime
5425         by setting the environment variable SDCC_NEWTYPEFLOW
5426         * src/SDCCast.h: changed prototype of decorateType()
5427         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5428         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5429         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5430         see feature request #877103
5431         * src/SDCCval.c: updated call of decorateType()
5432         (valBitwise): fixed bug #882876
5433         (valMinus): added promotion
5434         (valLogicAndOr): result is unsigned
5435         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5436         * src/SDCCsymt.c (computeType),
5437         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5438         must not cause an unsigned operation
5439         * src/pic/glue (pic14emitRegularMap),
5440         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5441
5442 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5443
5444         * src/pic/pcode.c (PCodeID): commented out left over debug code
5445
5446 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5447
5448         * support/valdiag/tests/overflow.c: added shift tests
5449         * src/pic/device.c,
5450         * src/pic/gen.c,
5451         * src/pic/gen.h,
5452         * src/pic/glue.c,
5453         * src/pic/main.c,
5454         * src/pic/pcode.c,
5455         * src/pic/pcode.h,
5456         * src/pic/pcodepeep.c,
5457         * src/pic/pcoderegs.c,
5458         * src/pic/ralloc.c,
5459         * src/pic/ralloc.h: applied patch from Slade Rich;
5460         added support for multiple code pages and multiple RAM banks on the
5461         PIC 14 port. The ASM files now no longer simply assume all the
5462         code / RAM are in the same page / bank. This means the linker can
5463         safely allocate code/RAM of separate ASM files to different pages/banks.
5464         * doc/sdccman.lyx: added Slade's tips
5465         * src/mcs51/peeph.def: fixed bug #880768
5466
5467 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5468
5469         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5470         * src/SDCCast.c (decorateType): fixed bug #880197
5471
5472 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5473
5474         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5475         getopt.h.
5476
5477         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5478         strtof is not part of C89 and isn't included with Mac OS X.
5479
5480 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5483         shiftL2Left2Result): fixed bug #879326
5484         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5485         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5486         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5487         address fetch for clr instruction
5488         * device/lib/hc08/_mulint.c: created optimized assembly version
5489         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5490
5491 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5492
5493         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5494         proposed in FR #877103
5495
5496 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5497
5498         * src/SDCCval.c (cheapestVal): added missing checks
5499         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5500         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5501
5502 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5503
5504         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5505         equal operands
5506
5507 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5508
5509         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5510         loaded with the linker search paths (-L arguments) and the libraries
5511         to be linked with the current source (-l arguments). Changes
5512         currently will affect only the pic16 port.
5513         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5514         include path the port specific paths and port specific libraries,
5515         * gplink command now contains the $3 argument,
5516         * src/pic16/device.h,
5517         * src/pic16/device.c,: structure PIC_device is made public and
5518         renamed to PIC16_device, the same for variable Pics which is renamed
5519         to Pics16. Updated all references to them.
5520         * src/pic16/glue.c (pic16glue): corrected bug with code
5521         initialization which bypassed the variable initializations block.
5522
5523         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5524         COMPILE_FLAGS and added the --nostdinc option
5525
5526 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5527
5528         * device/include/mc68hc908jb8.h: Register defs for another member
5529         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5530
5531 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5532
5533         Documenting changes from previous commits.
5534         * configure.in (version 1.56),
5535         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5536         when generating output files to configure the pic16 library,
5537         but now I've commented it out, since gputils aren't installed in the
5538         SF compile farm, so library won't compile
5539
5540         * device/lib/Makefile.in (version 1.56): initially I've added in
5541         target 'all' the prerequestive 'model-pic16' so it compiled the
5542         pic16 library, but now I've commented it out for the same reasons
5543         above,
5544         * added targets 'model-pic16' and 'objects-pic16' to compile the
5545         library
5546         * added target 'port-specific-objects-pic16' to handle the
5547         generated libraries and copy them into the build/ directory
5548         * added target 'clean-intermediate-pic16' to clean intermediate
5549         files into pic16 directory
5550         * in target 'installdirs' added line to create directory pic16 in
5551         the installation path
5552
5553         * device/include/Makefile.in (version 1.11): in target 'install'
5554         added lines to copy all header files to installation path,
5555         * in target 'installdirs' added line create directory for pic16
5556         headers in the installation path
5557
5558 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5559
5560         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5561          a function call
5562
5563 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5564
5565         * configure,
5566         * device/lib/configure.in,
5567         * device/lib/configure: fixed for autoconf 2.57
5568
5569 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5570
5571         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5572         option so that it actually works. Made it specific to the z80, since
5573         the gbz80 doesn't have these kinds of I/O ports.
5574
5575 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5576
5577         * device/include/z180.h,
5578         * device/lib/_memcpy.c,
5579         * device/lib/_memmove.c,
5580         * device/lib/_mulint.c,
5581         * device/lib/ser_ir.c,
5582         * device/lib/ser_ir_cts_rts.c,
5583         * device/lib/_strcmp.c,
5584         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5585         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5586         portmode; added deprecation warning for bank= and protmode= forms.
5587         Also, guard against buffer overflow.
5588         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5589
5590 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5593         changed interrupt vector table generation to only emit declared vectors.
5594         * device/include/Makefile.in: added missing backslash
5595         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5596
5597 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5598
5599         Mainly changes to support compilation of the device libraries
5600         * src/pic16/device.c: stack is allocated via symbol and not
5601         via literal number. The symbol is placed in the corresponding
5602         position of the data ram
5603         * (pic16_dump_section): relocatable and absolute uninitialized
5604         data are now emitted in sorted order to reduce section naming,
5605         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5606         weren't marked as being in the access bank,
5607
5608 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5609
5610         Added portion of GNU PIC Library under the directory
5611         device/include/pic16 and device/lib/pic16. These files
5612         contain the declarations of SFRs for the PIC18Fxx2 devices.
5613         The directory is initialized via configure from toplevel.
5614
5615 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5616
5617         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5618         the spilllocations to be compared correctly
5619
5620 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5621
5622         * src/SDCCast.c (decorateType): fixed bug introduced today
5623
5624 2004-01-12  Borut Razem <borut.razem AT siol.net>
5625
5626         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5627         doc/sdccman.lyx: upper case pragmas are deprecated
5628
5629 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5630
5631         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5632         in simpler and even better code
5633
5634 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5635
5636         * src/SDCCicode.c (operandOperation): fixed bug #874819
5637         * src/SDCCast.c (decorateType): fixed
5638         char foo (unsigned long ul) { return ul > 0; }
5639
5640 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5641
5642         * doc/sdccman.lyx: Moved and added some sections, small changes
5643         all over. Telling LaTeX to be less strict with word spacing
5644         to better keep the right margin. Changed some notes about
5645         maintainance of the ports in section 3.2.1 - is it OK like this?
5646
5647 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5648
5649         SDCC source changes:
5650         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5651         convilong): modified to inform the pic16 port that builtin functions
5652         are external
5653
5654         PIC16 PORT specific changes:
5655         * src/pic16/device.c pic16_dump_equates() added,
5656         processor registers declared internally by the port are emitted in
5657         the translation as equates,
5658         * src/pic16/gen.c: inline code is passed unprocessed to the
5659         translation,
5660         * (pic16_popGetLit2): fnuction modified to take second operand as
5661         pCodeOp pointer and not as literal,
5662         * (popRegFromIdx): prefixed with pic16_,
5663         * (pic16_popCombine2): modified to receive already allocated pCode
5664         operands,
5665         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5666         * (genFunction): initializes local stack frame and pushes on stack
5667         all the registers used by this function,
5668         * (genEndFunction): restores all registers from stack and restores
5669         stack frame,
5670         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5671         improvements,
5672         * (pic16glue): changed the program startup sequence,
5673         * added new dbName code 'A' for functions placed in absolute section
5674         * src/pic16/main.c: added function attribute _naked,
5675         * added pragma 'code' to place a fnuction at an absolute address,
5676         * added command line arguments --debug-ralloc and --pcode-verbose,
5677         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5678         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5679         * (pic16_newpCodeOpLit2): modified to take the second operand as
5680         pCodeOp pointer,
5681         * (pic16_printpBlock): modified to emit each function in a separate
5682         section,
5683         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5684         UPPER for immediate operands,
5685         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5686         instruction,
5687         * src/pic16/peeph.def: all peepholes with movff are commented out,
5688         because there is a problem in the pcode peep optimizer,
5689         * src/pic16/ralloc.c: the register allocator can now reuse local
5690         function symbols for another function. This saves register usage.
5691         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5692
5693         Added file src/pic16/NOTES with information about program writing on
5694         the current port version.
5695
5696 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5697
5698         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5699         and peephole 252 (array access)
5700
5701 2004-01-09  Borut Razem <borut.razem AT siol.net>
5702
5703         * src/SDCCmain.c : fixed #872250: -l command line defined library
5704           files are scanned before standard library files
5705
5706 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5707
5708         * src/SDCCast.c (decorateType): fixed bug #874046
5709
5710 2004-01-09  Borut Razem <borut.razem AT siol.net>
5711
5712         * support/scripts/sdcc.nsi: remove previous installation
5713
5714 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5715
5716         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5717         bytes for last interrupt vector (mcs51)
5718         * sdcc.spec: fixed typo
5719
5720 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5723         gen51Code): more efficient parameter receive for --model-large
5724         ("bug" #845294)
5725
5726 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5727
5728         * src/ds390/main.c,
5729         * src/z80/main.c: added missed needLinkerScript flags (more than
5730         one port structure defined in these file)
5731         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5732         bug #795325
5733
5734 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5735
5736         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5737         * src/port.h: added flag needLinkerScript in port->linker
5738         structure to inform whether to create a .lnk file or not,
5739         * src/avr/main.c,
5740         * src/ds390/main.c,
5741         * src/hc08/main.c,
5742         * src/mcs51/main.c,
5743         * src/pic/main.c,
5744         * src/pic16/main.c,
5745         * src/xa51/main.c,
5746         * src/z80/main.c: changed appropriately to configure
5747         needLinkerScript flag
5748         * src/pic/gen.c,
5749         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5750         * src/pic/glue.c: added variable udata_section_name to
5751         override default uninitialized data segment definition for
5752         devices only with SHAREBANK memory (reported from Erik Epetrich)
5753         * (pic14emitOverlay): modified to emit a commented overlay segment
5754         directive when no overlay data exist
5755         * (picglue): modified to emit uninitialized data segment
5756         according to udata_section_name
5757         * src/pic/main.c (_pic14_parseOptions): added command line
5758         options --udata-section-name=[name] to override default
5759         udata definition name
5760         * modified _linkCmd and _asmCmd to include compiler passed
5761         arguments via -W option
5762         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5763         object file from '.rel' to '.o' in port->linker structure,
5764         changed size of fptr from 2 to 3 in port structure
5765
5766 2004-01-07  Borut Razem <borut.razem AT siol.net>
5767
5768         * support/scripts/sdcc.nsi: update PATH
5769         * support/scripts/sdcc.ico: craeted
5770
5771 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5772
5773         * device/include/Makefile.in: fix install
5774         * doc/Makefile: fix install
5775
5776 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5777
5778         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5779         in bug #860505
5780         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5781         how the function variable allocation summary is displayed; also
5782         include information about variables allocated to the overlay
5783         segment
5784
5785 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5786
5787         * as/mcs51/lkmain.c: Help about -Y option
5788         * as/mcs51/lkarea.c: Fixed gcc warnings
5789
5790 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5791
5792         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5793         fixed warning
5794         * support/valdiag/tests/overflow.c: added
5795         * src/SDCCast.c (decorateType),
5796         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5797         LEFT_OP (left shift)
5798
5799 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5800
5801         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5802         (default behaviour).
5803
5804 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5805
5806         A python script to validate compiler diagnostic messages. It can be
5807         used to verify that sdcc complains about bad c source code and
5808         gives a good location of the error.
5809         * support/valdiag/Makefile,
5810         * support/valdiag/valdiag.py,
5811         * support/valdiag/tests/*
5812
5813 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5814
5815         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5816         * src/SDCCsymt.c (newEnumType),
5817         * src/SDCCsymt.h
5818         * support/Util/SDCCerr.c,
5819         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5820         enum related bugs.
5821         * support/regression/tests/enum.c: added test for enum values that
5822         require at least 2 bytes of storage.
5823
5824 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5825
5826         * src/common.h: added ifndef/define/endif macros
5827         around the header file.
5828         Bug reported from Jesus Calvino-Fraga
5829
5830 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5831
5832         * sdcc.spec: updated
5833         * device/include/Makefile.in: don't install CVS directories
5834         * device/lib/Makefile.in: added removal of CVS directories after install
5835         * doc/Makefile: fixed install, added local_icons
5836         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5837         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5838         * src/ds390/gen.c (genRightShift): fixed bug #870788
5839         * src/SDCCast.c (decorateType): fixed bug #870781
5840
5841 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5842
5843         PIC16 port related changes:
5844         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5845         added variable stackPos,
5846
5847         * gen.c: genCall, assignResultValue: added support for
5848         pushing/retrieving function parameters to/from stack,
5849         genFunction,genEndFunction: setup stack frame for the
5850         generated function,
5851         genAddrOf: will be changed according to bug 863624
5852
5853         * added files genutils.c and genutils.h which contain gen*
5854         debugged and optimised functions extracted from gen.c
5855
5856         * glue.c: added variable 'externs' which holds extern symbols,
5857         pic16emitRegularMap: is modified to properly handle relocatable
5858          symbols under the new scheme,
5859         pic16createInterruptVect: is modified
5860         pic16printPublics: is modified to emit 'global' assembler directives,
5861         added pic16_printExterns to print extern symbols,
5862         pic16glue: initializes stack/frame pointer in the beginning of
5863         the assembly output. Temporary hack, will be corrected later,
5864         because gplink yet does not support stack and SDCC does not
5865         yet support a type of crt0.o object to create the final binary.
5866
5867         * Removed many lines that contain 8051 legacy code.
5868         * The code is finally placed under a 'code' directive.
5869         * Added port specific options.
5870
5871         * _process_pragma: simplified since now we do not need *special*
5872         include file to define SFR registers. But a separate header
5873         will be needed. This will be developed later.
5874         * _pic16_parseOptions: added, parses port specific options:
5875         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5876         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5877         --preplace-udata-with=
5878
5879         * _pic16_setDefaultOptions: modified to initialize section names,
5880         but hack is temporarly out of order since it needs improvement.
5881         * _pic16_genAssemblerPreamble: configuration words are emitted by
5882         their address instead of their name. This part is incomplete and
5883         supports only the 18Fxx2 devices. Other devices will emit an error
5884         during assembly since they do not contain the same set of config
5885         registers
5886         * _pic16_genIVT: is modified,
5887
5888         * pcode.c: added definitions for some hardware registers that are needed
5889         for stack support
5890         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5891         All PCI entries are updated. Now LFSR is supported.
5892         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5893         * added pic16_newpCodeOpLit2 to support instructions with
5894         two literal arguments
5895         * pic16_pCode2str: corrected code that emits assembler instructions
5896         with two literal operands and those that have an access bit modifier
5897         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5898         this fixes a bug which caused some labels to be lost, when an
5899         assembler directive was added, i.e. banksel,
5900         * pic16_FixRegisterBanking: improved logic that causes the insertion
5901         of bank switching,
5902         * InlineFunction: functions that are called once, are not any more
5903         inlined. This can be a port option in the future,
5904
5905         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5906
5907         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5908         hold the corresponding uninitialized symbols,
5909         * pic16_allocProcessorRegister: registers have explicit marked the
5910         accessBank field,
5911         * pic16_allocInternalRegister: registers are explicit marked as
5912         not used,
5913         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5914         processing list, so bit registers were lost,
5915         *
5916
5917         * ralloc.h: added field 'accessBank' and original symbol operand
5918         in register definition,
5919         * removed the field isMapped from register definition,
5920
5921         ** Several functions have been removed from various sources:
5922         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5923         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5924         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5925         pic16_assignRelocatableRegisters
5926
5927         ** others have been introduced:
5928         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5929         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5930
5931 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5932
5933         * support/scripts/inc2h.pl: changed definition of BIT_AT
5934         to emit 'sbit at' instead of 'bit at'. This was a request.
5935
5936         PIC16 port related preliminary changes:
5937         * gen.c: prefixed function popRegFromString with
5938         pic16_ and all references to it corrected
5939         * pcode.c: all pic16_pc_* hardware registers prefixed
5940         with underscore (_),
5941         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5942         * ralloc.c: newReg(): when register is REG_SFR then
5943         set address to rIdx,
5944         pic16_allocProcessorRegister(): marks register wasUsed=0
5945         pic16_writeUsedRegs(): added a call to assign processor
5946         registers via pic16_assignFixedRegisters
5947
5948 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5949
5950         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5951         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5952         variables in unused register banks.  Also the SSEG is placed
5953         wherever there is enough space for it, and IDATA can be anywhere
5954         in internal RAM.  For now compile using -Wl-Y[stack_size].
5955         The mem file is different for this option as well, since it
5956         makes no sense of talking about DSEG lenght.
5957
5958 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5959
5960         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5961         in certain cases, e.g. when ROM assignment, patch provided
5962         from Albert den Haan.
5963
5964 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5965
5966         Many signedness and type propagation fixes:
5967         * src/SDCCicode.c: made geniCodeCast() static
5968         replaced SPEC_ by IS_ (cosmetic)
5969         (operandOperation): fixed div and mod operation
5970         (usualBinaryConversions): added support for promotion of char
5971         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5972         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5973         (geniCodeAdd): an array index will stay unsigned, even if promoted
5974         from char to int
5975         (geniCodeArray): ditto
5976         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5977         * src/SDCCsymt.c (computeType): added more support for char;
5978         promotion of char is selectable by promoteCharToInt, fixed signedness
5979         for all cases
5980         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5981         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5982         * src/SDCCval (val*): replaced signedness calculation by
5983         computeType()
5984         rearranged if-branches (cosmetic)
5985         (valShift): added warning W_SHIFT_CHANGED
5986         (valCompare): fixed problem with different types
5987         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5988         * support/regression/tests/literalop.c: added many cases
5989         * support/regression/tests/ast_constant_folding.c: changed finally to
5990         'unsigned int'
5991         * .version: new year, new version: 2.3.7
5992         * src/SDCCmain.c (main): applied patch #866468
5993         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5994         provided by Scott Bronson
5995         * doc/sdccman.lyx: updated documentation for sdcdb
5996         updated and added chapter tips
5997
5998 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/SDCCsymt.h: missing from yesterday's commits
6001
6002 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6003
6004         * src/SDCC.y (struct_or_union_specifier),
6005         * support/Util/SDCCerr.c,
6006         * support/Util/SDCCerr.h: verify that struct & union tags are used
6007         as declared.
6008
6009 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCCglobl.h: missing from yesterday's commits
6012
6013 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6016         sft_attributes, struct_declaration, parameter_declaration,
6017         type_name, start_block, declaration_list),
6018         * src/SDCC.lex (check_type): support redefinition of typedef names
6019
6020 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6021
6022         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6023         aligned xdata arrays. Erik helped me with the if clause.
6024
6025 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6026
6027         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6028         warning
6029
6030 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6031
6032         * src/SDCCast.h,
6033         * src/SDCCast.c (newAst_),
6034         * src/SDCCicode.h,
6035         * src/SDCCicode.c (ast2iCode, newiCode),
6036         * src/SDCCglobl.h,
6037         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6038         expr, statement, expression_statement, selection_statement,
6039         iteration_statement, expr_opt, jump_statement): foundation for tracking
6040         sequence points
6041         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6042         point code too)
6043
6044 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * support/Util/SDCCerr.c,
6047         * src/SDCCast.h,
6048         * src/SDCCast.c (createCase, createDefault, decorateType),
6049         * src/SDCClabel.c (labelUnreach),
6050         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6051         to error messages.
6052         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6053         (with thanks to Stas Sergeev)
6054         * device/include/time.h,
6055         * device/lib/time.c (CheckTime): suppress unreachable code warning
6056
6057 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/SDCCast.c (createIvalCharPtr),
6060         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6061         bug #753752)
6062         * support/regression/tests/nullstring.c: tests for these two bugs
6063
6064 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * support/Util/SDCCerr.h,
6067         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6068         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6069         about storage class and 'at' used inside struct or union
6070         * src/SDCCBBlock.c (iCodeFromeBBlock),
6071         * src/SDCCcse.c (ifxOptimize),
6072         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6073         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6074         printIval, emitStaticSeg, emitOverlay),
6075         * src/SDCClabel.c (deleteIfx),
6076         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6077         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6078         gatherAutoInit, processParms),
6079         * support/Util/SDCCerr.h,
6080         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6081         reporting for post-parse errors.
6082
6083 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6086         implicit casts via union; they don't work on big endian systems
6087         (possible fix for bug #861138)
6088
6089 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6090
6091         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6092         * src/mcs51/main.c: fixed the fix for bug #737001
6093
6094 2003-12-15  Borut Razem <borut.razem AT siol.net>
6095
6096         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6097
6098 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6099
6100         * support/makebin/makebin.c: put output in binary mode
6101
6102 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6103
6104         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6105         xdata and data memory on startup. Set the environment variable
6106         SDCC_NOGENRAMCLEAR to disable this.
6107         * src/mcs51/peephole.def,
6108         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6109         (allows non-interrupt and interrupt code to safely compete for a resource
6110         without the non-interrupt code having to disable interrupts)
6111
6112 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6113
6114         * src/SDCCicode.c (geniCodeAdd),
6115         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6116         with valFromType if type might be a pointer and host is big endian).
6117         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6118         types, not just integer types.
6119         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6120         multiply defined with mismatching "at" address.
6121
6122 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6123
6124         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6125         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6126         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6127         with embedded nulls (fixed bug #753752)
6128
6129 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6130
6131         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6132         Apparently this did not see much testing (endless loop)
6133
6134 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6137
6138 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6139
6140         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6141         gracefully handle NULL memmap pointers
6142
6143 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6146         instead of deleting the iCode when an operand is volatile
6147         * src/z80/gen.c (genDummyRead),
6148         * src/mcs51/gen.c (genDummyRead),
6149         * src/ds390/gen.c (genDummyRead),
6150         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6151         not just IC_RIGHT
6152         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6153         * src/SDCC.y: fixed bug #850420
6154
6155 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         Applied z80 i/o port patch from Peter Townson and fixed some operators
6158         to better handle operands in A register.
6159         * device/include/z180.h
6160         * src/SDCC.y
6161         * src/SDCCglue.c
6162         * src/z80/gen.c
6163         * src/z80/gen.h
6164         * src/z80/main.c
6165         * src/z80/peeph-z80.def
6166         * src/z80/peeph.def
6167         * src/z80/z80.h
6168
6169 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6172
6173 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * device/lib/hc08/_mullong.c: Removed extra #endif
6176
6177 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6178
6179         * sim/ucsim/hc08.src/inst.cc,
6180         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6181         carries from x to h
6182         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6183         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6184         * device/include/stdarg.h: fixed varargs for hc08
6185         * device/lib/Makefile.in,
6186         * device/lib/hc08/Makefile,
6187         * device/lib/hc08/_mulint.c,
6188         * device/lib/hc08/_mullong.c: fixed some endian problems
6189
6190 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6191
6192         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6193         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6194         * device/lib/_gptrget.c,
6195         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6196
6197 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6198
6199         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6200         * src/SDCCast.c (astErrors): fixed bug #846007
6201         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6202
6203 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6204
6205         * src/SDCCast.c (decorateType): disabled a transformation I added in
6206         revision 1.188 (access to fields of a structure at an absolute address);
6207         it breaks with bitfields, extern declarations, and gcse analysis.
6208         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6209         could be assigned through a pointer, so don't complain.
6210         * src/SDCCast.c (astErrors),
6211         * src/SDCCast.h,
6212         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6213
6214 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6215
6216         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6217         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6218         output of __config directives, since gpasm now supports them
6219         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6220         pre-processor macro, i.e. -DMCU=p18f452
6221         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6222         and modified to handle 'cast' icode similarly to '=' icode
6223         * src/pic16/device.h (typedef struct PIC_device): added field
6224         'extMIface' to indicate that chip has external memory interface
6225         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6226         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6227         18F8720
6228
6229 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6230
6231         * src/SDCC.y (pointer): fixed bug #846006
6232         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6233         * src/SDCCast.c (decorateType): fixed bug #846009
6234         * src/ds390/peeph.def,
6235         * src/ds390/gen.c (genAnd, genOr),
6236         * src/mcs51/peeph.def,
6237         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6238
6239 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6240
6241         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6242         * src/SDCCdflow.c
6243         * src/SDCCcse.c
6244         * src/SDCCcse.h
6245         * src/SDCCBBlock.h
6246         * src/SDCCBBlock.c
6247
6248 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6249
6250         fixed bug #845089
6251         * src/SDCCbitv.h,
6252         * src/SDCCbitv.c: added function to free a bitvector
6253         * src/SDCClrange.h,
6254         * src/SDCClrange.c: added function to recompute the liveranges
6255         * src/avr/ralloc.c,
6256         * src/ds390/ralloc.c,
6257         * src/hc08/ralloc.c,
6258         * src/mcs51/ralloc.c,
6259         * src/pic/ralloc.c,
6260         * src/pic16/ralloc.c,
6261         * src/xa51/ralloc.c,
6262         * src/z80/ralloc.c: recompute the liveranges after register packing
6263
6264 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6265
6266         * src/SDCCloop.c (newInduction): fixed bug #845630
6267
6268 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6271         inadvertantly left behind from my 2003-11-12 change
6272
6273 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6274
6275         Updated headers I neglected to commit yesterday.
6276         * src/SDCClrange.h,
6277         * src/SDCCicode.h
6278
6279 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6282         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6283         * src/SDCCopt.c (eBBlockFromiCode),
6284         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6285         the creation of the key hash table from the sequencing so it can be used
6286         earlier (for some GCSE bug fixes still pending)
6287
6288 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6289
6290         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6291         * support/regression/tests/addsub.c: testing genPlus shortcut
6292
6293 2003-11-15  Borut Razem <borut.razem AT siol.net>
6294
6295         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6296
6297 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6298
6299         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6300         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6301         ordering is immaterial.
6302         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6303
6304 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6307         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6308         (SIGSEV) of bug #840381
6309         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6310         unlink new file before rename if new and old filenames are the same)
6311
6312 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6313
6314         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6315         uninitialized variables) for the mcs51. Set environment variable
6316         SDCC_GENRAMCLEAR to test.
6317         xdata initialization slightly shorter
6318
6319 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6320
6321         * src/SDCCsymt.h,
6322         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6323         #838241 & 780691 (basicly the same bug)
6324         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6325         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6326
6327 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6328
6329         * src/SDCCmain.c (linkEdit): "fix" #834252
6330
6331 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6334         * src/SDCCast.h,
6335         * src/SDCC.y: fixed bug #819403
6336
6337 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6338
6339         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6340         the reentrant attribute.
6341         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6342         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6343         simulation
6344         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6345         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6346         erroneously reduced to a literal.
6347         * src/hc08/ralloc.c (packRegisters, rematStr),
6348         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6349         some cases
6350
6351 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6352
6353         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6354         * doc/sdccman.lyx: changed from 'article' to 'book'
6355         * doc/Makefile: readded test_suite_spec and cdbfileformat
6356
6357 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6358
6359         * device/include/stdlib.h: include malloc.h to comply with ANSI
6360         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6361
6362 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6363
6364         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6365         * doc/clean.mk: also remove *.out files
6366         * doc/sdccman.lyx: some additions, larger top/bottom margins
6367
6368 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6369
6370         * src/SDCC.y: fixed bug #837365
6371         * support/regression/tests/bitopcse.c
6372         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6373         a symbol (might be valop instead)
6374         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6375         * device/lib/clean.mk: added hc08 to the cleaning list
6376
6377 2003-11-04  Borut Razem <borut.razem AT siol.net>
6378
6379         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6380           made 2003-11-04
6381         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6382           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6383           malloc is declared in standard stdlib.h
6384
6385 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         * device/lib/hc08/Makefile: need to clean .rel not .o files
6388         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6389
6390 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * src/port.h,
6393         * src/hc08/main.c,
6394         * src/mcs51/main.c,
6395         * src/ds390/main.c,
6396         * src/z80/main.c,
6397         * src/avr/main.c,
6398         * src/pic/main.c,
6399         * src/pic16/main.c,
6400         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6401         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6402         tests (which uses the port's oclsExpense function)
6403         * src/SDCC.y,
6404         * src/SDCCast.c,
6405         * src/SDCCicode.c,
6406         * src/hc08/gen.c,
6407         * src/ds390/gen.c,
6408         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6409
6410 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6411
6412         * src/SDCCcse.c (ifxOptimize),
6413         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6414         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6415         deleting the IFX iCode.
6416         * src/hc08/ralloc.c: reduced unneeded slocs
6417         * src/hc08/gen.c: fixed bug in asmopToBoolean
6418
6419 2003-11-04  Borut Razem <borut.razem AT siol.net>
6420
6421         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6422           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6423           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6424           transferred to configure
6425
6426 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6427
6428         Use headers defined in the C[++] standards:
6429         * sim/ucsim/gui.src/serio.src/fileio.cc
6430         * sim/ucsim/gui.src/serio.src/frontend.cc
6431         * sim/ucsim/gui.src/serio.src/main.cc
6432         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6433         * support/Util/NewAlloc.c
6434         * as/hc08/lklibr.c
6435         * as/mcs51/lklibr.c
6436         * as/z80/aslist.c
6437         * as/z80/assym.c
6438
6439 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6440
6441         * Added MSVC projects for hc08 assembler and linker:
6442         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6443         /as/hc08/link_hc08.dsp
6444
6445 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6446
6447         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6448
6449 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6450
6451         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6452
6453 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6454
6455         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6456
6457 2003-10-31  Borut Razem <borut.razem AT siol.net>
6458
6459         * support/cpp2/cpplib.h,
6460           support/cpp2/cpplib.c,
6461           support/cpp2/cpplex.c,
6462           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6463           to switch _asm block preprocessing on / off. Default is
6464           #pragma preproc_asm +
6465
6466 2003-10-31  Borut Razem <borut.razem AT siol.net>
6467
6468         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6469           when outputting comment blocks (when executed with -C option) and
6470           _asm (SDCPP specific) blocks
6471
6472 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6473
6474         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6475
6476 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6477
6478         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6479
6480 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6481
6482         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6483         * src/SDCCast.c (decorateType): fixed bug #832664
6484
6485 2003-10-31  Borut Razem <borut.razem AT siol.net>
6486
6487         * support\cpp2\cpplex.c: fixed for SDCPP:
6488           comments(when executed with -C option) and _asm blocks
6489           were included even if they where in skipped #if block.
6490           Applied solution from GCC cpp 3.3.2
6491
6492 2003-10-31  Borut Razem <borut.razem AT siol.net>
6493
6494         * src/SDCC.lex: sdcc now understands both formats:
6495           '# <line_number> <file_name>' and
6496           '#line <line_number> <file_name>'
6497         * support/cpp2/cppmain.c: sdcpp now generates the standard
6498           '# <line_number> <file_name>' instead of former
6499           '#line <line_number> <file_name>'
6500
6501 2003-10-30  Borut Razem <borut.razem AT siol.net>
6502
6503         * support/cpp2/cpphash.h,
6504         * support/cpp2/cpplib.h
6505         * support/cpp2/cpplex.c,
6506         * support/cpp2/cppmain.c,
6507         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6508
6509 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6510
6511         Fixed a number of problems revealed by bug #827883.
6512         * src/SDCCloop.c (loopInvariants): Spill location of the
6513         result operand should be recomputed if extracted from
6514         a loop. Also, don't extract assignments of an iTemp
6515         from a literal.
6516         * src/SDCCast.c (isConformingBody): loop reversal should
6517         not occur if the control variable is involved with a
6518         relational operator.
6519
6520 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6521
6522         * .version: bumped to 2.3.6 to reflect the big improvements
6523         made by Erik and Klaus. Thanks!
6524
6525 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6526
6527         Replaced the livrange code.
6528         * src/SDCClrange.c: added new LR code
6529         * src/SDCCloop.c,
6530         * src/SDCCBBlock.h: removed remainig parts from old LR code
6531         * src/ds390/ralloc.c,
6532         * src/ds390/gen.c: minor fixes to make it work with new code
6533
6534 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6535
6536         * as/hc08/asm.h,
6537         * as/hc08/lkrloc.c,
6538         * src/hc08/gen.c,
6539         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6540         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6541         (tweaked fix for bug #818696)
6542
6543 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6546
6547 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6548
6549         * src/SDCCmain.c,
6550         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6551         * src/mcs51/gen.c (gencjneshort),
6552         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6553         more efficient (per Scott Bronson's suggestion)
6554
6555 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6556
6557         Extended the semantics of the critical keyword to include
6558         individual statements. See RFE #827755 and #799831
6559         * src/SDCC.y
6560         * src/SDCCicode.c
6561         * src/SDCCopt.c
6562         * src/SDCCast.c
6563         * support/Util/SDCCerr.c
6564         * support/Util/SDCCerr.h
6565         * src/mcs51/gen.c
6566         * src/ds390/gen.c
6567         * src/hc08/gen.c
6568
6569 2003-10-19  Borut Razem <borut.razem AT siol.net>
6570
6571         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6572
6573 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6574
6575         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6576         Fixed bug #818696
6577         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6578         and predecrement operand is displayed
6579
6580 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6581
6582         * src/SDCCval.c (valMinus): fixed bug #826041
6583
6584 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6585
6586         Some hc08 related updates that I missed earlier
6587         * sim/ucsim/stypes.h
6588         * support/regression/ports/hc08/spec.mk
6589
6590 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6591
6592         New target "hc08" for the Motorola 68hc08 family of micros
6593
6594         * configure
6595         * configure.in
6596         * Makefile
6597         * src/hc08/*
6598         * src/SDCCmain.c
6599         * src/port.h
6600         * sim/ucsim/hc08.src/*
6601         * sim/ucsim/configure.in
6602         * src/ucsim/configure
6603         * sim/ucsim/packages_in.mk
6604         * as/hc08/*
6605         * as/Makefile
6606         * device/include/mc68hc908qy.h
6607         * device/lib/hc08/*
6608         * device/lib/Makefile.in
6609         * support/regression/ports/hc08/*
6610         * support/regression/Makefile
6611
6612 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6615         regression test
6616         * src/ds390/gen.c (genCast): fixed bug #821957
6617
6618 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6619
6620         * device/lib/logf.c: "fixed" overlay bug
6621         * support/regression/ports/host/spec.mk: added m library
6622         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6623         * support/regression/tests/float_trans: added (for Eric)
6624
6625 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6626
6627         * src/mcs51/gen.c (genCpl): fixed bug
6628         http://sf.net/mailarchive/message.php?msg_id=6263915
6629
6630 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6631
6632         * src/SDCCast.c (decorateType): added extended constant folding
6633         * src/SDCCsymt.c (computeType): cleanup
6634         * src/SDCCval.c (valShift): minor optimization
6635         * support/regression/tests/ast_constant_folding.c: added
6636
6637 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/SDCCmain.c: removed some unintended changes
6640
6641 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6642
6643         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6644         * src/z80/gen.c: fixed part of bug #817589
6645         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6646
6647 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6648
6649         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6650         * src/SDCCcflow.c
6651         * src/SDCCcse.c
6652         * src/SDCCdflow.c
6653         * src/SDCClabel.c
6654         * src/SDCClrange.c
6655         * src/SDCCmem.c
6656         * src/SDCCopt.c
6657         * src/SDCCpeeph.c
6658         * src/SDCCset.c
6659         * src/avr/ralloc.c
6660         * src/ds390/ralloc.c
6661         * src/izt/ralloc.c
6662         * src/mcs51/ralloc.c
6663         * src/pic/ralloc.c
6664         * src/pic16/ralloc.c
6665         * src/xa51/ralloc.c
6666         * src/z80/ralloc.c
6667         * src/z80/gen.c: removed unused label "release:"
6668
6669 2003-10-06  Borut Razem <borut.razem AT siol.net>
6670
6671         * src/SDCC.lex: removed definition of unused variables
6672           save_optimize and save_options
6673
6674 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6675
6676         * clean.mk: removed '=' in "-maxdepth=1"
6677         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6678         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6679
6680 2003-10-06  Borut Razem <borut.razem AT siol.net>
6681
6682         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6683           my_unput() replaced by unput()
6684
6685 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6686
6687         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6688         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6689         type-punned pointer will break strict-aliasing rules"
6690         Old LR behaviour is again default; Klaus' LR can be choosen by
6691         defining the environment variable LRKLAUS
6692         * src/SDCCBBlock.h
6693         * src/SDCCloop.c
6694         * src/SDCClrange.c
6695         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6696         * clean.mk: fixed removal of files in bin/CVS/
6697         * device/lib/clean.mk: fixed removal of directories small and large
6698         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6699         * src/SDCCicode.c,
6700         * src/SDCCval.c: removed superflous test for pedantic
6701
6702 2003-10-05  Borut Razem <borut.razem AT siol.net>
6703
6704         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6705           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6706           message "unmatched #pragma SAVE and #pragma RESTORE"
6707
6708 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6709
6710         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6711           assembly, critical functions, atomic, nojtbound)
6712
6713 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6714
6715         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6716         * src/SDCCBBlock.h
6717         * src/SDCCloop.c
6718         * src/SDCCloop.h
6719         * src/SDCClrange.c
6720
6721 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * src/z80/gen.h,
6724         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6725         * src/mcs51/gen.h
6726         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6727         * src/ds390/gen.h
6728         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6729         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6730         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6731
6732 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6733
6734         * src/z80/gen.c (genRet): fixed bug #524753
6735         * src/z80/gen.c (genCast): fixed internal error on cast from
6736         pointer to long
6737         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6738         fix for bug #477835 to the z80
6739         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6740         for tracking iCodes in the peephole optimizer for z80
6741
6742 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6743
6744         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6745         the other part of bug #814548
6746         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6747
6748 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6749
6750         * src/SDCCcse.c: fixed part of bug #814548
6751
6752 2003-09-28  Borut Razem <borut.razem AT siol.net>
6753
6754         * src/asm.c: rewrite of printILine() to use temporary file instead
6755           a pipe
6756         * src/xa51/main.c: commented out declaration of int rewinds
6757
6758 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6759
6760         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6761
6762 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6763
6764         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6765         * src/asm.c (printILine): Fixed bug #811015
6766
6767 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6768
6769         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6770         freeing.
6771
6772 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6773
6774         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6775         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6776         to correctly handle general case of AOP_PAIRPTR
6777         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6778
6779 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6780
6781         * src/mcs51/ralloc.c (fillGaps),
6782         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6783         register positioning bug)
6784
6785 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6786
6787         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6788
6789 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6790
6791         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6792         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6793         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6794         (ralloc doesn't intentionally do this now, but perhaps later)
6795         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6796         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6797         register positioning bugs (Fixed bug #762602 and #795325)
6798         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6799         (Fixed bug #808779)
6800         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6801         lines that --i-code-in-asm generates
6802
6803 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6804
6805         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6806         trying to fclose a FILE* that was already closed.
6807
6808 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6811         of const struct should be treated as if const themselves)
6812
6813 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6814
6815         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6816
6817 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6818
6819         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6820         Unix (/n) and DOS (/r/n) line terminations.
6821
6822 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6823
6824         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6825         bug #613775
6826
6827 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * src/mcs51/gen.c (genFunction, genEndFunction),
6830         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6831         and restore of EA so that stack offsets to parameters are
6832         correct when using both critical and reentrant/stack-auto.
6833         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6834         size (can be triggered in error if sloc is shared between
6835         different sized objects)
6836         * device/include/float.h: fixed macros to explicitly use
6837         unsigned long where needed
6838
6839 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6840
6841         Feature req. 799831: added code to allow nesting of critical functions
6842         * src/mcs51/gen.c (genFunction, genEndFunction)
6843         * src/ds390/gen.c (genFunction, genEndFunction)
6844
6845 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6846
6847         * src/SDCCsymt.c (sclsFromPtr),
6848         * src/SDCCsymt.h,
6849         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6850         support for standard C idiom of memory mapped variables; for
6851         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6852         to xdata int at 0x1234 tempvar = 1.
6853         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6854         provided by Akiya ISHIDA
6855
6856 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6857
6858         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6859         * src/SDCCval.c (constVal): added reduction from int to char
6860         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6861         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6862         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6863         to ignore the sign
6864         * support/regression/tests/shifts.c: fixed
6865
6866 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6867
6868         * src/z80/gen.c (genXor): Fixed bug #805445
6869
6870 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6871
6872         Fixed bug #621531 (const & volatile confusion in the type chain).
6873         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6874         refer to the const or volatile state of the pointer itself.
6875
6876         * src/SDCCast.c
6877         * src/SDCCglue.c
6878         * src/SDCCicode.c
6879         * src/SDCCsymt.c
6880         * src/SDCCval.c
6881         * src/SDCC.y
6882         * src/SDCCsymt.h
6883         * src/pic/gen.c
6884         * src/pic/ralloc.c
6885         * src/pic16/gen.c
6886         * src/pic16/ralloc.c
6887         * support/regression/tests/const.c
6888
6889 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6890
6891         When checking for duplicated modules, use absolute paths
6892         instead of relative paths.  Files changed:
6893
6894         * as/mcs51/lklib.c
6895         * link/z80/lklib.c
6896
6897 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6898
6899         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6900
6901 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6902
6903         * device/include/string.h: added size_t typedef, changed
6904         prototypes to use size_t, eliminated separate reentrant and
6905         non-reentrant declarations, added _memmove declaration
6906         * device/lib/_memcpy.c: changed to use size_t instead of int,
6907         changed /4 to >>2 to avoid division library call
6908         * device/lib/_memcmp.c,
6909         * device/lib/_memset.c,
6910         * device/lib/_strncat.c,
6911         * device/lib/_strncpy.c,
6912         * device/lib/_strncmp.c: changed to use size_t instead of int
6913         * device/lib/_memmove.c: new file (fixed bug #772294)
6914         * device/lib/Makefile.in: added _memmove.c
6915         * device/lib/z80/asm_strings.s: fixed bug #772290
6916         * support/regression/tests/bitfields.c: attempt to fix host assertion
6917         failure on amd64-unknown-linux2.2
6918
6919 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6920
6921         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6922         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6923         * as/z80/asmain.c (main): fixed bug #801766
6924
6925 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6928         compilers
6929
6930 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6931
6932         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6933         reported in bug #800609
6934
6935 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6936
6937         * Top header beautifications in src/pic16 directory:
6938           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6939           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6940           pcoderegs.h, ralloc.c, ralloc.h
6941         * main.c: added top header and GPL license notice
6942         * pcode.c: fixed the if-conditional warning
6943
6944 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6945
6946         * device/lib/_mullong.c: replaced int by short for gcc
6947
6948 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6949
6950         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6951         and JUMPTABLE iCodes properly now (worked by accident before)
6952         * src/mcs51/gen.c (leftRightUseAcc),
6953         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6954         iCode properly now. Use getSize instead of nRegs since a & b
6955         aren't part of the nRegs tally.
6956
6957 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6958
6959         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6960         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6961           before instructions that use the _STATUS register
6962
6963 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6964
6965         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6966         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6967         fetching of the pointer
6968         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6969         copied from genNearPointerSet()
6970         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6971         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6972         If they pop r0/r1 they must be called in the opposite order than aopOp().
6973         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6974         (resp. --stack-auto), prepared for --xstack
6975
6976 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6977
6978         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6979
6980 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6981
6982         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6983         these ports have their own __sdcc_external_start()
6984
6985 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6986
6987         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6988         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6989         type for bits was changed. It resulted in bit variables becoming
6990         global, which is not permitted in PIC 14 assembly output.
6991
6992 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6993
6994         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6995
6996 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6997
6998         Z80 and MCS51 linkers complaint if a public symbol is defined
6999         in more than one library module:
7000
7001         * as/mcs51/lklib.c
7002         * link/z80/lklib.c
7003         * as/mcs51/Makefile.in
7004
7005 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7006
7007         A few small changes that speed up the peephole optimizer.
7008
7009         * src/SDCCpeeph.c
7010
7011 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7012
7013         Try to make the peephole optimizer smarter by maintaining
7014         an association between the assembly source code and the
7015         iCodes that originated them. Put this information to use
7016         with a new peephole rule condition "notVolatile" so that
7017         the rules can be aggressive yet still safe.
7018
7019         * src/SDCCpeeph.c
7020         * src/SDCCpeeph.h
7021         * src/mcs51/gen.c
7022         * src/mcs51/peeph.def
7023
7024 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7025
7026         Fixed bug #741761
7027
7028         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7029         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7030         if the left or right operand symbols have the accuse flag set.
7031
7032 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7033
7034         Changed the type of the result of the ! (NOT) operator to char;
7035         previously it returned the same type as the source. This allows
7036         us to eliminate all the genFloatNot functions (all of its target
7037         implementations were very buggy) since !float can use the same
7038         code as !long now.
7039
7040         * src/SDCCicode.c (ast2iCode): ! returns char
7041         * src/mcs51/gen.c (genNot, genNotFloat),
7042         * src/ds390/gen.c (genNot, genNotFloat),
7043         * src/z80/gen.c (genNot, genNotFloat),
7044         * src/pic/gen.c (genNot, genNotFloat),
7045         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7046
7047 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7048
7049         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7050         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7051            during interrupts. Ensure WSAVE is located at a shared bank address.
7052         2. Fixed page selection in some places
7053         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7054            the registers name strings.
7055         4. Fixed "signed / unsigned compare" compiler warnings.
7056         5. The PIC port manages its own allocation of the general purpose
7057            registers, but makes no attempt to reuse them. As a result when
7058            compiling it soon runs out of general purpose registers. Some
7059            additional code was added to the files pcode.c and device.c to walk
7060            through the function call tree and rename the registers so that they
7061            get reused.
7062
7063         * src/pic/device.c
7064         * src/pic/gen.c
7065         * src/pic/glue.c
7066         * src/pic/pcode.c
7067         * src/pic/pcode.h
7068         * src/pic/ralloc.c
7069         * src/pic/ralloc.h
7070         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7071         genPlus() & genMinus() when the result is the same as left or right
7072
7073 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7074
7075         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7076
7077 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7078
7079         Made bitfield a distinct type from bit so that bitfields
7080         convert as per ANSI C and bits retain their traditional
7081         boolean style behaviour. Implemented bitfield support in
7082         the z80 port.
7083
7084         * src/SDCCsymt.h,
7085         * src/SDCCsymt.c,
7086         * src/SDCCast.c,
7087         * src/cdbFile.c,
7088         * src/mcs51/gen.c,
7089         * src/ds390/gen.c: bit v bitfield split
7090         * src/z80/gen.c: New support for bitfields
7091         * support/regression/tests/bitfields.c: reenabled z80,
7092         added more tests
7093
7094 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7095
7096         Rules 246.x, 247.x relate to bitfields, the others speed up
7097         access to xdata mapped I/O devices.
7098
7099         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7100
7101 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7102
7103         Cleaned up genPackBits and genUnpackBits and added two helper
7104         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7105         for literal assignments in genPackBits (thanks to Frieder for
7106         reminding me).
7107
7108         * src/mcs51/gen.c
7109         * src/ds390/gen.c
7110
7111 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7112
7113         Fixed bug #748310 (pointer to function type mishandled when the
7114         function name is omitted). Also fixed a SIGSEGV when a function
7115         attribute (reentrant, etc) is used on a non-function or on a
7116         function but misplaced before the parameter list.
7117
7118         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7119         bug #748310
7120         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7121         * support/Util/SDCCerr.h,
7122         * support/Util/SDCCerr.c: Added func attr misuse error msg
7123
7124 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7125
7126         Fixed bug #787649 by anonymous
7127         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7128         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7129
7130 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7131
7132         Fixed numerous bitfield problems.
7133
7134         * src/SDCC.y: More bitfield related error checking
7135         * src/SDCCsymt.h,
7136         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7137         * support/Util/SDCCerr.h,
7138         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7139         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7140         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7141         * support/regression/tests/bitfields.c: tests added
7142
7143 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7144
7145         Made the constant following the "interrupt" keyword optional. If
7146         omitted, the function will not automatically be given an entry
7147         in the interrupt vector table (similar to #pragma NOIV, but
7148         less syntacticly kludgy). The interrupt number is also now
7149         range checked. Also fixed a bug in the high order bit example
7150         in the manual.
7151
7152         * src/SDCC.y
7153         * src/SDCCmem.c
7154         * src/SDCCglue.c
7155         * src/SDCCsymt.h
7156         * support/Util/SDCCerr.c
7157         * support/Util/SDCCerr.h
7158         * doc/sdccman.lyx
7159
7160 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7163         * src/SDCCicode.c (operandOperation): rewritten some ops
7164         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7165         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7166         other type
7167         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7168         be re-activated by defining REDUCE_LITERALS)
7169         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7170         unsigned, but are signed by default
7171         * src/SDCCval.c (constVal): rearranged
7172         * src/SDCCval.c (valMod): preliminary fix
7173         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7174         * support/regression/literalop.c: added, work in progress
7175
7176 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7177
7178         Generate warnings for useless declarations like "char data;"
7179         that don't do what new users expect.
7180
7181         * src/SDCC.y
7182         * support/Util/SDCCerr.h
7183         * support/Util/SDCCerr.c
7184
7185 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7186
7187         * src/SDCCval.c (valMult): fix overflow detection of negative int
7188
7189 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7190
7191         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7192
7193         Changes to support big endian targets:
7194
7195         * src/ports.h
7196         * src/SDCCglue.c
7197         * src/avr/main.c
7198         * src/ds390/main.c
7199         * src/izt/i186.c
7200         * src/mcs51/main.c
7201         * src/pic/main.c
7202         * src/pic16/main.c
7203         * src/xa51/main.c
7204         * src/z80/main.c
7205
7206 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7207
7208         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7209         * device/lib/time.c: fixed warning "integer overflow in expression"
7210
7211 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7212
7213         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7214         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7215         constants are unsigned; added recognition of "u" flag for unsigned
7216         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7217         * src/SDCCval.c (valDiv, valMod): fixed signdness
7218         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7219         signedness of modulo, left and right shift
7220         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7221         * support/Util/SDCCerr.h: added warning W_INT_OVL
7222         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7223         * src/SDCCast.c (ast_print): improved output of constants
7224
7225 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7226
7227         Fixed some warnings when building with MSVC:
7228
7229         * as\mcs51\asdata.c
7230         * as\z80\asdata.c
7231         * as\mcs51\asm.h
7232         * as\z80\asm.h
7233         * link\z80\aslink.h
7234         * link\z80\lkdata.c
7235         * link\z80\lkeval.c
7236         * link\z80\lkgb.c
7237         * link\z80\lkihx.c
7238         * link\z80\lks19.c
7239         * link\z80\lksym.c
7240         * support\cpp2\cpplib.c
7241         * src\ds390\gen.c
7242         * src\mcs51\gen.c
7243
7244 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7245
7246         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7247
7248 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7249
7250         * support\librarian\clean.mk: Do not remove Makefile.
7251         * support\librarian\Makefile: added.
7252
7253 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7254
7255         Added librarian to MSVC build:
7256         * all.dsp
7257         * sdcc.dsw
7258         * support\librarian\librarian.dsp
7259
7260         'configure' not needed for librarian, removed:
7261         * support\librarian\configure
7262         * support\librarian\configure.in
7263         * support\librarian\config_in.h
7264         * support\librarian\Makefile.in
7265
7266         Hopefully these ones built the librarian and the rest of sdcc properly:
7267         * Makefile
7268         * Makefile.common.in
7269
7270         Messed up 'configure', so revert to previous version:
7271         * configure
7272         * configure.in
7273
7274 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7275
7276         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7277         there, while the mantissa of a double is "only" 53 bits wide.
7278
7279 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7280
7281         Adding sdcclib to the build.  MSVC project coming soon.
7282         Files added/changed:
7283
7284         * support\librarian\clean.mk
7285         * support\librarian\configure
7286         * support\librarian\configure.in
7287         * support\librarian\config_in.h
7288         * support\librarian\Makefile.bcc
7289         * support\librarian\Makefile.in
7290         * support\librarian\sdcclib.c
7291         * Makefile.bcc
7292         * Makefile
7293         * Makefile.common.in
7294         * configure
7295         * configure.in
7296
7297 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7298
7299         Linker now complaints if linked modules have conflicting options, for
7300         example, one compiled using --model-large and another one compiled with
7301         --model-small.  The following files were modified:
7302
7303         * as\mcs51\asdata.c
7304         * as\mcs51\aslink.h
7305         * as\mcs51\asm.h
7306         * as\mcs51\asmain.c
7307         * as\mcs51\asout.c
7308         * as\mcs51\i51pst.c
7309         * as\mcs51\lkdata.c
7310         * as\mcs51\lklibr.c
7311         * as\mcs51\lkmain.c
7312         * as\z80\asdata.c
7313         * as\z80\asm.h
7314         * as\z80\asmain.c
7315         * as\z80\asout.c
7316         * as\z80\z80pst.c
7317         * link\z80\aslink.h
7318         * link\z80\lkdata.c
7319         * link\z80\lklibr.c
7320         * link\z80\lkmain.c
7321         * src\SDCCglue.c
7322
7323 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7324
7325         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7326         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7327
7328 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7329
7330         * src/z80/mappings.i: fix _mul[us][int,long] entries
7331
7332 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7333
7334         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7335
7336 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7339         * support/regression/tests/bitopcse.c: added
7340         fixed warning:
7341         * src/avr/gen.c:
7342         * src/pic/gen.c:
7343         * src/pic16/gen.c:
7344         * src/z80/gen.c:
7345         * src/xa51/gen.c:
7346
7347 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7348
7349         added support for new library format to z80, gbz80 linkers:
7350         *link/z80/aslink.h
7351         *link/z80/lklex.c
7352         *link/z80/lklib.c
7353         *link/z80/lklist.c
7354
7355 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7358         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7359
7360 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7361
7362         added DUMMY_READ_VOLATILE:
7363         * src/SDCC.y:
7364         * src/avr/gen.c:
7365         * src/xa51/gen.c:
7366         * src/z80/gen.c:
7367         * src/pic/gen.c:
7368         * src/pic16/gen.c:
7369         * src/mcs51/gen.c:
7370         * src/ds390/gen.c:
7371         * src/SDCCcse.c (algebraicOpts): many improvements
7372         * src/SDCCcse.h: removed algebraicOpts()
7373         * src/SDCCicode.c (picDummyRead): added
7374
7375 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7376
7377         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7378         "Insufficient space in data memory".
7379
7380 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7381
7382         * src/mcs51/gen.c: fixed bug #771358
7383         * src/z80/gen.c: fixed bug #759087
7384
7385 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7386
7387         * src/pic16/glue.c: minor cleanup by Vangelis
7388
7389 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7390
7391         * device/include/regc515c.h: fixed #758477
7392         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7393         * device/lib/_gptrput.c: saved a few bytes
7394         * my tab spacing is 8, yours too?)
7395         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7396         * device/lib/serial.c: process RX bytes earlier than TX bytes
7397         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7398
7399 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7402
7403 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7404
7405     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7406
7407 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * device/lib/Makefile.in: bad fix, reverted to 1.43
7410
7411 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * device/lib/Makefile.in: added missing z80 object files
7414
7415 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7416
7417         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7418         pic16 progress by Vangelis:
7419         * src/SDCCglobl.h:
7420         * src/SDCCmain.c:
7421         * src/pic/Makefile:
7422         * src/pic:
7423         * pic/Makefile:
7424         * pic16/device.c:
7425         * pic16/device.h:
7426         * pic16/gen.c:
7427         * pic16/gen.h:
7428         * pic16/genarith.c:
7429         * pic16/glue.c:
7430         * pic16/main.c:
7431         * pic16/pcode.c:
7432         * pic16/pcode.h:
7433         * pic16/pcodepeep.c:
7434         * pic16/peeph.def:
7435
7436 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7437
7438     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7439
7440 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7441
7442     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7443     added gbz80 build to MSVC project.
7444     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7445     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7446     from 8051 stuff and setup so it links using a .lnk file.
7447
7448 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7449
7450     * support/librarian/sdcclib.c: sdcc librarian.
7451     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7452     with sdcclib.
7453
7454 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7455
7456     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7457
7458 2003-07-02  Borut Razem <borut.razem AT siol.net>
7459
7460         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7461         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7462         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7463         src/xa51/main.c, src/z80/main.c:
7464         virtualization of glue() function: each port has it's own glue function,
7465         which is accessed by do_glue function pointer in PORT.general structure
7466
7467 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7468
7469         * DS800C400 fun, improved ROM interface and tinibios.
7470
7471 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7472
7473         * More support for DS80C400. Now includes beginning of interface to ROM.
7474
7475 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7476
7477         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7478
7479 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7480
7481         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7482
7483 2003-06-19  Borut Razem <borut.razem AT siol.net>
7484
7485         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7486
7487 2003-06-19  Borut Razem <borut.razem AT siol.net>
7488
7489         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7490         fixed Z80 port - crt0.o: cannot open.
7491
7492 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7493
7494         * support/Util/MySystem.c (merge_command): revert bad fix
7495
7496 2003-06-18  Borut Razem <borut.razem AT siol.net>
7497
7498         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7499
7500 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7501
7502         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7503         option --use-stdout sends errors to stdout instead of stderr.
7504
7505 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7506
7507         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7508
7509 2003-06-15  Borut Razem <borut.razem AT siol.net>
7510
7511         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7512         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7513         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7514         fixed width array of pointers replaced with sets;
7515         multiple include and lib paths ared transferred to preprocessor and linker
7516         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7517         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7518         fixed width array of pointers
7519         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7520         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7521         fixupPath(), getPathDifference()
7522         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7523         fixed width array of pointers
7524
7525 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7526
7527         * src/pic16/ralloc.c: fix warnings
7528         * src/pic16/pcode.c: fix warning
7529
7530 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7531
7532          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7533         know all the details, but essentially this set of changes enable
7534         the pic16 port to generate movff instructions and generate assembler
7535         directives,
7536         * src/SDCCmain.c:
7537         * src/pic16/gen.c:
7538         * src/pic16/glue.c:
7539         * src/pic16/pcode.c:
7540         * src/pic16/device.c:
7541         * src/pic16/main.c:
7542         * src/pic16/pcode.h:
7543         * src/pic16/pcoderegs.c:
7544         * src/pic16/ralloc.c:
7545         * src/pic16/ralloc.h:
7546
7547 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7548
7549         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7550         added option --vc, so sdcc errors and warnings are compatible with
7551         Microsoft Visual Studio.
7552
7553 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7554
7555         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7556           device/lib/libfloat.lib: added atof function.
7557
7558 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7559
7560         * doc/sdccman.lyx: updated to Lyx 1.3
7561         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7562         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7563         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7564
7565 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7566
7567         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7568
7569 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7570
7571         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7572           additions to the "related tools/documentation" section
7573
7574 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7577
7578 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7581         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7582
7583 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7584
7585         * doc/sdccman.lyx: fix double dash and other minor things
7586         * doc/Makefile: fix double dash
7587
7588 2003-05-28  Karl Bongers(patches from Martin Helmling)
7589         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7590           condition and ignore commands.
7591
7592 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7593
7594         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7595           is in parts still quite out of date, I did changes as far as I felt makes sense
7596           for a non-native english speaker.
7597           Please feel free to add to the manual or to correct my changes.
7598         * doc/Makefile: undid touching the date of intermediate tex files.
7599
7600 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7601
7602         * doc/sdccman.lyx: Manual has an index now
7603
7604 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         Finalize muluint/mulsint and mululong/mulslong merging:
7607         * device/lib/_mulint.c
7608         * device/lib/_mullong.c
7609         * device/lib/gbz80/mul.s
7610         * device/lib/gbz80/stubs.s
7611         * device/lib/z80/mul.s
7612         * device/lib/z80/stubs.s
7613         * src/SDCCsymt.c (initCSupport)
7614
7615 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7616
7617         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7618         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7619           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7620           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7621           instead of /Zm500.
7622
7623 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7624
7625         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7626           the regression tests I'm not brave enough to enable 245.b, 245.c
7627         * doc/sdccman.lyx: added latex preamble for hyperref package.
7628           Using pdflatex this will give you a hyperlinked pdf file with
7629           bookmarks. (prepend '%' before /usepackage if this breaks something)
7630
7631 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7632
7633          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7634
7635 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7636
7637         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7638
7639 2003-05-21    <johan AT balder>
7640
7641         * src/SDCCglue.c (printIval): fixed bug #739934
7642
7643 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         Applied patch from bug 737905 (renamed yylineo to mylineno):
7646         * src/altlex.c
7647         * src/SDCCast.c
7648         * src/SDCglobl.h
7649         * src/SDCC.lex
7650         * src/SDCCsymt.c
7651         * src/SDCCval.c
7652         * src/pic16/pcode.c: Cleaned warnings
7653         * src/pic16/pcodeflow.c: Cleaned warnings
7654         * src/pic16/pcoderegs.c: Cleaned warnings
7655
7656 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7657
7658         * src/pic16/pcode.c: Cleaned warnings
7659         * src/pic16/pcodepeep.c: Cleaned warnings
7660         * src/pic16/ralloc.c: Cleaned warnings
7661
7662 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7663
7664         * doc/sdccman.lyx: fixed bug 739745
7665         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7666
7667 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7668
7669         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7670         it can be defined with CFLAGS when running configure
7671         * src/SDCCmain.c: fixed compiling + linking with object files
7672
7673 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7674
7675         * configure.in: configure for pic16 port,
7676             added --disable-pic16-port
7677         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7678         * src/SDCCmain.c: linkOptions is changed to set *,
7679             added if/endif conditional macros to remove options help
7680             messages from optionsTable when a port is not configured, added
7681             support for the PIc16 port in the ports table, when executing
7682             the compiler with no port specified on command line, a default
7683             port is selected with the new macro DEFAULT_PORT which is
7684             defined in port.h, in setDefaultOptions() linkOptions is removed
7685             from initialization assignment, since now it is a set,
7686             parseCmdLine uses setParseWithComma for linkOptions, in
7687             linkEdit() linkOptions are accessed with new function indexSet()
7688             which returns the i'th item of a set variable. See SDCCset.c, in
7689             linkEdit() when calling buildCmdLine(), added linkOptions as
7690             last argument. Now users can pass arguments to gplink via the
7691             -Wl option, main() uses pic16glue() to glue up pic16 programs
7692         * src/SDCCpeeph.c: various changes to support pic16
7693         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7694             return the i'th item of the set
7695         * src/SDCCset.h: added function prototype for indexSet()
7696         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7697         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7698         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7699             added macro DEFAULT_PORT
7700         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7701         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7702             generated
7703         * src/pic16/glue.c: commented out some error producing lines
7704         * src/pic16/main.c: __config directives are commented out to stop
7705             gpasm complaining and test the linkage with gplink, _linkCmd and
7706             _asmCmd changed to be more gplink and gpasm friendly
7707         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7708             produced an error when parsed, peep rule 12 is added to utilize
7709             movff, but it is commented out since the pCode does not support
7710             yet a command with 2 address arguments
7711
7712 2003-05-18    <johan AT balder>
7713
7714         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7715         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7716 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7717
7718         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7719   Added feature to script commands from file.
7720
7721 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7722
7723         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7724         * src/SDCCutil.c: include ctype.h for win32
7725
7726 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7729
7730 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7731
7732         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7733   Fixed so you can set breakpoints prior to run, run does not stop
7734   on entry now.  Add tbreak.  Other enhancements and fixes for use
7735   with ddd.
7736
7737 2003-05-12  Borut Razem <borut.razem AT siol.net>
7738
7739         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7740
7741 2003-05-11  Borut Razem <borut.razem AT siol.net>
7742
7743         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7744         the path of bin directory, so that PATH is the only env. variable, which has to be set
7745         in case of standard installation.
7746         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7747         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7748         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7749
7750 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7751
7752         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7753         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7754         temp files are in the port dir; clean the gen/test directory when
7755         generating new test.c
7756         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7757         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7758         * support/regression/tests/zeropad.c: added
7759
7760 2003-05-09    <johan AT balder>
7761
7762         * src/SDCCglue.c: fixed bug #597940
7763
7764 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7765
7766         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7767   cache sfr, optimize next,step, fix off by one sourceline,
7768   support ddd list function.
7769         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7770
7771 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7772
7773         * support/regression/HTMLgen.py: added compare_s2f()
7774         * support/regression/Makefile: redo 1.27
7775         * support/regression/generate-cases.py: redo 1.5
7776
7777 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7778
7779         * support/regression/tests/float.c: workaround 33 bit hex constant
7780         * support/regression/tests/simplefloat.c: fix division for host
7781
7782 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7783
7784         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7785         that tame's the PIC's over-aggressive optimizer.
7786
7787 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7788
7789          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7790          support for MSVC.
7791
7792 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7793
7794         Initial support for DS80C400. "Hello world" runs on TINIm400
7795         (with polled I/O).
7796
7797 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7798
7799          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7800          * Some notes on ddd usage added in debugger/README
7801          Martin Helmling adding more features and fixes for ddd GUI debugger.
7802          Code added for nexti, stepi, up, down, and other adjustments.
7803
7804 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7805
7806         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7807         * src/pic/peeph.def Added two rules to optimize carry manipulation
7808         * src/pic/* removed debug printfs
7809
7810 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7811
7812         * debugger/mcs51/cmd.c: added header newalloc.h
7813
7814 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7815
7816         * as/Makefile: new EXEEXT
7817         * as/z80/Makefile: remove trailing slash of BUILDIR
7818         * as/z80/clean.mk: new EXEEXT
7819         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7820         * support/cpp2/Makefile.in: new EXEEXT
7821         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7822
7823 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7824
7825         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7826         EXEEXT was introduced to fix all related problems with targets
7827         "clean", "install" and "uninstall"; a couple of further flaws
7828         especially with "clean" have been fixed too
7829         * as/mcs51/Makefile.in
7830         * as/mcs51/clean.mk
7831         * as/z80/Makefile
7832         * Makefile
7833         * clean.mk
7834         * debugger/mcs51/Makefile.in
7835         * debugger/mcs51/clean.mk
7836         * link/z80/Makefile
7837         * link/z80/Makefile.in
7838         * link/z80/clean.mk
7839         * link/Makefile
7840         * packihx/Makefile.in
7841         * packihx/clean.mk
7842         * sim/ucsim/Makefile
7843         * sim/ucsim/clean.mk
7844         * sim/ucsim/avr.src/Makefile.in
7845         * sim/ucsim/avr.src/clean.mk
7846         * sim/ucsim/s51.src/Makefile.in
7847         * sim/ucsim/s51.src/clean.mk
7848         * sim/ucsim/xa.src/Makefile.in
7849         * sim/ucsim/xa.src/clean.mk
7850         * sim/ucsim/z80.src/Makefile.in
7851         * sim/ucsim/z80.src/clean.mk
7852         * sim/ucsim/main_in.mk
7853         * sim/ucsim/packages_in.mk
7854         * sim/ucsim/gui.src/Makefile.in
7855         * sim/ucsim/gui.src/serio.src/Makefile.in
7856         * sim/ucsim/gui.src/serio.src/clean.mk
7857         * src/Makefile.in
7858         * src/clean.mk
7859         * support/cpp2/Makefile.in
7860         * support/cpp2/clean.mk
7861         * support/makebin/Makefile
7862         * support/makebin/clean.mk
7863         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7864         * doc/sdccman.lyx: --program-suffix no longer needed
7865
7866 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7867
7868          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7869          Martin Helmling added support for ddd GUI debugger.
7870          Code added to display assembly, set variables, and other commands
7871          to interface to ddd.
7872
7873 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7874
7875         * as/Makefile: fix target clean
7876         * as/clean.mk: fix target clean
7877         * as/z80/clean.mk: fix target clean
7878
7879 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7880
7881         * Makefile.common.in: added  AT EXEEXT AT
7882         * configure.in: removed all mingw32 stuff
7883         * configure: rebuilt from configure.in
7884         * doc/sdccman.lyx: updated section "installation"
7885         * support/scripts/sdcc_mingw32: adapted to configure
7886         * support/scripts/sdcc_cygwin_mingw32: added
7887
7888 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7889
7890         * src/pic Added object file support for the PIC port
7891         * src/pic Applied patch from Craig Franklin (this started the object file support)
7892         * src/regression Updated the PIC regression tests for object files
7893
7894 2003-04-20  Borut Razem <borut.razem AT siol.net>
7895
7896         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7897           lklex.c: In function `getfid':
7898           lklex.c:203: warning: array subscript has type `char'
7899         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7900           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7901         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7902           stack handling macros
7903
7904 2003-04-19  Borut Razem <borut.razem AT siol.net>
7905
7906         * "handling space characters in file path" task:
7907         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7908         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7909         * support/Util/MySystem.h: make it self-sufficient
7910         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7911           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7912           handling space characters in file path
7913         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7914           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7915         * support/Util/MySystem.c: handling space characters in executable's path
7916
7917 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7918
7919         * as/z80/Makefile: fix permanent rebuild of z80
7920         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7921         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7922
7923 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7924
7925         * src/SDCCopt.c: add special case optimization to replace modulo by
7926           a power of two with a bitwise AND.
7927
7928 2003-04-18    <johan AT balder>
7929
7930         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7931
7932 2003-04-17    <johan AT balder>
7933
7934         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7935         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7936
7937 2003-04-13  Borut Razem <borut.razem AT siol.net>
7938
7939         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7940         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7941           fixed mingw problem in adl_NORMALIZE_PATH
7942
7943 2003-04-12  Borut Razem <borut.razem AT siol.net>
7944
7945         * fixed "#pragma SAVE/RESTORE can not be nested":
7946         * src/SDCC.lex: reworked pragma handling functions
7947         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7948         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7949
7950 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * src/SDCCutil.c (pathEquivalent): defined but not used
7953         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7954         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7955         * configure: rebuilt from configure.in
7956         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7957         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7958         * device/include/Makefile.in: replace sdcc_datadir
7959         * device/lib/Makefile.in: replace sdcc_datadir
7960         * Makefile.common.in: add LDFLAGS from configure
7961         * packihx/Makefile.in: use LDFLAGS
7962         * src/Makefile.in: use LDFLAGS
7963         * support/cpp2/Makefile.in: add LDFLAGS from configure
7964         * support/makebin/Makefile: use LDFLAGS
7965         * .version: bumped version number to 2.3.5
7966
7967 2003-04-12  Borut Razem <borut.razem AT siol.net>
7968
7969         * completed "different paths" task:
7970         * src/SDCCmacro.c: fixed bug in handling quotes
7971         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7972         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7973
7974 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7977
7978 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7979
7980         * ds390/gen.c ds390/peeph.def: fix bug 706781
7981
7982 2003-04-11  Borut Razem <borut.razem AT siol.net>
7983
7984         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7985
7986 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7987
7988         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7989         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7990          set - this bit used to not be set...).
7991         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7992           bad code in PIC Port
7993         * src/regression/and2.c added to test bug 609268
7994         * src/regression/Makefile added and2.c to regression test
7995
7996
7997 2003-04-08    <johan AT CP255758-A>
7998
7999         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8000         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8001         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8002
8003 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8004
8005         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8006         fix bug #487815
8007         * support/cpp2/Makefile.in: fix bug #487815
8008         * configure: rebuilt from configure.in
8009         * Makefile.common.in: docdir changed, new path suffixes
8010         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8011         * sdcc_vc_in.h: reflect changes from sdccconf.h
8012         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8013         * src/SDCCutil.h: remove BINDIR hack
8014         * doc/sdccman.lyx: update new path hierarchy
8015
8016 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8017
8018         * src/SDCCpeeph.c: added okToRemoveSLOC test
8019
8020 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8021
8022         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8023
8024 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8025
8026         * src/SDCCpeeph.c: added labelIsReturnOnly test
8027         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8028
8029 2003-04-05    <johan AT balder>
8030
8031         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8032         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8033         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8034         * src/SDCCast.c: fixed a warning
8035         * src/SDCCast.h: fixed a warning
8036         * src/SDCCicode.c (operandFromAst): fixed a warning
8037
8038 2003-04-04    <johan AT balder>
8039
8040         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8041         * src/SDCCast.c (decorateType): fixed bug #715076
8042         * src/SDCC.y: fixed bug #702907
8043
8044 2003-04-03    <johan AT balder>
8045
8046         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8047         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8048         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8049         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8050         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8051
8052 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8053
8054         * _decdptr.c: fix return values
8055         * _gptrget.c: fix return values
8056         * _gptrgetc.c: fix return values
8057         * _gptrput.c: fix return values
8058         * _mulint.c: fix return values
8059         * as/z80/Makefile: fix 'make -j' problem
8060
8061 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8062
8063         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8064         * configure.in: big cleanup, updated to autoconf 2.5x
8065         * configure: rebuilt from configure.in
8066         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8067         * sdcc_vc_in.h: reflect changes from sdccconf.h
8068         * doc/Makefile: fixed a flaw in "make install"
8069
8070 2003-04-02    <johan AT balder>
8071
8072         * src/ds390/gen.c (genCmp): no comments
8073         * src/mcs51/gen.c (genCmp): no comments
8074         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8075         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8076
8077 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8078
8079         * support/regression/generate-cases.py: place generated file in given sub directory
8080         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8081         * support/regression/Makefile: improvements for 'make -j';
8082         side effect: it's simpler and faster now
8083
8084 2003-03-31  Borut Razem <borut.razem AT siol.net>
8085
8086         * src/z80/main.c: link-{port} and as-{port} defined without path
8087         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8088
8089 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8092
8093 2003-03-30  Borut Razem <borut.razem AT siol.net>
8094
8095         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8096           changed type of list parameter to set
8097         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8098         * src/port.h: changed type of do_assemble() parameter to set
8099         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8100           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8101           definition of "cppoutfilename" macro with NULL value in preProcess()
8102         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8103         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8104         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8105           replaced with set *binPathSet
8106         * shash_add() deallocates the item, if allready exsists, before adding the new one
8107         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8108
8109 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8110
8111         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8112           a nested for loop bug in the PIC port
8113         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8114           for loops
8115
8116 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8117
8118         * support/Util/dbuf.h: remove C++ stuff to make it portable
8119
8120 2003-03-28  Borut Razem <borut.razem AT siol.net>
8121
8122         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8123           literal strings in stringLiteral()
8124         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8125         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8126           to the project
8127
8128 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8129
8130         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8131
8132 2003-03-26    <johan AT balder>
8133
8134         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8135         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8136         * src/SDCCast.c (decorateType): fixed " -v < 3"
8137
8138 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8139
8140         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8141         Added Lenny Story's debug infrastructure changes:
8142         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8143         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8144         * src/cdbFile.c: added
8145         * src/SDCCdebug.c: added
8146         * src/SDCCdebug.h: added
8147         * src/SDCCast.c (createFunction)
8148         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8149         * src/SDCCmain.c (parseCmdLine, main)
8150         * src/SDCCmem.c (redoStackOffsets)
8151         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8152         * src/SDCCsymt.h
8153         * src/common.h
8154         * src/avr/gen.c (genAVRCode)
8155         * src/ds390/gen.c (gen390Code)
8156         * src/mcs51/gen.c (gen51Code)
8157         * src/pic/gen.c (genpic14Code)
8158         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8159         * src/xa51/gen.c (genXA51Code)
8160         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8161
8162 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8163
8164         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8165         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8166
8167 2003-03-22    <johan AT balder>
8168
8169         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8170
8171 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8172
8173         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8174         * doc/cdbfileformat.lyx: added, written by Lenny Story
8175         * doc/Makefile: added cdbfileformat.lyx
8176         * doc/clean.mk: added cdbfileformat.lyx
8177
8178 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8179
8180         * src/mcs51/peeph.def: fix bug #705773
8181
8182 2003-03-20    <johan AT balder>
8183
8184         An sfr/sbit can have an "at #" AND an initializer
8185         * src/SDCCsymt.c (checkSClass):
8186         * src/SDCCmem.c (allocGlobal):
8187         * src/SDCCmem.c (allocLocal):
8188         * src/SDCCast.c (createBlock):
8189
8190 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8191
8192         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8193
8194 2003-03-16    <johan AT balder>
8195
8196         Undid the hackup of const and volatile, the problem is much bigger
8197         * src/SDCC.y:1.65
8198         * src/SDCCast.c:1.171
8199         * src/SDCCglue.c:1.138
8200         * src/SDCCicode.c:1.146
8201         * src/SDCCsymt.c:1.150
8202         * src/SDCCval.c:1.65
8203
8204 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8205
8206         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8207         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8208
8209 2003-03-13    <johan AT balder>
8210
8211         Hackup const and volatile modifiers in type chains a bit:
8212         * src/SDCC.y:1.63
8213         * src/SDCCast.c:1.169
8214         * src/SDCCglue.c:1.136
8215         * src/SDCCicode.c:1.143
8216         * src/SDCCsymt.c1.146
8217         * src/SDCCsymt.h1.59
8218         * src/SDCCval.c:1.63
8219
8220 2003-03-12    <johan AT balder>
8221
8222         * src/SDCCBBlock.h: more LRH debugging junk
8223         * src/SDCCcflow.h: more LRH debugging junk
8224         * src/SDCCloop.c: more LRH debugging junk
8225         * src/SDCC.y (struct_declaration): fixed bug #697590
8226         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8227         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8228         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8229
8230 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8231         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8232         test function names must now match exactly).
8233         * src/SDCCcse.c: added special case in findCheaperOp to allow
8234         extending a short integer. Makes less awful code for bug 700121 test case.
8235
8236 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8237
8238         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8239         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8240
8241 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8242
8243         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8244         actually called (operandsNotEqual() was called for all
8245         operandsNotEqualX tests).
8246
8247 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8248
8249         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8250         with shorter literals. Fixes bug 700121.
8251
8252 2003-03-11    <johan AT balder>
8253
8254         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8255
8256 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8257
8258         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8259         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8260
8261 2003-03-10  Borut Razem <borut.razem AT siol.net>
8262
8263         * src/SDCCmain.c: pipe preprocessor's output
8264         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8265         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8266         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8267         which closes all pipes in pipeSet set
8268         * src/SDCCset.c: free deleted item in function deleteSetItem()
8269         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8270         moved from z80 to src subproject
8271         * .version: increased version number to 2.3.4
8272
8273 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8274
8275         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8276         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8277         * support/regression/ports/xa51/spec.mk: fix typo
8278
8279 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8280
8281         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8282
8283 2003-03-09  Borut Razem <borut.razem AT siol.net>
8284
8285         * src/SDCCmain.c: pipe preprocessor's output
8286         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8287         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8288         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8289         which closes all pipes in pipeSet set
8290         * src/SDCCset.c: free deleted item in function deleteSetItem()
8291         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8292         moved from z80 to src subproject
8293
8294 2003-03-09  Borut Razem <borut.razem AT siol.net>
8295
8296         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8297         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8298         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8299         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8300         * src/SDCCglobl.h: unification of WIN32 native definitions
8301
8302 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8303
8304         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8305
8306 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8307
8308         * src/configure.in:   check for endianess (even while cross-compiling)
8309         * src/configure:      check for endianess (even while cross-compiling)
8310         * src/configure_in.h: check for endianess (even while cross-compiling)
8311         * src/avr/gen.c:        remove old endianess stuff
8312         * src/mcs51/gen.c:      remove old endianess stuff
8313         * src/ds390/gen.c:      remove old endianess stuff
8314         * src/pic/gen.c:        remove old endianess stuff
8315         * src/pic/genarith.c:   remove old endianess stuff
8316         * src/pic/glue.c:       fix endianess check
8317         * src/pic16/gen.c:      remove old endianess stuff
8318         * src/pic16/genarith.c: remove old endianess stuff
8319         * src/pic16/glue.c:     fix endianess check
8320         * src/xa51/gen.c:       remove old endianess stuff
8321         * src/z80/gen.c:        fix endianess check
8322         * src/SDCCglue.c:       fix endianess check
8323         * src/ds390/peeph.def: fix bug 700036
8324
8325 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8328         * src/configure: find appropriate data-types on host for SDCC's int and long
8329         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8330         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8331         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8332
8333 2003-03-07    <johan AT balder>
8334
8335         Just a big NOOP:
8336                 some minor cleanups before the big shot
8337                 OP_DEFS and OP_USES now use Kevin's protection
8338                 new option --nolabelopt
8339
8340         * src/SDCCBBlock.c:
8341         * src/SDCCast.c,:
8342         * src/SDCCcflow.c:
8343         * src/SDCCcse.c:
8344         * src/SDCCicode.c:
8345         * src/SDCCicode.h:
8346         * src/SDCClabel.c:
8347         * src/SDCCloop.c:
8348         * src/SDCCmain.c:
8349         * src/ds390/ralloc.c:
8350         * src/mcs51/ralloc.c:
8351         * src/pic/ralloc.c:
8352         * src/xa51/ralloc.c:
8353         * src/z80/ralloc.c:
8354
8355 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8356
8357         * src/pic/pcode.c (get_op): fix 64 bit warnings
8358         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8359         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8360         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8361         * support/regression/tests/malloc.c: fix 64 bit warnings
8362
8363 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8364
8365         * src/mcs51/gen.c (genMinus): fixed bug 696436
8366
8367 2003-03-02  Borut Razem <borut.razem AT siol.net>
8368
8369         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8370
8371 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8372
8373         * configure.in: test for mkstemp
8374         * sdccconf_in.h: add HAVE_MKSTEMP
8375
8376 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8377
8378         * device/include/ctype.h: removed warning while using --stack-auto
8379         * device/include/malloc.h: removed warning while using --stack-auto
8380         * device/include/string.h: removed warning while using --stack-auto
8381
8382 2003-02-23  Borut Razem <borut.razem AT siol.net>
8383
8384         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8385         because NDEBUG is defined (see man assert)
8386         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8387
8388 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8389
8390         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8391         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8392
8393 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8394
8395         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8396         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8397
8398 2003-02-18    <johan AT balder>
8399
8400         * as/mcs51/asmain.c (asmbl): module can start with a digit
8401         * as/z80/asmain.c (asmbl): module can start with a digit
8402
8403 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8404
8405         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8406         * src/asm.c: fix pipe() for Mingw32
8407
8408 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8409
8410         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8411         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8412         make -V work again; --c1mode reads now from stdin
8413         * doc/sdccman.lyx: added --c1mode
8414         * support/Util/SDCCerr.c: new messages for c1 mode
8415         * support/Util/SDCCerr.h: new messages for c1 mode
8416         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8417
8418 2003-02-15    <johan AT balder>
8419
8420         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8421
8422 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * doc/sdccman.lyx: Environment variables, -o and other minor things
8425
8426 2003-02-14    <johan AT balder>
8427
8428         * src/xa51/main.c: before anyone really tries to use it :)
8429
8430         * Install doc's in share/sdcc/doc
8431         * removed some obsolete files
8432         * Do a proper make distclean and uninstall
8433         M Makefile.common.in
8434         R sdccbuild.sh
8435         M as/Makefile
8436         M device/include/Makefile.in
8437         M device/lib/Makefile.in
8438         M doc/sdccman.lyx
8439         M link/Makefile
8440         M sim/ucsim/doc/Makefile.in
8441         M src/clean.mk
8442         R src/avr/peeph.rul
8443         R src/xa51/peeph.rul
8444         M support/cpp2/Makefile.in
8445         M support/makebin/Makefile
8446
8447
8448 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8451
8452 2003-02-10  Borut Razem <borut.razem AT siol.net>
8453
8454         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8455         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8456         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8457         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8458         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8459         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8460         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8461         src/z80/Makefile.bcc: Borland Makefile cleanup
8462         * as/z80/Makefile.bcc: Added Borland Makefile
8463         * support/cpp2/borland.h: Removed
8464
8465 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8466
8467         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8468         * src/SDCC.lex: new pragma NOIV
8469         * src/SDCCglobl.h: new pragma NOIV
8470         * src/SDCCmem.c: new pragma NOIV
8471
8472 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8473
8474         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8475
8476 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * src/SDCCmain.c: signal handling is switched off by --debug
8479         * doc/Makefile: small fix for install; use clean.mk again
8480         * doc/clean.mk: clean *.pdf and *.html too
8481
8482 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8483
8484         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8485         * device/lib/printfl.c: fix a ds390 bug by making it portable
8486         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8487         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8488         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8489         * debugger/mcs51/cmd.c: converted multi-line string literals
8490         * sim/ucsim/globals.cc: converted multi-line string literals
8491         * src/SDCCmain.c: introduced signal handler to remove temp files
8492         * doc/Makefile: small tweaks, implement clean
8493         * doc: removed generated files
8494
8495 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8496
8497         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8498         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8499         Address Record is not correctly generated for DS390."
8500
8501 2003-02-02  Borut Razem <borut.razem AT siol.net>
8502
8503         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8504         * as/mcs51/asm.h: fixed compilation with Borland C
8505         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8506         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8507         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8508         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8509         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8510         src/z80/Makefile.bcc: delete $(LIB) only if exist
8511         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8512
8513 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8514
8515         * device/include/malloc.h: introduced NULL
8516         * device/include/string.h: introduced NULL
8517         * device/include/stdlib.h: introduced NULL
8518         * device/lib/_memcpy.c: removed NULL
8519         * device/lib/_strcat.c: removed NULL
8520         * device/lib/_strchr.c: removed NULL
8521         * device/lib/_strcmp.c: removed NULL
8522         * device/lib/_strcpy.c: removed NULL
8523         * device/lib/_strcspn.c: removed NULL
8524         * device/lib/_strlen.c: removed NULL
8525         * device/lib/_strncat.c: removed NULL
8526         * device/lib/_strncmp.c: removed NULL
8527         * device/lib/_strncpy.c: removed NULL
8528         * device/lib/_strpbrk.c: removed NULL
8529         * device/lib/_strrchr.c: removed NULL
8530         * device/lib/_strspn.c: removed NULL
8531         * device/lib/_strstr.c: removed NULL
8532         * device/lib/_strtok.c: removed NULL
8533         * device/lib/malloc.c: removed NULL, include own header
8534
8535 2003-02-02    <johan AT balder>
8536
8537         * 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
8538         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8539         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8540         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8541         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8542         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8543
8544 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8545
8546         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8547         area 'DATA'"
8548
8549 2003-02-01    <johan AT balder>
8550
8551         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8552
8553 2003-01-31    <johan AT CP255758-A>
8554
8555         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8556
8557 2003-01-30    <johan AT balder>
8558
8559         * src/SDCCBBlock.c: automatic bug detection
8560         * src/SDCCicode.c: automatic bug detection
8561
8562 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8563
8564         * src/SDCCglobl.h:   now --xram-size 0 works
8565         * src/SDCCmain.c:    now --xram-size 0 works
8566
8567 2003-01-29    <johan AT balder>
8568
8569         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8570
8571 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8572
8573         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8574         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8575         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8576         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8577         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8578         * src/SDCCmain.c:    Added options --xram-size and --code-size
8579
8580 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8581
8582         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8583         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8584
8585 2003-01-27    <johan AT balder>
8586
8587         * src/SDCC.y: fixed bug #613764
8588
8589 2003-01-26    <johan AT balder>
8590
8591         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8592         * src/SDCCsymt.h: fixed bug #673374
8593         * src/SDCCglue.c: fixed bug #661910
8594         * src/SDCCast.c: fixed bug #458099 and 673374
8595
8596 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8597
8598         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8599         * as/mcs51/strcmpi.h: added
8600         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8601         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8602         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8603         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8604         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8605         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8606         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8607         * as/mcs51/Makefile.aslink: new module strcmpi
8608         * as/mcs51/Makefile.asx8051: new module strcmpi
8609         * as/mcs51/Makefil.bcc: new module strcmpi
8610         * as/mcs51/Makefile.in: new module strcmpi
8611         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8612
8613 2003-01-26    <johan AT balder>
8614
8615         * src/SDCCglue.c: reverted back to 1.124
8616         * src/SDCCast.c: reverted back to 1.156
8617         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8618
8619 2003-01-25    <johan AT balder>
8620
8621         * src/SDCCglue.c: A better fix for bug #661910
8622         * src/SDCCast.c: A better fix for bug #661910
8623         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8624
8625 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8626
8627         * src/Makefile.in: remove spawn.o
8628         * src/SDCCmain.c: remove spawn.h
8629         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8630         * src/spawn.c: removed
8631         * src/spawn.h: removed
8632         * support/regression/ports/ds390/spec.mk: link with -r
8633
8634 2003-01-24    <johan AT CP255758-A>
8635
8636         * src/ds390/gen.c (aopOp): fixed bug #667458
8637         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8638         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8639         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8640
8641 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8642
8643         * src/mcs51/peeph.def: better assembler identation by Frieder
8644         * src/mcs51/gen.c: better assembler identation by Frieder
8645
8646 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8647
8648         * as/z80/string.h: removed for gcc 3.2
8649         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8650         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8651
8652 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8653
8654         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8655         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8656         * support/regression/Makefile: separate temp files for ports
8657         * support/regression/generate-cases.py: separate temp files for ports
8658         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8659         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8660
8661 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8662
8663         * moved tinitalk to device/examples/ds390
8664
8665 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8666
8667         * as/mcs51/lkmem.c: rflag is for DS390
8668         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8669         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8670                          (linkEdit): move mem- and map-files the same way as ihx-files
8671         * src/z80/main.c (_setDefaultOptions): removed --generic
8672         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8673         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8674         * src/pic/glue.c (picglue): --c1mode works again
8675         * src/pic16/glue.c (pic16glue): --c1mode works again
8676         * src/asm.c (printCLine): fix #660034
8677
8678 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8679
8680         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8681         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8682         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8683         * as/mcs51/lkmem (summary): better fix for sp problem
8684         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8685         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8686         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8687                                               remove --stack-after-data
8688
8689 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8690
8691         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8692         * src/SDCCutil.c (join): ugly bug: missing '\0'
8693         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8694
8695 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8696
8697         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8698         * src/port.h: typo
8699         * src/pic/main.c (_asmCmd): gpasm supports -o
8700         * src/z80/main.c: more general macros
8701         * device/lib/Makefile.in: remove intermediate files
8702
8703 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8704
8705         * .version: Bumped version number to 2.3.3
8706         * src/SDCCBBlock.c: new option -o
8707         * src/SDCCglobl.h: new option -o
8708         * src/SDCCglue.c: new option -o
8709         * src/SDCCmain.c: new option -o
8710         * src/asm.c: new option -o
8711         * src/ds390/main.c: new option -o
8712         * src/pic/glue.c: new option -o
8713         * src/pic/pcode.c: new option -o
8714         * src/pic/ralloc.c: new option -o
8715         * src/pic16/glue.c: new option -o
8716         * src/pic16/pcode.c: new option -o
8717         * src/pic16/ralloc.c: new option -o
8718         * src/z80/main.c: new option -o
8719         * device/lib/Makefile.in: use -o
8720         * support/regression/ports/ds390/spec.mk: use -o
8721         * support/regression/ports/gbz80/spec.mk: use -o
8722         * support/regression/ports/mcs51/spec.mk: use -o
8723         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8724         * support/regression/ports/z80/spec.mk: use -o
8725         * support/regression/ports/ucz80/spec.mk: use -o
8726         * support/regression/ports/xa51/spec.mk: use -o
8727         * support/regression/fwk/lib/timeout.c: fix usage string
8728
8729 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8730         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8731
8732 2003-01-07    <johan AT balder>
8733
8734         * src/SDCCast.c (decorateType): fixed bug #600035
8735
8736 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8737         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8738         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8739         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8740         * src/pic/pcode.c: outcommented unused variable to remove warnings
8741         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8742
8743 2003-01-06    <karl AT turbobit.com>
8744         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8745    regression tests.
8746
8747 2003-01-06    <johan AT balder>
8748
8749         * src/SDCCicode.c: fixed array add
8750
8751 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8752         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8753         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8754
8755 2003-01-04    <johan AT balder>
8756
8757         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8758
8759 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8760         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8761
8762 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8763         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8764         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8765
8766 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8767         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8768
8769 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8770         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8771
8772 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8773         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8774
8775 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8776
8777     * in \sdcc\as\mcs51\ changed these files in order to create an
8778     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8779     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8780     following files to include the previous two files: aslink.dsp,
8781     Makefile.aslink, Makefile.bcc, and Makefile.in.
8782
8783     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8784     .adb instead of .cdb
8785
8786 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8787
8788         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8789         value from option --iram-size.
8790
8791 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8792
8793         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8794         dram[] array.
8795
8796 2002-09-18    <wiml AT hhhh.org>
8797
8798         * SDCClrange.h: exposed setFromRange() and setToRange()
8799         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8800           packRegsForAccUse() (bug 542397)
8801         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8802           multiple times and emitting the fetch operations more than once
8803           added aopGetUsesAcc() function to allow binary operators to
8804           fetch their operands in the correct order; made genMinus() emit
8805           compact code for X = LITERAL - Y
8806
8807 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8808         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8809         sprintf() in line 1267.
8810
8811 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8812         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8813         like ports.
8814
8815 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8816         Changes to aslink (All the changes are marked with 'JCF'):
8817
8818         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8819         summary().
8820
8821         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8822         area BSEG.  Also moves, if possible, the DATA area down into the internal
8823         ram so more space is available.
8824
8825         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8826         sflag.
8827
8828         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8829         not bytes.  Function summary() which creates a memory usage summary
8830         file with extension .mem.  Reports of overlaping stack and small stack
8831         size.  If the space for the stack is less than 16 bytes aslink trows a
8832         warning.
8833
8834         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8835         the 8051.  Option 'y' for memory summary output file.
8836
8837         Changes to sdcc (All the changes are marked with 'JCF'):
8838
8839         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8840
8841         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8842         overlaying area for it (uses RegBankUsed[4]).
8843
8844         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8845         bank zero as used by default.  By default aslink locates the stack
8846         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8847         the creation of the .mem file.  Delegates the allocation of data area
8848         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8849         the begining of the stack area to aslink.
8850
8851         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8852         glue() in SDCCglue.c creates an area for it.
8853
8854 2002-09-03  Borut Razem <borut.razem AT siol.net>
8855         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8856         sdcc/src/pic/glue.c:
8857         introduced atexit() handler for teporay files removal in case of
8858         errors, assertions, ...
8859
8860 2002-08-29  Borut Razem <borut.razem AT siol.net>
8861         * sdcc/support/cpp2/auto-host_vc_in.h:
8862         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8863         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8864         Maybe there is a similar problem with BORLANDC? It should be checked!
8865
8866         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8867         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8868         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8869         was not executed, and the compiler (cl) launched a warning:
8870         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8871
8872 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8873         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8874
8875 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8876         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8877
8878         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8879           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8880           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8881           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8882           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8883           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8884           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8885         - added Release configuration in VS projects
8886         - review of compiler an linker options
8887         - VC .exe files are generated in bin_vc directory, not to interfere
8888           with binaries generated from other projects (cygwin, mingw, bcc ...)
8889
8890         * sdcc/src/yacc.dsp: added
8891
8892         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8893         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8894         and insert the version number definitions from .version
8895
8896         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8897
8898         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8899         added - genarate auto-host.h using auto-host_vc_in.h as template
8900
8901         * sdcc/sdcc_vc.h,
8902         removed from CVS, generated automatically
8903
8904 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8905         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8906
8907 2002-08-11  Borut Razem <borut.razem AT siol.net>
8908         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8909
8910 2002-08-10  Borut Razem <borut.razem AT siol.net>
8911         * src/SDCCmain.c (main):
8912         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8913         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8914         The consequence was that some temporary files were not removed.
8915
8916         * src/SDCCglue.c:
8917         unification of code in functions tempfilename() and tempfile():
8918         function tempnam() is defined in Visual Studio 6.0 and .NET
8919
8920         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8921
8922         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8923           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8924         - removed compiler command line option /WX: Treats all warnings as errors
8925         - update a list of source files, included into the project
8926
8927         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8928           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8929         changed project type to Generic Project so that can be correcly converted to VS.NET project
8930
8931         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8932
8933         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8934
8935         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8936
8937         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8938         added return 0 statements after assert() to make compiler happy
8939
8940         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8941         added newline in the def file to keep MSC compiler satisfied
8942
8943         * sdcc/src/z80/gen.c:
8944         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8945           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8946         - solved MSC error in function aopDump()
8947
8948         * sdcc_vc.h: define PREFIX as "\\sdcc"
8949
8950 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8951         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8952
8953 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8954         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8955         - Rewrote the register banking algorithm.
8956         - Added pCode live-range analysis to registers (for now, only non-used and
8957         singly-used registers optimized away)
8958
8959         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8960
8961         * 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.
8962
8963 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8964         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8965
8966 2002-04-22  Michael Hope  <michaelh AT vroom>
8967
8968         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8969
8970         * configure.in (DD_COPT): Added include support required for gbdk.
8971
8972         * .version: Bumped version number just to increase it.
8973
8974         * src/SDCCmain.c: Added -nostdinc to the default options.
8975
8976 2002-04-15  Michael Hope  <michaelh AT vroom>
8977
8978         * device/lib/z80/printf.c (sprintf): Added.
8979
8980         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8981
8982         * src/z80/peeph.def: Added transpose redundent load rule.
8983
8984         * src/z80/main.c: Added force callee saves for jaune.
8985
8986         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8987
8988         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8989
8990 2002-03-28  Johan Knol  <johan AT balder>
8991
8992         * src/SDCCval.c: fixed bug #532436
8993
8994 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8995         * /src/port.h:
8996         Added "char *Processor" field to the port structure.
8997
8998         * /src/SDCCmain.c:
8999         Added -p option. Allows port dependent processor to be specified.
9000
9001         * all ports:
9002         Initialized the new field char *Processor field to NULL in all ports
9003
9004         * /src/pic/*:
9005         Compiler generated registers for interrupt context saving
9006         were not getting allocated.
9007
9008 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9009
9010         * /src/SDCCast.c:
9011         Fixed left shift. Will promote the left side of a left shift
9012         if a) left shifting more than size of operand or b) when assigned
9013         to something size > size of left side
9014
9015 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9016         * src/pic/*
9017         tons of changes. Register allocation has been
9018         rewritten. Added customization for the various PICs. Flow
9019         analysis is restructured. ...
9020
9021         * src/pic/device.h:
9022         Added
9023
9024         * src/pic/device.c:
9025         Added. device.c is a PIC port hack to accomodate variations
9026         in PIC devices.
9027
9028 2002-03-13  Michael Hope  <michaelh AT vroom>
9029
9030         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9031
9032 2002-03-04  johanknol  <johanknol AT manik>
9033
9034         * /src/SDCCval.c: fixed
9035
9036         const unsigned char arr[][2] = { { 0, 1 } };
9037         t18.c:1: error: Initializer element is not constant
9038
9039 2002-03-04  bela  <bela AT manik>
9040
9041         * /device/include/mcs51reg.h:
9042         ds89c420 register definition update
9043
9044 2002-03-03    <johan AT FRIJA>
9045
9046         * support/Util/SDCCerr.c: did something, but don't no why anymore
9047
9048         * support/regression/tests/bug-524691.c: made it a little less shy
9049
9050         * src/SDCCast.c (decorateType): fixed bug #524697
9051
9052         * src/SDCCast.c: made some lineno improvements
9053
9054         * src/SDCCval.c (getNelements): changed warning to error
9055
9056         * src/SDCCglue.c (printIvalArray): changed warning to error
9057
9058         * src/SDCCicode.c: fixed a warning for mingw
9059
9060         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9061
9062         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9063
9064 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9065
9066         * src/ds390/peeph.def:
9067         Added some more peephole rules
9068
9069         * src/ds390/gen.c: Various fixes & enhancements
9070
9071         * src/SDCClrange.c, src/SDCClrange.h:
9072         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9073
9074         * src/ds390/ralloc.c:
9075         various fixes & enhancements (ds390) specific
9076
9077         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9078         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9079         from rallocs.
9080
9081         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9082
9083 2002-03-02    <johan AT FRIJA>
9084
9085         * src/SDCCast.c (decorateType): fixed bug #524708
9086
9087         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9088
9089         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9090
9091 2002-03-01  Michael Hope  <michaelh AT vroom>
9092
9093         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9094
9095         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9096
9097 2002-03-01    <johan AT FRIJA>
9098
9099         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9100
9101         * src/SDCCast.c (decorateType): fixed bug #524209
9102
9103         * src/SDCCval.c (valNot): fixed bug #524195
9104
9105 2002-02-26    <johan AT balder>
9106
9107         * src/xa51/gen.c: fixed a warning
9108
9109         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9110
9111         * src/SDCCast.c (decorateType): fixed bug #522534
9112
9113 2002-02-23    <johan AT balder>
9114
9115         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9116
9117 2002-02-22    <johan AT balder>
9118
9119         * src/SDCCast.c: fixed bug #514865
9120
9121         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9122
9123 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9124
9125         * sdcc/src/SDCCloop.c:
9126         Previous fix was not good. basic blocks that have "break" or "return" are
9127         not really partof a loop , but live ranges used in these blocks should
9128         be live thru the entire loop, so set partOfLoop but don't add them to
9129         loop region
9130
9131 2002-02-21    <johan AT FRIJA>
9132
9133         * src/SDCCcse.c: fixed bug #514308
9134
9135 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9136
9137         * src/SDCCloop.c:
9138         Fixed BUG #519583. If a conditional block ended in a return/break
9139         statement inside a loop, it was not being considered part of the loop.
9140
9141         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9142
9143 2002-02-10  Karl Bongers <karl AT turbobit.com>
9144
9145         * debugger/*:
9146         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9147         with lots of comments and notes.
9148
9149         * device/examples/test2.c:
9150         Fix bug, "red" variable not being initialized(compiler complained).
9151
9152         * device/examples/Makefile, examples/test3.c:
9153         Add Makefile in device/examples folder, compiles test3.c
9154         for use as a multiple module SDCDB test case.
9155
9156         * sim/ucsim/cmd.src/cmdset.cc:
9157         Took out debug printfs in ucsim "next" command.
9158
9159         * sim/ucsim/xa.src:
9160         Karl and Johan start ucsim XA support.  Most dissassembly working,
9161         about 75% emulation done(plenty of work remaining).
9162
9163         * sim/ucsim/z80.src:
9164         Add Z80 support to ucsim, add test-ucz80 regression test,
9165         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9166         Notice z80 compiler fails on examples/test3.c/crc code.
9167
9168 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9169
9170         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9171         Added support for --parms-in-bank1
9172
9173         * src/ds390/peeph.def:
9174         added a few more peephole optimzations
9175
9176         * src/ds390/main.c:
9177         1) added __builtin_inp & __builtin_outp used to read in data of given length
9178            from a memory mapped port
9179         2) added __builtin_memcmp
9180         3) added __builtin_swapw swap bytes of a short
9181
9182         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9183         1) handle multiple send & receives from register bank1
9184         2) ralloc can now allocate DPTR1 to some liveRanges
9185
9186         * src/SDCCsymt.c, src/SDCCsymt.h:
9187         changes to handle multiple sends & receives
9188
9189         * src/SDCCptropt.h:
9190         added some pointer arithmetic optimization
9191
9192         * src/SDCCptropt.c:
9193         added some pointer arithmetic optimizations but not stable yet so not
9194         called from anywhere (will get this working shortly)
9195
9196         * src/SDCCopt.c: fixed for multiple sends & receives
9197
9198         * src/SDCCmain.c:
9199         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9200         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9201            set preprocessor defines (depending on options)
9202
9203         * src/SDCCicode.c, src/SDCCicode.h:
9204         changes made to handle multiple sends & receives
9205
9206         * src/SDCCglobl.h:
9207         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9208
9209         * src/SDCCcse.c, src/SDCCcse.h:
9210         added function findbackward def (to be used in upcoming optimization)
9211
9212         * src/SDCCcflow.c, src/SDCCcflow.h:
9213         added function returnAtEnd - to determine if a basic block terminates with
9214         a RETURN iCode
9215
9216         * src/SDCCast.c, src/SDCCast.h:
9217         added option parms-in-bank1
9218
9219         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9220         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9221         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9222         adjusted for --parms-in-bank1 option
9223
9224         * device/include/string.h:
9225         donot redefine "reentrant" keyword
9226
9227         * device/include/ds80c390.h: Added some more SFRs
9228
9229 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9230
9231         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9232
9233 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9234
9235         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9236
9237 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9238
9239         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9240
9241 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9242
9243         * Added --xram-movc option
9244
9245 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9246
9247         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9248
9249 2002-01-11  Johan Knol
9250
9251         * Added math lib of Jesus Calvino-Fraga
9252
9253 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9254
9255         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9256         * support/regression/Makefile: new target test-mcs51-stack-auto
9257         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9258
9259 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9260
9261         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9262
9263 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9264
9265         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9266
9267 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9268
9269         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9270
9271         * src/SDCCglue.h: add definition for printIvalChar()
9272
9273 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9274
9275         * src/SDCCast.c: fix #498138 by Johan
9276
9277         * src/SDCCglue.c: fix #498138 by Johan
9278
9279 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9280
9281         * support/regression/Makefile: fix clean
9282
9283         * support/regression/ports/ds390/support.c: fix transmission of last character
9284
9285 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9286
9287         * /sdcc/src/ds390/gen.c:
9288         a) improved computing address of stack variable
9289         b) took out some #if 0 code
9290         c) improved parmBytes adjustment
9291         d) improved genPlusIncr & genMinusIncr
9292         e) genCmp could generate bad code (when left assigned to DPTR)
9293         f) Fixed bug in hasInc
9294
9295         * /sdcc/src/ds390/ralloc.c:
9296         a) packRegsForSupport could mess up live information (Fixed)
9297         b) packRegsDPTRuse could be incorrect for left & right shift
9298
9299         * /sdcc/src/mcs51/ralloc.c:
9300         packRegsForSupport could mess up the live information (Fixed)
9301
9302         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9303
9304         * /sdcc/src/SDCCast.c:
9305         can reverse a loop even if function call is present as long
9306         as the loop control variable is local & is not passed as parameter
9307
9308 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9309
9310         * /sdcc/ChangeLog: *** empty log message ***
9311
9312         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9313         More builtin function additions for TININative
9314
9315         * /sdcc/src/ds390/ralloc.c:
9316         Had broken the regression testsuite
9317
9318         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9319
9320         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9321         Added funcattr hasStackParms will be set for reentrant functions when there
9322         are paramteres on the stack, this helps in minimizing frame pointer generation
9323         typeFromStr can handle function pointers now
9324
9325         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9326         *** empty log message ***
9327
9328 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9329
9330         * /src/ds390/gen.c, /src/ds390/main.c:
9331         More builtin function additions for TININative
9332
9333         * /src/ds390/ralloc.c:
9334         Had broken the regression testsuite
9335
9336         * /src/SDCCast.c: Fixed a bug in dumptree
9337
9338         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9339         Added funcattr hasStackParms will be set for reentrant functions when there
9340         are paramteres on the stack, this helps in minimizing frame pointer generation
9341         typeFromStr can handle function pointers now
9342
9343         * /doc/builtins.txt, /doc/TININative.txt:
9344         *** empty log message ***
9345
9346
9347 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9348
9349         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9350         ALPHA version for -mTININative
9351
9352         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9353         updated to reflect changes in the port structure
9354
9355         * /src/port.h:
9356         added function do_assemble (similar to do_link) if non-null this function
9357         will be called to do assembly (-mTININative) requires a multi command
9358         assembly
9359         added function genAssemblerEnd will be called to generate assembler Epilogue
9360
9361         * /src/SDCCsymt.c:
9362         added _JavaNative to debug info printing
9363
9364         * /src/SDCCmain.c: added option --tini-libid
9365         added port->do_assemble function (-mTININative) has a multi command assemble
9366
9367         * /src/SDCCglue.c: Disabled "constExpr" check
9368         added port->genAssemblerEnd function
9369
9370         * /src/SDCCglobl.h: Added option --tini-libid value
9371
9372         * /src/SDCCast.h:
9373         tookout optimizeCompare from the header (has no external references)
9374
9375         * /src/SDCCast.c: made one more function "static"
9376
9377 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9378
9379         * src/z80/mappings.i: Added z80asm support.
9380
9381         * src/z80/main.c: Added z80asm support on --asm=z80asm
9382
9383         * src/z80/gen.c: Fixed asm portability issues.
9384
9385         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9386
9387         * src/SDCCglue.c (printExterns): Added global/extern split.
9388
9389 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9390
9391         * support/regression/Makefile: added test for mcs51 model large
9392
9393         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9394
9395         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9396
9397 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9398
9399         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9400
9401 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9402
9403         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9404
9405         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9406
9407 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9408
9409         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9410
9411         * support/regression/tests/simplefloat.c: Port to mcs51.
9412
9413 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9414         * support/regression/tests/bug-485362.c: Added.
9415
9416         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9417
9418         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9419
9420         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9421
9422         * src/z80/gen.c (aopDump): Added a dump function.
9423
9424 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9425         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9426
9427         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9428
9429         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9430
9431         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9432
9433         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9434
9435         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9436
9437         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9438
9439         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9440
9441         * support/regression/ports/ds390/support.c: Use tinibios.
9442
9443         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9444
9445 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9446
9447         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9448         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9449
9450         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9451
9452         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9453
9454 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9455
9456         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9457
9458         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9459         (packRegsForIYUse): Created and optimised.
9460
9461 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9462
9463         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9464 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9465
9466         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9467
9468         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9469
9470         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9471
9472 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9473
9474         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9475
9476         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9477
9478 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9479
9480         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9481
9482         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9483
9484         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9485
9486 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9487
9488         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9489         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9490         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9491
9492         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9493
9494         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9495         (genNotFloat): Added.
9496         (genUminusFloat): Added.
9497
9498         * device/lib/z80/Makefile: Added floating pt stubs.
9499
9500         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9501
9502         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9503
9504         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9505
9506 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9507
9508         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9509
9510         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9511
9512         * sdcc/support/regression/Makefile: Add port ds390.
9513
9514         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9515
9516         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9517
9518         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9519
9520         * sdcc/support/regression/ports/ds390/support.c: Added.
9521
9522         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9523
9524         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9525
9526         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9527
9528 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9529
9530         * device/include/malloc.h: Added z80 and gbz80 support.
9531
9532         * device/lib/gbz80/heap.s: Added.
9533
9534         * device/lib/z80/heap.s: Added.
9535
9536         * device/lib/malloc.c: Added z80 and gbz80 support.
9537
9538         * support/regression/tests/malloc.c (testMalloc): Added.
9539
9540         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9541
9542         * support/regression/tests/bug-478094.c: Added.
9543
9544         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9545
9546 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9547
9548         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9549
9550         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9551
9552         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9553
9554         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9555
9556         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9557
9558 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9559
9560         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9561
9562 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9563
9564         * support/regression/tests/bug-477927.c: Added.
9565
9566         * src/z80/peeph.def: Added minor rules.
9567
9568         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9569
9570         * src/z80/peeph.def: Added jump optimisation modification.
9571
9572 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9573
9574         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9575
9576 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9577
9578         * support/regression/tests/funptrs.c: Added.
9579
9580 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9581
9582         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9583
9584 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9585
9586         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9587
9588         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9589
9590         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9591         (movLeft2ResultLong): Created.
9592
9593         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9594         (joinPushes): Added.  Joins two char pushes into a word push.
9595
9596 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9597
9598         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9599
9600         * support/makebin/Makefile (install): Added creation of dest dir.
9601
9602 2001-10-24 Karl Bongers <karl AT turbobit.com>
9603
9604         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9605
9606 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9607
9608         * src/z80/ralloc.c: Turned off faulty pack for one use.
9609
9610         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9611
9612         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9613
9614 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9615
9616         * support/regression/Makefile: Improved clean
9617
9618         * support/regression/ports/gbz80/spec.mk: Added clean
9619
9620         * support/regression/ports/host/spec.mk: Added clean
9621
9622         * support/regression/ports/z80/spec.mk: Added clean
9623
9624         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9625
9626         * support/regression/ports/mcs51/timeout.c: little improvements
9627
9628 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9629
9630         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9631
9632         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9633
9634         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9635
9636 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9637
9638         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9639
9640         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9641
9642 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9643         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9644
9645         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9646
9647         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9648
9649         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9650
9651         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9652
9653         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9654
9655         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9656
9657         * support/regression/tests/longor.c: Added.
9658
9659 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9660
9661         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9662
9663         * as/mcs51/aslink.h: define PATH_MAX
9664
9665         * as/mcs51/asm.h: define PATH_MAX
9666
9667         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9668
9669         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9670
9671         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9672
9673         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9674
9675         * src/SDCCglobl.h: define PATH_MAX
9676
9677         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9678
9679         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9680
9681 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9682
9683         * src/z80/gen.c (gencjneshort): Fixed
9684
9685         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9686
9687 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9688
9689         * support/regression/tests/bug-469671.c: Added.
9690
9691         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9692
9693 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9694
9695         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9696
9697         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9698
9699 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9700
9701         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9702
9703         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9704
9705         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9706
9707         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9708
9709         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9710
9711         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9712
9713         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9714
9715 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9716
9717         * 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.
9718
9719         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9720
9721         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9722
9723 2001-10-07    <johan AT FRIJA>
9724
9725         * device/lib/gets.c (gets): fixed the return value.
9726
9727 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9728         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9729
9730         * 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.
9731
9732         * 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.
9733
9734         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9735
9736         * src/pic/gen.c: Removed Safe_strdup.
9737
9738         * configure.in: Added option to enable libgc support.
9739
9740         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9741         (bitVectUnion): Optimised.
9742         (bitVectIntersect): Optimised.
9743         (bitVectBitsInCommon): Optimised.
9744         (bitVectCplAnd): Optimised.
9745
9746         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9747
9748 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9749
9750         * src/SDCCmain.c: distinguish between assembler debug and plain options
9751
9752         * src/avr/main.c:   remove standard assembler options
9753
9754         * src/ds390/main.c: remove standard assembler options
9755
9756         * src/mcs51/main.c: remove standard assembler options
9757
9758         * src/port.h: removed "PENDING" comment
9759
9760 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9761
9762         * src/device/lib/_mulint.c  : new, with assember functions
9763
9764         * src/device/lib/_mullong.c : new, with assember functions
9765
9766         * src/device/lib/_divuint.c : with assember functions
9767
9768         * src/device/lib/_divsint.c : with assember functions
9769
9770         * src/device/lib/_divulong.c: with assember functions
9771
9772         * src/device/lib/_divslong.c: with assember functions
9773
9774         * src/device/lib/_moduint.c : with assember functions
9775
9776         * src/device/lib/_modsint.c : with assember functions
9777
9778         * src/device/lib/_modulong.c: with assember functions
9779
9780         * src/device/lib/_modslong.c: with assember functions
9781
9782         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9783
9784         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9785
9786         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9787                                       replaced _mululong.c and _mulslong.c by _mullong.c
9788
9789 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9792
9793 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9794
9795         * src/SDCCglue.c: test, if win32api is available for MINGW
9796
9797 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9798
9799         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9800         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9801         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9802         * support/regression/ports/host/spec.mk: removed GENERIC
9803         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9804         * support/regression/ports/z80/spec.mk: removed GENERIC
9805
9806 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9807
9808         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9809
9810         * support/regression/tests/bug-467035.c: Created.
9811
9812 2001-10-01    <johan AT FRIJA>
9813
9814         * src/SDCC.y: fixed bug #466586 part 1
9815
9816 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9817
9818         * SDCCicode.c: z80 has no generic pointers
9819         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9820
9821 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9822
9823         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9824
9825 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9826
9827         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9828
9829         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9830
9831 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9832
9833         * configure.in: Fixed up so that ucsim is only configured once.
9834
9835         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9836
9837         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9838         (getPathDifference): As above.
9839
9840         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9841
9842         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9843
9844 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9845         * .version: Updated to 2.3.1
9846
9847         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9848         Added copyright header.
9849
9850         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9851         (assemble): Added support for macro based assembler commands.
9852         (linkEdit): Added support for macro based linker commands.
9853         (preProcess): Changed the pre-processor to use macros.
9854         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9855         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9856
9857         * device/lib/z80/crt0.s: Added module name for debugging.
9858
9859 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9860
9861         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9862
9863         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9864
9865         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9866
9867         * src/Makefile.in: Added SDCCmacro and SDCCutil
9868
9869 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9870
9871         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9872
9873 2001-09-16    <johan AT FRIJA>
9874
9875         * 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.
9876
9877 2001-09-15    <johan AT FRIJA>
9878
9879         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9880         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9881
9882 2001-09-11    <johan AT FRIJA>
9883
9884         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9885
9886 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9887
9888         * support/regression/tests/bug-460444.c: Added test case.
9889
9890         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9891         (genCast): Added justification for all of the asserts.
9892
9893 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9894
9895         * support/regression/support.c: _xdata replaced by xdata
9896
9897         * support/regression/spec.mk: removed _generic
9898
9899 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9900
9901         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9902
9903         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9904         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9905
9906         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9907
9908         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9909
9910         * support/regression/tests/bug-460010.c: Added test case.
9911
9912         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9913
9914 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9915
9916         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9917
9918         * support/regression/testfwk.c: removed workaround for bug #436344
9919
9920         * support/regression/tests/bp.c: use less memory with mcs51
9921
9922         * support/regression/tests/bug-441448.c: use less memory
9923
9924         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9925
9926         * support/regression/collate-results.py: typo
9927
9928 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9929
9930         * support/regression/tests/fetchoverlap.c: Added new test case.
9931
9932         * support/regression/tests/bp.c: Added new test case.
9933
9934         * support/regression/tests/bug-448984.c: Added new test case.
9935
9936         * support/regression/tests/pow2shifts.c: Added new test case.
9937
9938         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9939         (genlshTwo): Fixed right shift for count > 8.
9940
9941         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9942
9943 2001-09-08    <johan AT FRIJA>
9944
9945         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9946
9947 2001-09-07    <johan AT FRIJA>
9948
9949         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9950
9951         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9952
9953 2001-09-06    <johan AT FRIJA>
9954
9955         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9956         * bernhard noted me at this: "() equals to (void)" (1.38)
9957
9958 2001-09-05    <johan AT FRIJA>
9959
9960         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9961
9962 2001-09-04    <johan AT FRIJA>
9963
9964         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9965
9966
9967 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9968
9969         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9970
9971 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9972
9973         * link/z80/aslink.h: Fixed path for PATH_MAX
9974
9975 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9976
9977         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9978
9979         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9980
9981         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9982
9983         * 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.
9984
9985 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9986
9987         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9988         (genCmp): Fixed up genCmp for the GB with longs.
9989
9990         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9991
9992         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9993
9994         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9995
9996         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9997
9998 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9999
10000         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10001
10002 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10003
10004         * 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.
10005
10006         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10007
10008 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10009
10010         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10011
10012         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10013
10014 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10015
10016   * sim/ucsim/configure:    little improvement of Cygwin-detection
10017   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10018   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10019   * support/regression/tests/bug-221100.c: small changes for mcs51
10020   * support/regression/tests/bug-221168.c: small changes for mcs51
10021   * support/regression/tests/bug-227710.c: small changes for mcs51
10022   * support/regression/tests/staticinit.c: small changes for mcs51
10023   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10024   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10025   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10026
10027 $Revision$