* .version: changed version to 2.5.4
[fw/sdcc] / ChangeLog
1 2005-10-27 Raphael Neider <rneider AT web.de>
2
3         * .version: changed version to 2.5.4
4         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
5         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
6           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
7             arithmetics support routines
8         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
9         * device/lib/Makefile.in: also create installdir for pic
10         
11         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
12           pic14 port as well
13         * src/pic/device.c (dump_sfr): rewritten to delegate register
14           placement to the linker (use `extern sym' rather than sym EQU addr),
15           (validAddress): fixed to check last specified address
16         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
17           (popGetLit): truncate literal value to 8 bit,
18           (popGet): moved assert to more appropriate place
19           (popGetExternal): create pCode operand from and mark the according
20             symbol as being `extern'
21           (popGetAddr): added sanity check on immediate's offset, provide
22             GPOINTER tag on demand
23           (aopPut): fixed for immediates,
24           (mov2w_op): move operand's address or contents to WREG (depending on
25             operand type), safer variant of mov2w,
26           (movwf,call_libraryfunc): NEW, handy abbreviations,
27           (get_argument_pcop,get_return_val_pcop,pass_argument,
28           get_returnvalue): interface for accessing function parameters and
29             return values,
30           (assignResultValuei,genRet): use new parameter/return value interface
31           (pic14_getDataSize): back to old version handling generic pointers,
32           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
33             provided implementation and/or fixed old one,
34           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
35             calls, removed legacy 8051 reference code
36           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
37           (loadSignToC): NEW, move the operands sign bit to CARRY,
38           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
39             genRightShiftSigned, accepts negative shift counts,
40           (setup_fsr): load FSR and adjust IRP (indirect memory access),
41           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
42             generic pointers, __data pointers and __code pointers,
43           (genUnpackBits,genPackBits): rewritten to work with generic pointers
44             and signed bitfields, limit bitfields to 8 bit,
45           (genDataPointerGet): fixed number of bytes read,
46           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
47           (genPointerGet,genPointerSet): fixed handling of __code pointers,
48             pointers to constant data are no longer assumed to point to __code
49             space, removed invalid pointer types,
50           (bitpatternFromVal): retrieve the PICs representation of an integer
51             or float literal,
52           (genDataPointerSet): fixed assigning to po_immediate operands,
53           (genGenPointerSet): implemented as library call,
54           (genIfx): fixed incorrect condition,
55           (genAddrOf): limit generic pointers' addresses to 2 bytes,
56             provide GPOINTER tag according to destination's storage class,
57           (genCast): added code to handle casting to generic pointers, added
58             sign-/zero extension of the result
59           (aop_isLitLike,op_isLitLike): fixed handling of immediates
60         * src/pic/gen.h: added macros to access IRP bit in STATUS register
61         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
62           extend the result
63         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
64           address/register resides in the shared banks
65           (emitSymbolToFile): improved to handle global and `pinned' symbols,
66             put all variables into separate sections (have the linker arrange
67             them)
68           (picglue): put init code and interrupt handlers in separate sections
69         * src/pic/main.c: added port specific options table, modified to PORT
70           structure to make GPOINTERs 3 byte, added pic14_options
71           (_pic14_do_link): private linking routine (update paths to libraries,
72             add libsdcc.lib by default)
73         * src/pic/main.h: declare pic14_options
74         * src/pic/pcode.c: fixed instructions i/o relations,
75           (RegCond): reverted to correct version,
76           (newpCodeOpLit): truncate literals to 8 bit,
77           (genericPrint): added debug output,
78           (getRegFromInstruction): fixed for various operand types, simplified
79           (BuildFlow): fixed broken handling of isntructions with labels
80           (LinkFlow): start at last instruction in flow (skip trailing comments),
81             pass the flow on to the next instruction after CALL
82           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
83           (insertPCodeInstruction): fixed inserting after a skip instruction,
84           (DoBankSelect): fixed for labeled instructions
85           (OptimizepBlock): honor --nopeep switch
86           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
87         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
88         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
89           (pCodeOptime2pCodes): allow disabling this optimization via
90             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
91             but is still buggy), started implementation of a dataflow based
92             pCode optimization (CSE + dead code elimination)
93           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
94         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
95           names are independant of the stack location and therefore portable across
96           devices
97
98 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
99
100         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
101           (selectSpil): fixed bug 1337835 by not spilling bit variables
102         * support/regression/tests/bug1337835.c: added test for this bug
103         * src/mcs51/peeph.def: restart after rule 3.c,
104           addded rules 263.x to optimize loading constants
105
106 2005-10-26 Raphael Neider <rneider AT web.de>
107
108         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
109         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
110           (genAssign): emit warning when casting literals to generic pointer
111             type, also applies when taking the address of a fixed variable,
112           (genCast): improved casting to generic pointers
113         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
114           extern variables, added verbose error message
115         * device/include/pic16/{string.h,errno.h}: added #pragma library c
116
117 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
118
119         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
120         carry must be complemented too
121         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
122         could be emitted by genMinus
123         * src/SDCCval.c (constVal): fixed bug 1305065
124
125 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
126
127         * src/SDCCast.c (addCast): added promotion for bit variables
128         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
129         promotion casts + optimisation
130         (optimizeGetWord): fix warning 'i' might be used uninitialized
131         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
132         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
133
134 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
135
136         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
137         all chars are promoted to int; promotion should be handled in SDCCast.c
138
139 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
140
141         * device/lib/_strcmp.c: Fixed bug 1326457
142
143 2005-10-11 Raphael Neider <rneider AT web.de>
144
145         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
146         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
147
148 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
149
150         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
151         * support/regression/tests/sfr16.c: added test for the sfr32 bug
152
153 2005-10-04 Raphael Neider <rneider AT web.de>
154
155         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
156           device/lib/pic16/pics.all: added pic18f1320
157         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
158
159 2005-09-30 Raphael Neider <rneider AT web.de>
160
161         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
162         * src/pic16/devices.inc: NEW, provides device descriptions
163         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
164
165 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
166
167         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
168           GETHBIT
169
170 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
171
172         * doc/sdccman.lyx: updated Highest Order Bit documentation,
173           documented Any Order Bit, Higher Order Byte and Higher Order Word
174         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
175         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
176           (optimizeGetAbit): new, to get any bit, not only the high bit,
177           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
178           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
179           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
180           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
181             RIGHT_OP: also try GETBYTE, GETWORD optimization,
182             GETABIT, GETBYTE, GETWORD: decorate them,
183           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
184           (ast_print): added GETABIT, GETBYTE, GETWORD
185         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
186         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
187           (geniCodeBinary): new generic binary icode,
188           (ast2iCode): added GETABIT, GETBYTE, GETWORD
189         * src/port.h: updated comment for PORT.hasExtBitOp
190         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
191           (genGetByte): new, to get a single byte,
192           (genGetWord): new, to get a word from a long,
193           (gen51Code): added GETABIT, GETBYTE, GETWORD
194         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
195
196 2005-09-23 Raphael Neider <rneider AT web.de>
197
198         * configure.in, configure: have device/lib/pic configured
199         * device/lib/Makefile.in: added model-pic14
200         * device/lib/clean.mk: added pic/ to clean rule
201         * device/lib/pic: added rudimentary pic14 library providing support
202           functions for multiplication/division/generic pointer access
203         * src/SDCCopt.c (convilong): mark support functions as extern
204           for pic14 port as well
205         * src/pic/gen.c (genMult): added assertions,
206           (genpic14Code): emit warning on unhandled iCodes
207         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
208         * src/pic/pcode.c (pCodeOpCopy),
209         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
210           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
211           SFR_REGISTER}), made safe for future extensions
212         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
213           instructions even if preceeded by SKIP instructions (also remove
214           them); removed unused code
215         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
216           prevents leaving parts of the structure uninitialized after copying
217
218 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
219
220         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
221           ago by me
222         * support/regression/tests/addsub.c: added test for the bug
223
224 2005-09-21 Raphael Neider <rneider AT web.de>
225
226         * device/include/pic16/pic18f1220.h,
227           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
228         * device/lib/pic16/Makefile.rules: added missing opening paren
229         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
230           are provided in genutils.c,
231           (genUminusFloat,genUminus,genCmpEq): added asserts on different
232           operand/result sizes,
233           (genCmp): assert on NULL pointers first, then check deref'ed values
234         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
235           result size
236
237 2005-09-18 Raphael Neider <rneider AT web.de>
238
239         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
240           as these are now unused,
241           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
242         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
243           local, avoids uninitialized pointer dereference on r->name
244         * src/pic16/ralloc.c (newReg): fixed indentation
245
246 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
247
248         * src/SDCCval.c (constVal): fixed bug 730366
249         * support/Util/SDCCerr.c,
250         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
251
252 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
253
254         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
255
256 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
257
258         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
259
260 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
261
262         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
263           (hex2dec): made hex_digit unsigned char, removed ascii dependance
264         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
265           (hex2dec): made hex_digit unsigned char, removed ascii dependance
266         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
267         * packihx/packihx.c (hexDigit): made c unsigned char
268         * as/mcs51/lklibr.c (fndsym),
269         * link/z80/lkgb.c (gb),
270         * link/z80/lklibr.c (fndsym),
271         * link/z80/lkrloc.c (relr),
272         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
273         * src/SDCC.lex (checkCurrFile, process_pragma),
274         * src/SDCCglue.c (spacesToUnderscores),
275         * src/SDCCmain.c (setParseWithComma, processFile),
276         * src/asm.c (tvsprintf, printCLine),
277         * src/avr/gen.c (emitcode, aopPut),
278         * src/ds390/gen.c (emitcode),
279         * src/hc08/gen.c (emitcode, emitinline),
280         * src/mcs51/gen.c (emitcode, genInline),
281         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
282           tokenizeLineNode),
283         * src/pic/ralloc.c (debugLog),
284         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
285           tokenizeLineNode),
286         * src/pic16/ralloc.c (debugLog),
287         * src/z80/main.c (_process_pragma):
288            made all ctype.h function calls safe
289         * src/SDCCopt.c: include math.h for fabs
290         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
291           and used them throughout the code to make ctype.h function calls safe
292         * src/ds390/main.c (asmLineNodeFromLineNode),
293         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
294         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
295            unsigned char*
296         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
297           (newpCodeAsmDir): made ctype.h function calls safe
298         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
299           pic16_emitcode):  made lbp unsigned char*
300         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
301           (pic16_newpCodeAsmDir): made ctype.h function calls safe
302         * src/xa51/gen.c (emitcode),
303         * src/z80/gen.c (_emit2): made lbp unsigned char*
304         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
305            char*
306
307 2005-09-05 Raphael Neider <rneider AT web.de>
308
309         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
310           access bank splitpoint
311
312 2005-09-05 Raphael Neider <rneider AT web.de>
313
314         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
315
316 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
317
318         * .version: changed to version 2.5.3
319         * doc/sdccman.lyx: changed version to 2.5.3,
320           documented --codeseg and --constseg and pragma codeseg and constseg,
321           documented bit parameters (reentrant) and bit returning
322         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
323            currFunc->recvSize, but is this ok for all ports?
324           (ast2iCode): result of ~ on unsigned char must be cast to int for
325            bool to work
326         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
327           function pointers in bit space
328         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
329           (processFuncArgs): call port.reg_parm() with reentrancy info
330         * src/port.h,
331         * src/avr/main.c,
332         * src/ds390/main.c,
333         * src/hc08/main.c,
334         * src/pic/main.c,
335         * src/pic16/main.c,
336         * src/xa51/main.c,
337         * src/z80/main.c: port.reg_parm prototype extended with
338           "bool reentrant" parameter
339         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
340           options.stackAuto for allocating bit register parameters
341         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
342           (genSend): set BitBankUsed if it is,
343           (selectRegBank): factored out of genCall for use in genPcall,
344           (genCall): removed redundant dtype assignmen, use selectRegBank,
345           (genPcall): handle returning in Carry properly, save in F0 if needed,
346           (genReceive): handle bit register parameters
347         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
348           (mcs51_assignRegisters): enable bit registers for all reentrant
349            functions and don't set BitBankUsed unconditionally
350         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
351         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
352         * support/regression/tests/funptrs.c: added tests for BOOL and for return
353
354 2005-08-27 Borut Razem <borut.razem AT siol.net>
355
356         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
357         ppc-osx (Darwin) does not support -u option. It seems that it is
358         supported only on Linux - GNU cp
359
360 2005-08-25 Borut Razem <borut.razem AT siol.net>
361
362         * sim/ucsim/gui.src/serio.src/Makefile.in,
363           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
364           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
365           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
366           install and strip, since the strip at /usr/ccs/bin should be used
367           on solaris
368
369 2005-08-24 Borut Razem <borut.razem AT siol.net>
370
371         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
372
373 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
374
375         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
376         ffffffffu
377
378 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
379
380         * as/mcs51/aslink.h: completed lkrloc.c prototypes
381         * as/mcs51/lkmain.c (link_main): fixed warning
382         * device/include/stdbool.h: ds390 has no advanced bit support yet
383         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
384         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
385         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
386           and updated their macros
387         * src/SDCCval.c (constVal): updated comment for renamed b_long
388
389 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
390
391         * as/mcs51/asdata.c: changed ctype['['] to BINOP
392         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
393           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
394           (oprio): set priority for '['
395         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
396            and adb_24_bit
397         * as/mcs51/asm.h: added defines R_BIT and S_BIT
398         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
399         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
400         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
401           added overlayable BIT_BANK area
402         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
403           (summary2): explain 'T' in legenda
404         * as/mcs51/lkrloc.c: replaced old K&R style,
405           (relr): added R_BIT processing,
406           (errmsg): added "Bit-addressable relocation error",
407           (adb_bit): added for converting from byte- to bit-addressable space,
408           (adb_24_bit): added for converting from byte- to bit-addressable space
409         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
410            used in reentrant functions now even as return value
411         * device/lib/_gptrput.c (_gptrput): removed obsolete code
412         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
413           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
414         * src/SDCCglobl.h: added indicator BitBankUsed
415         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
416            the bit registers b0-b7
417         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
418           (geniCodeCast): fixed bug 1263853,
419           (geniCodeLogicAndOr): put result in bool or char,
420           (geniCodeReceive): added parameter func for accessing the return type,
421           (geniCodeFunctionBody): pass func to geniCodeReceive
422         * src/SDCCmain.c: added indicator BitBankUsed
423         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
424         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
425           (checkSClass): don't put automatic bool/bit on stack,
426           (checkFunction): removed check on function cannot return bit
427         * src/SDCCsymt.h: added newBoolLink prototype
428         * src/mcs51/gen.c (rb1regs): added bit registers,
429           (movc): created for assigning to carry,
430           (pushReg, popReg): created for pushing registers,
431           (sameRegs): check both AOP_REG and AOP_CRY types,
432           (aopOp): handle bit registers,
433           (aopPut): optimization no self-assign,
434           (saveRegisters): push reg->base (bits) only once for bit registers,
435            and use pushReg,
436           (unsaveRegisters): pop reg->base only once and use popReg,
437           (assignResultValue): added parameter func and return in carry for bits,
438           (genIpush): optimization no reload in A if not changed,
439           (genSend): bit parameters in reentrant functions are passed in bit
440            registers by first assigning to bits in B, then save registers and
441            copy B to bits,
442           (genCall): handle returning in Carry properly, save it in F0 if needed,
443           (genPcall): updated assignResultValue call, this is not safe yet for bit
444            returning function !!!
445           (genFunction): don't generate equ's for bit registers and use pushReg,
446           (genEndFunction): take care of bit returning functions and use popReg,
447           (genRet): return bit in Carry,
448           (genIfx): optimize bit registers and other directly addressable bits,
449           (genReceive): updated assignResultValue call
450         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
451           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
452            registers when using stack-auto
453         * src/mcs51/ralloc.c (_G): added allBitregs,
454           (regs8051): added the bit registers,
455           (createStackSpil): use macro IS_BIT,
456           (getRegBit): added to allocate a bit register, else spill,
457           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
458           (updateRegUsage): factored out to ease stepping while debugging,
459           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
460            also allocate bit registers,
461           (fillGaps): handle bit registers,
462           (findAllBitregs): added to create bit vector with all bit registers,
463           (mcs51_allBitregs): returns this bit vector,
464           (mcs51_assignRegisters): when using stack-auto use bit registers for
465            passing parameters and creating local variables
466         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
467
468 2005-08-22 Borut Razem <borut.razem AT siol.net>
469
470         * device/lib/Makefile.in: replaced find option -or with -o
471           to make it run on solaris
472
473 2005-08-22 Raphael Neider <rneider AT web.de>
474
475         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
476           fixes #1265442 (crash on Solaris)
477
478 2005-08-20 Borut Razem <borut.razem AT siol.net>
479
480         * configure, configure.in: added tests for libsocket and libnsl libraries,
481           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
482           from support/regression/Makefile.in
483         * support/regression/Makefile.in: added
484         * device/lib/pic16/Makefile.common.in: force make to use bash shell
485         * sim/ucsim/libtool: regenerated on sparc-solaris
486         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
487           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
488           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
489           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
490           sparc-solaris, which doesn't use GNU ld linker
491         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
492         * as/Makefile: find on sparc-solaris does not support -maxdepth option
493
494 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
495
496         * src/mcs51/peeph.def: updated comments
497
498 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
499
500         * device/lib/_gptrget.c,
501         * device/lib/_gptrput.c: slightly shorter
502         * doc/sdccman.lyx: incremented version
503         * src/mcs51/peeph.def: moved peephole comments to the line of first
504           change to better keep line correlation, reanimated 186.e
505         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
506
507 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
508
509         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
510           David Saxton with quotes around file name.
511
512 2005-08-15 Borut Razem <borut.razem AT siol.net>
513
514         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
515           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
516           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
517           make tests run on x86_64 platform
518
519 2005-08-13 Raphael Neider <rneider AT web.de>
520
521         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
522           as it might be executed DURING a build (parallel make is wonderful)
523
524 2005-08-13 Raphael Neider <rneider AT web.de>
525
526         * device/lib/Makefile.in (port-specific-objects-pic16):
527           revert to cp $(PORT)/bin/*.* $(PORTDIR)
528         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
529           dependency
530         * device/lib/pic16/Makefile.rules: build subdirs before creating
531           the library, removed builddir rule, create $(builddir) early in
532           recurse rule, use empty recurse rule for leaf directories
533         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
534           mkdir errors (race condition), removed duplicate suffix "hex"
535           from clean rules
536         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
537         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
538           prevents mkdir -p from aborting on Alpha
539
540 2005-08-12 Raphael Neider <rneider AT web.de>
541
542         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
543           db-statements in order to allow for arrays of pointers in code
544           sections to be placed without interspersed 0-padding, fixes
545           bug #1256215
546         * (emitStatistics): fixed division by zero for pic18f1220
547         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
548           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
549         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
550         * (pic16_pCodeConstString): keep track of already emitted string
551           literals to prevent "duplicate definitions of symbol _str_NR"
552         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
553           debug message
554         * device/lib/Makefile.in: ignore failing PIC16 library builds
555         * device/lib/pic16/Makefile: do not build if gputils are missing
556         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
557
558 2005-08-10 Raphael Neider <rneider AT web.de>
559
560         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
561           my last commit)
562
563 2005-08-10 Raphael Neider <rneider AT web.de>
564
565         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
566           Rokas' patch to add the new fixed point type "__fixed16x16"
567         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
568           functions for __fixed16x16 arithmetics
569         * device/lib/pic16: reimplemented the build system to support
570           a separate build directory, better handling of libio (create
571           the library in a separate subdir for each architecture) and
572           easier configuration (centralized in Makefile.common)
573
574 2005-08-07 Raphael Neider <rneider AT web.de>
575
576         * src/pic16/gen.c (genrshTwo): fixed sign extension
577         * src/pic16/device.c: added pic18f2320, 4220 and 4320
578         * device/include/pic16/pic18f2220.h: changed some bit definitions,
579           added T0CONbits
580         * device/include/pic16/pic18f4220.h: NEW, header for
581           pic18f4220 and pic18f4320
582         * device/include/pic16/pic18fregs.h: added new devices,
583           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
584         * device/include/pic16/signal.h: resolved name clashes
585           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
586           to also allow testing for interrupt enable bits, added
587           comments on how to use the macros
588         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
589         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
590           register definitions for the devices
591         * device/lib/pic16/pics.all: added new devices
592         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
593           allocated memory
594         * device/lib/pic16/libc/stdlib/memfree: do not count
595           the block header as free memory
596         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
597           simplified and added missing end-of-blocklist-marker
598           (reported by Peter Onion, fixes #1252814)
599         * (_mergeHeapBlock): fixed loop condition
600         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
601           len==0, restructured code
602         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
603           up a bit, reduced bitfield accesses, prevent endless loops
604           in case of heap corruption
605         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
606           "unreferenced arguments/must return a value" warnings
607         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
608           replaced BAUDREG with SPBRG
609         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
610           device/lib/pic16/debug/gstack/gstack.c: replaced
611           _naked, _asm, _endasm with __naked, __asm, __endasm
612
613 2005-08-05 Raphael Neider <rneider AT web.de>
614
615         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
616           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
617
618 2005-08-05 Borut Razem <borut.razem AT siol.net>
619
620         * device/lib/Makefile.in: added missing ';'
621         * configure: removed ^M characters
622
623 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
624
625         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
626           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
627           License
628
629 2005-08-04 Borut Razem <borut.razem AT siol.net>
630
631         * configure.in: pic16 libraries build 2nd try - enable running
632           configure in device/lib/pic16
633         * configure: regenerated from configure.in
634         * device/lib/Makefile.in: create $(PORT)/bin directory
635
636 2005-08-03 Raphael Neider <rneider AT web.de>
637
638         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
639           to get/set values via pointers
640         * (genUnpackBits,genPackBits): changed detection of
641           ptr->bitfield vs. sym.bitfield, fixed access via generic
642           pointers, removed dead (wrong) code for multibyte bitfields
643         * (genNearPointerGet, genGenPointerGet): removed useless code,
644           fixed bitfield detection, fixes #1250594
645         * (genNearPointerSet): removed useless code
646         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
647           and introduced macro pic16_emitpcode that conditionally emits
648           the origin of the following pCode (useful for debugging SDCC)
649         * src/pic16/pcode.c: changed (and disabled) some debug outputs
650         * (createDefmap): fixed handling of LFSR for --optimize-df
651
652 2005-08-02 Borut Razem <borut.razem AT siol.net>
653
654         * device/lib/Makefile.in: pic16 libraries build enabled since
655           gputils-0.13.2 are now localy installed at sourceforge's compile farm
656
657 2005-08-02 Raphael Neider <rneider AT web.de>
658
659         * src/pic16/gen.c (genPackBits): removed deprecated warning
660         * (genGenPointerSet): fixed bitfield detection
661
662 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
663
664         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
665
666 2005-07-31 Raphael Neider <rneider AT web.de>
667
668         * device/lib/pic16/libdev/pic18f458.c,
669           device/include/pic16/pic18f458.h: added missing T0CONbits
670
671 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
672
673         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
674
675 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
676
677         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
678
679 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
680
681         * device/include/mcs51/at89c51ed2.h: added.
682
683 2005-07-23 Raphael Neider <rneider AT web.de>
684
685         * src/pic/gen.h: added emitpcode macro for debugging
686         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
687           and replace by macro adding debug information on demand
688         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
689         * (gencjne): tried to fix; replaced with correct (slower) code
690         * (gen{Unp,P}ackBits): fixed single bit access
691         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
692         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
693           previous instruction
694         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
695           register has to be handled with care (forbidding movement
696           of assignments/uses, removing assignments completely, ...)
697         * (pCodeOptime2pCodes): make use of regIsSpecial
698         * added lots of debugging output (commented out)
699         * src/pic/rallloc.c (deassignLRs): prevent operand registers
700           from being reused as result UNLESS it is known to work
701
702 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
703
704         * support/Util/dbuf.h: include <stddef.h> for size_t
705         * .version: changed to version 2.5.2
706
707 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
708
709         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
710
711 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
712
713         * src/hc08/gen.c (genMinus): fixed bug #1241835,
714           (genModOneByte): removed needless psha/pula
715
716 2005-07-22 Raphael Neider <rneider AT web.de>
717
718         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
719           have PIC14 handled like PIC16, fixes broken pic14 linker calls
720         * src/pic/gen.c (resolveIfx): do not "invent" labels
721         * (genSkipc): changed to positive logic
722         * (genSkipCond): removed as no longer needed
723         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
724           backport from PIC16
725         * (genLeftShift): check operands are in different registers
726         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
727           INCF does not update CARRY...
728         * src/pic/main.c: fixed _linkCmd
729         * src/pic/pcode.c (unlinkpCode): added inactive code
730         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
731           alive (do not assign result and operand overlapping registers)
732
733 2005-07-22 Raphael Neider <rneider AT web.de>
734
735         * src/pic/device.c (dump_sfr): replaced register declaration with
736           call to emitSymbolToFile() to avoid duplicate symbols
737         * (assignRelocatableRegisters): do not declare external symbols
738         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
739           right (take size of type, not etype)
740         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
741         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
742         * (packRegsForAccUse): disabled assignment of WREG as
743           the result reg to prevent occurence of just fixed #1235003,
744           fixes #1242954
745         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
746           symbols (avoids duplicate symbols in .asm file)
747         * (pic14emitRegularMap): use emitSymbolToFile()
748         * src/pic/gen.c (aopOp): fixed spillLocation handling
749         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
750         * (genDataPointerSet): removed unneccessary variables/output
751
752 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
753
754         * as/mcs51/lkarea.c: enlarged codemap for banked memory
755         * device/lib/mcs51/crtbank.asm: added # to 0x0F
756
757 2005-07-21 Raphael Neider <rneider AT web.de>
758
759         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
760           architecture cannot handle them efficiently, fixes bug #1235003
761         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
762           check for empty sets before using them (fixes bug #1232190)
763
764 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
765
766         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
767           (lnksect2): generate warnings for memory overlap
768         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
769           constseg to set the name of these segments so you can instruct the linker
770           to place them in banks
771         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
772         * src/SDCCglobl.h: added MODEL_HUGE to enum,
773           added code_seg and const_seg to options
774         * src/SDCCglue.c (emitMaps): use options.const_seg,
775           (createInterruptVect): put interrupt vectors in segment HOME,
776           (glue): put HOME before static segment and put the main glue in HOME,
777           (glue): use options.code_seg
778         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
779         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
780           these segments so you can instruct the linker to place them in banks
781           (linkEdit): use code_loc for HOME segment which should be the first
782           segment in code memory now
783         * src/SDCCmem.c: fixed more stuff like bug 1238386
784         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
785           (changePointer): don't change function pointers to code pointers for
786           banked functions,
787           (compareType): added exceptional check for banked function pointers
788         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
789         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
790           after static in code memory
791         * src/mcs51/gen.c: added aopLiteralLong prototype,
792           (aopForSym): use getSize for functions,
793           (genCall): generate banked calls over one trampoline __sdcc_banked_call
794           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
795           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
796           the segment,
797           (genPcall): use call for literal function pointers and generate banked
798           calls over the one trampoline so there's only one place for the user to
799           modify according to his/hers hardware,
800           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
801           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
802         * src/mcs51/main.c: added keyword banked,
803           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
804         * support/Util/SDCCerr.c,
805         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
806           needed for passing the bank and address to the trampoline
807         * device/lib/mcs51/crtbank.asm: added for bankswitching
808         * device/lib/mcs51/Makefile: added crtbank
809
810 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
811
812         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
813           for fields at offset 0 of a struct or union as reported
814           on 2005-07-07 in the developer mailing list.
815
816 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
817
818         * src/SDCCmem.c: fixed bug 1238386
819
820 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
821
822         * src/mcs51/peeph.def: added labelrefcounting for peepholes
823           (patch #1144962), added peephole 300, enabled 259.x
824         * doc/sdccman.lyx: removed screenshot and provided link instead
825
826 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
827
828         * doc/sdccman.lyx: added section about debugging with ddd
829         * doc/figures/ddd_example.eps: screenshot of debugging session
830
831 2005-07-04 Raphael Neider <rneider AT web.de>
832
833         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
834           like CODE pointers, fixes #1115683
835         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
836           call, fixes bugs #1232211, #1228110,
837           fixed wrong casts to pCodeFlow from pCodeInstructions
838
839 2005-07-04 Raphael Neider <rneider AT web.de>
840
841         * src/pic/gen.c (popGet): changed assert to allow for
842           bit operands
843         * (popGetAddr): changed signature to provide
844           an additional index, patched all call sites
845         * (genCmpEq): handle literal-like operands correctly
846         * (genAddrOf): added sanity checks on __code/__data pointers
847         * (genAssign): added handling of symbols from __code section
848         * (gencjne): do not generate code for comparisons whose result
849           is neither stored nor used, fixes bug #1171114
850         * (AccLsh, AccRsh): operate on operand instead of WREG
851         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
852           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
853           by known count
854         * rewrote complete shift-by-literal logic, commented unused
855           functions out
856         * (genConstPointerGet): get multiple bytes (if result size > 1),
857           fixed handling of non-immediate addresses
858         * (genPointerGet): handle CODE pointers like CONST pointers
859         * (genpic14Code): insert C-SRC lines as Cource-pCodes
860         * ({aop,op}_isLitLike): NEW, single place to decide whether an
861           operand is to be treated as a literal or not
862         * (mov2w,genPcall,genCmpEq),
863           src/pic/genarith.c: use aop_isLitLike() to decide between
864           literal/register contents
865         * (addSign): added missing offset
866         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
867           only emit comment in debug-mode,
868           use {aop,op}_isLitLike throughout the file
869         * src/pic/glue.c: fix initializers for pointers (work in progress)
870         * src/pic/pcode.c (get_op): honor index on _const symbols
871         * ({reset,dump}pCodeStatistics): NEW, estimate code size
872         * (dumppBlock): added pCode size estimation
873         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
874           check for IS_SYMOP before OP_SYMBOL'ing
875         * fixed indentation, compacted switch-statements
876         * (allocReg): find free register and allocate it instead of
877           allocating new registers all the time
878         * (deassignLRs): prevent POINTER_GET's from being assigned the same
879           registers as its operands (necessary only for multibyte GETs)
880
881 2005-07-01 Raphael Neider <rneider AT web.de>
882
883         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
884           debugging .asm-output macros FENTRY + FEXIT
885         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
886           way... I wonder...
887         * (emitpComment): NEW, printf to pCode
888         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
889           offset handling
890         * (popGetAddr): NEW, variant of popGet to access an immediates
891           high(er) bytes instead of the n'th byte of memory they reference,
892           replaced popGet with popGetAddr where neccessary
893         * (genDataPointerGet): reactivated and fixed implementation
894         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
895           accesses
896         * (genDataPointerSet): fixed multibyte assignments
897         * (genpic14Code): fixed --i-code-in-asm handling
898         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
899         * (genPlus): fixed index-out-of-bounds error
900         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
901         * src/pic/ralloc.c: added debugging output macro FENTRY2
902         * (spillThis): fixed indentation, enbraced for-body for clarity
903         * (rematStr): commented out as now unused
904         * (regTypeNum): commented out special spill case (overwrites
905           arbitrary values)
906         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
907
908 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
909
910         * doc/sdccman.lyx: documented sfr16/sfr32,
911           added example for using storage class with function pointers
912         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
913
914 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
915
916         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
917         * device/lib/_itoa.c,
918         * device/lib/_ltoa.c: optimized codesize
919         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
920           but don't know how to suppress the double warning.
921         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
922         * support/Util/SDCCerr.c,
923         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
924
925 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
926
927         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
928           fixed old K&R prototypes
929         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
930         * device/lib/_gptrget.c,
931         * device/lib/_gptrgetc.c,
932         * device/lib/_gptrput.c: changed versions for new memory indicator values,
933           also new versions for small generic pointers and banked generic pointers
934         * src/port.h: added const_name
935         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
936         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
937         * src/SDCCcse.c (findPrevIc): check all associative operators
938         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
939         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
940         * src/SDCCmem.c: updated comments,
941           set far-space to 0 for pdata, results in optimized code
942         * src/SDCCmem.h: added macro CONST_NAME
943         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
944           moving the info into the highest bits, see also gptrget/gptrput
945         * src/src.dsp: added sdcc.ico to project files
946         * src/avr/gen.c (genCast): fixed bug 0x%d
947         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
948         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
949           relation between ptr_type and DCL_TYPE,
950           (genCast): fixed bug 0x%d
951         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
952           (CODE)" for const_name
953         * src/hc08/gen.c (genCast): fixed bug 0x%d
954         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
955           (hc08_port): added "CONST (CODE)" for const_name
956         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
957           (aopForRemat, adjustArithmeticResult): disconnected direct relation
958           between ptr_type and DCL_TYPE,
959           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
960           operand* and took AOP() inside function so sfr-ness can be checked,
961           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
962           new prototype,
963           (genFunction, genEndFunction): optimized stack setup,
964           (genMinus): optimized for literals with ending zeroes (in bytes),
965           (genCast): fixed bug 0x%d
966         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
967           (mcs51_port): added "CONST (CODE)" for const_name
968         * src/mcs51/peeph.def: made rule 226 more generic
969         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
970         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
971         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
972         * src/z80/main.c (z80_port): added NULL for const_name,
973           (gbz80_port): added NULL for const_name
974         * support/regression/tests/bug663539.c,
975         * support/regression/tests/sfr16.c: new tests
976
977 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
978
979         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
980
981 2005-06-24 Raphael Neider <rneider AT web.de>
982
983         * device/lib/pic16/libdev/pic18f[68][567]20.c:
984           corrected typos...
985         * device/include/pic16/signal.h: added USBIF
986           and SIG_USB
987
988 2005-06-24 Raphael Neider <rneider AT web.de>
989
990         * device/lib/pic16/libdev/pic18f2455.c,
991           device/include/pic16/pic18f2455.h: NEW
992         * device/include/pic16/pic18fregs.h,
993           device/lib/pic16/pics.all,
994           src/pic16/device.c: added 18f2455
995         * device/lib/pic16/libdev/pic18f[68][567]20.c,
996           device/include/pic16/{pic18f[68][567].h,usart.h}:
997           replaced MULTIPLE_USARTS define with more relaible
998           compatibility sfrs (for USART access)
999
1000 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1001
1002         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1003           and the output asm file line is printed on two lines.
1004
1005 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1006
1007         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1008           BGT, BLE, BHI, and BLS instructions
1009         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1010           genCmpEq): removed
1011         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1012           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1013           fixes bug #1216342
1014         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1015
1016 2005-06-15 Raphael Neider <rneider AT web.de>
1017
1018         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1019         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1020         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1021           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1022           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1023
1024 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1025
1026         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1027           Marcel Telka in bug #1215704
1028
1029 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1030
1031         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1032           located in shared memory bank.
1033
1034 2005-05-31 Raphael Neider <rneider AT web.de>
1035
1036         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1037           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1038           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1039
1040 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1041
1042         * device/lib/_strncpy.c: fixed the fix
1043
1044 2005-05-26 Raphael Neider <rneider AT web.de>
1045
1046         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1047           initializers with \0, bug #1208187
1048         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1049           intializers with \0, bug #1208187
1050
1051 2005-05-26 Raphael Neider <rneider AT web.de>
1052
1053         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1054           initializers with \0, bug #1208187
1055         * src/pic16/main.c (_process_pragma): added sanity checks
1056           for stack position and size, emit warnings when appropriate
1057
1058 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * device/lib/_strncpy.c: fixed not filling with \0
1061
1062 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1063
1064         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1065           createFunction),
1066         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1067           compound_statement),
1068         * src/SDCCsymt.h,
1069         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1070
1071 2005-05-24 Raphael Neider <rneider AT web.de>
1072
1073         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1074
1075 2005-05-24 Raphael Neider <rneider AT web.de>
1076
1077         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1078           TRISE definitions, closes bug #1162453
1079
1080 2005-05-22 Raphael Neider <rneider AT web.de>
1081
1082         * src/pic16/main.c (_process_pragma): check for missing
1083           arguments to pragmas code and udata
1084         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1085           consistency fixes to match other headers (thanks to Jim Paris)
1086         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1087
1088 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1089
1090         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1091
1092 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1093
1094         * support/regression/tests/bug1198642.c: new test
1095         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1096         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1097         * support/scripts/resource.h,
1098         * support/scripts/resource.rc,
1099         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1100         * support/scripts/sdcc.ico: added 32x32 icon
1101
1102 2005-05-18 Raphael Neider <rneider AT web.de>
1103
1104         * device/lib/pic16/libdev/pic18f*.c,
1105         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1106           keywords to "__sfr" and "__at (X)"
1107         * device/include/pic16/pic18fregs.h: added pic18f4520
1108         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1109           #1203088 (MPLAB compatibility)
1110
1111 2005-05-17 Raphael Neider <rneider AT web.de>
1112
1113         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1114         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1115         * device/lib/pic16/pics.all: added new devices
1116         * src/pic16/device.c: added support for pic18f4520
1117
1118 2005-05-16 Raphael Neider <rneider AT web.de>
1119         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1120         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1121         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1122           convenience function for bit access
1123
1124 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1125
1126         * device/lib/printf_large.c: fixed bug 1193299
1127         * support/regression/tests/bug1057979.c: added test %3.3s
1128
1129 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1130
1131         * device/include/mcs51/8051.h,
1132         * device/include/mcs51/8052.h: made parseable with lint
1133         * device/include/mcs51/lint.h: added include file for (sp)lint
1134         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1135         * doc/cdbfileformat.lyx,
1136         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1137
1138 2005-05-14 Raphael Neider <rneider AT web.de>
1139
1140         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1141         * device/lib/pic16/libc/stdlib/itoa.c (new)
1142         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1143         * device/lib/pic16/libio/Makefile: exclude subdir according to
1144           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1145         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1146         * src/pic16/gen.c (genFunction): prevent annoying warning
1147         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1148           nameclashes on BeOS
1149         * support/cpp2/cppmain.c (cpp_output_string): new
1150         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1151           fixes bug 1116802
1152
1153 2005-05-13 Borut Razem <borut.razem AT siol.net>
1154
1155         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1156
1157 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1158
1159         * .version: changed to version 2.5.1; back to bleeding edge development
1160
1161 2005-05-11 Borut Razem <borut.razem AT siol.net>
1162
1163         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1164           generate PDF version 1.3 documents
1165
1166 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1167
1168         * .version: changed to version 2.5.0
1169
1170 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1171
1172         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1173
1174 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1175
1176         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1177         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1178         well as many smaller updates.
1179         * .version: changed to version 2.5.0-pre1
1180
1181 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1182
1183         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1184
1185 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1186
1187         * support/regression/tests/bug1185672.c: added
1188         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1189           bug 1185672
1190         * src/mcs51/gen.c (genCall): added comments, made it look safer
1191         * src/mcs51/gen.c (genEndFunction): simplified
1192
1193 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1194
1195         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1196
1197 2005-04-14 Borut Razem <borut.razem AT siol.net>
1198
1199         * fixed bug 1045046 - SIGSEGV with really simple code?:
1200           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1201           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1202
1203 2005-04-14 Borut Razem <borut.razem AT siol.net>
1204
1205         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1206           src/pic16/device.h: temporarily disabled experimental #inline pragma
1207           for 2.5.0 release
1208
1209 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1210
1211         * device/include/z80/stdio.h,
1212         * device/include/z80/string.h: removed these highly incomplete files so
1213           SDCC can use the default ones in device/include/
1214
1215 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1216
1217         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1218         gcc warning.
1219         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1220         fix sdcpp warnings.
1221
1222 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1223
1224         * device/include/malloc.h: removed redundant __reentrant prototypes
1225         * device/lib/_mullong.c: added working xstack variant in asm (C version
1226           doesn't pass regression tests)
1227         * device/lib/bpx.c: used __data and made bpx char for mcs51
1228         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1229           (createFunction): fixed bug with xstackPtr
1230         * src/SDCCcse.c: corrected comments
1231         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1232           (killDeadCode, eBBlockFromiCode): removed unused code
1233         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1234           corrected comments
1235         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1236           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1237           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1238           (genModOneByte): fixed warning in MSVC
1239         * src/mcs51/main.c (): added comments
1240         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1241
1242 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1243
1244         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1245
1246 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1247
1248         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1249
1250 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1251
1252         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1253         characters arrays of larger size than the declared one.
1254
1255 2005-04-10 Borut Razem <borut.razem AT siol.net>
1256
1257         * src/pic/gen.c (genInline),
1258           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1259           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1260           (findNextInstruction), (findPrevInstruction),
1261           (findInstructionUsingLabel),
1262           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1263         * src/pic/pcode.c (findLabel): added missing '\n'
1264         * src/src.dsp: added SDCCdwarf2.c to the project
1265
1266 2005-04-09 Borut Razem <borut.razem AT siol.net>
1267
1268         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1269
1270 2005-04-08 Raphael Neider <rneider AT web.de>
1271
1272         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1273           into the chain after a given one) and mergeDefmapSymbols (combine
1274           defmap entries for each symbol per pcode)
1275         * (createDefmap): have defmap entries merged in the end
1276         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1277           a symbol before replacing one access type's symbol, merge symbols in
1278           the end (replacement symbol might already have an entry)
1279         * (assignValnums): keep reference to written WREG intact
1280
1281 2005-04-08 Raphael Neider <rneider AT web.de>
1282
1283         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1284           Alpha)
1285
1286 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1287
1288         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1289         bytes
1290
1291 2005-04-07 Raphael Neider <rneider AT web.de>
1292
1293         * device/include/pic16/usart.h: added compatibility defines for
1294           devices with more than one USART
1295         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1296
1297 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1298
1299         * device/lib/Makefile.in: updated for port specific include
1300
1301 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1302
1303         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1304
1305 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1306
1307         * device/include/8051.h,
1308         * device/include/8052.h,
1309         * device/include/at89S8252.h,
1310         * device/include/at89c55.h,
1311         * device/include/at89x051.h,
1312         * device/include/at89x51.h,
1313         * device/include/at89x52.h,
1314         * device/include/mcs51reg.h,
1315         * device/include/reg51.h,
1316         * device/include/reg764.h,
1317         * device/include/regc515c.h,
1318         * device/include/sab80515.h: (re)moved these 12 files
1319         * device/include/mcs51/8051.h,
1320         * device/include/mcs51/8052.h,
1321         * device/include/mcs51/at89S8252.h,
1322         * device/include/mcs51/at89c55.h,
1323         * device/include/mcs51/at89x051.h,
1324         * device/include/mcs51/at89x51.h,
1325         * device/include/mcs51/at89x52.h,
1326         * device/include/mcs51/mcs51reg.h,
1327         * device/include/mcs51/reg51.h,
1328         * device/include/mcs51/reg764.h,
1329         * device/include/mcs51/regc515c.h,
1330         * device/include/mcs51/sab80515.h: and added them here
1331
1332 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1333
1334         * device/include/stdarg.h: changed SDCC specific keywords to double
1335           underlined form.
1336         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1337           mcs51 and ds390.
1338         * device/include/hc08/mc68hc908gp32.h,
1339         * device/include/hc08/mc68hc908jb8.h,
1340         * device/include/hc08/mc68hc908jkjl.h,
1341         * device/include/hc08/mc68hc908qy.h: fixed comments
1342         * device/include/mcs51/README: updated
1343         * device/include/mcs51/c8051f120.h: added PINRSF
1344         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1345         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1346           amidst code. Also inline is not supported.
1347
1348 2005-04-06 Raphael Neider <rneider AT web.de>
1349
1350         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1351         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1352           callers stack/frame pointers
1353
1354 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1355
1356         * device/include/pic16/usart.h: added, missing in previous commit,
1357         * device/include/pic16/adc.h: fixed typo,
1358         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1359         commit,
1360         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1361         <p18fxxx.inc>
1362         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1363         uninitialized because a bug appears with gplink
1364         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1365         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1366         complains for unrecognised option
1367
1368 2005-04-05 Raphael Neider <rneider AT web.de>
1369
1370         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1371           structs as well (using memcpy)
1372         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1373           on ISRs (GOTO has no label)
1374         * src/pic16/device.h: added OF_OPTIMIZE_DF
1375         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1376           new data flow analysis/optimization
1377         * src/pic16/pcode.c: added (prototypes for and implementation of)
1378           dataflow analysis functions, fixed pCodeInstructions' inCond and
1379           outCond values, made RCALL a branch instruction
1380         * (pic16_unlinkpCode): keep C line if possible
1381         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1382           C line moved if possible
1383         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1384         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1385           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1386         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1387           new flow)
1388         * (pic16_getJumptabpCode): NEW, needed in...
1389         * (LinkFlow): fixed handling of jumptables, calls and conditional
1390           branches
1391         * (pic16_InsertCommentAfter): NEW
1392         * (pic16_pCodeReplace): made verbose and flow preserving
1393         * (AnalyzeFlow): added call to data flow analysis
1394         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1395         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1396         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1397
1398 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1399
1400         * src/SDCCast.c (decorateType): fixed bug #1105626
1401
1402 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1403
1404         * device/include/asm/pic16/features.h,
1405         * pic18f*.h headers,
1406         * device/include/pic16/adc.h,
1407         * device/include/pic16/delay.h,
1408         * device/include/pic16/i2c.h,
1409         * device/include/pic16/malloc.h,
1410         * device/include/pic16/stdio.h,
1411         * device/include/pic16/stdlib.h,
1412         * device/include/pic16/string.h,
1413         * device/lib/pic16/libc/stdio/printf_tiny.c,
1414         * device/lib/pic16/libc/stdio/printf_small.c,
1415         * device/lib/pic16/libc/stdio/strmgpsim.c,
1416         * device/lib/pic16/libc/stdio/strmmssp.c,
1417         * device/lib/pic16/libc/stdio/strmusart.c,
1418         * device/lib/pic16/libc/stdio/vfprintf.c,
1419         * device/lib/pic16/libc/stdlib/ltoa.c,
1420         * device/lib/pic16/libc/stdlib/putchar.c,
1421         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1422         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1423         * device/lib/pic16/libc/stdlib/memchrram.c,
1424         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1425         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1426         * device/lib/pic16/libio/adc/adcbusy.c,
1427         * device/lib/pic16/libio/adc/adcread.c,
1428         * device/lib/pic16/libio/adc/adcsetch.c,
1429         * device/lib/pic16/libio/usart/ubaud.c,
1430         * device/lib/pic16/libio/usart/ubusy.c,
1431         * device/lib/pic16/libio/usart/udrdy.c,
1432         * device/lib/pic16/libio/usart/uopen.c,
1433         * device/lib/pic16/libio/usart/uputc.c,
1434         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1435         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1436         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1437         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1438         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1439         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1440         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1441         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1442         specific keywords to double underlined form,
1443         * device/lib/pic16/libc/Makefile.rules,
1444         * device/lib/pic16/libsdcc/Makefile.rules,
1445         * device/lib/pic16/libm/Makefile,
1446         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1447         to compile with C standard set in Makefile.common
1448         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1449         rand.c and crc.c in compilation process,
1450         * device/lib/pic16/libsdcc/int/divuint.c,
1451         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1452         `c' from signed to unsigned,
1453         * device/lib/pic16/startup/crt0.c,
1454         * device/lib/pic16/startup/crt0i.c,
1455         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1456         keywords to double underlined form, bug fixes in _do_cinit function
1457         which prevented the correct initialization of the .idata segment,
1458         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1459         core to enter a infinite loop
1460         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1461
1462 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1463
1464         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1465
1466 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1467
1468         * device/include/Makefile.in: add support for hc08 subdirectory
1469         * device/include/hc08/: new subdirectory
1470         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1471         Lucas Loizaga, thanks!
1472         * device/include/hc08/mc68hc908qy.h,
1473         * device/include/hc08/mc68hc908gp32.h,
1474         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1475         their own directory. Changed internal macro names to use the compiler
1476         reserved namespace. Changed SDCC specific keywords to double
1477         underlined form.
1478         * device/include/math.h,
1479         * device/include/malloc.h,
1480         * device/include/stdarg.h,
1481         * device/include/stdbool.h
1482         * device/include/string.h,
1483         * device/include/tinibios.h,
1484         * device/include/ds400rom.h,
1485         * device/include/8051.h,
1486         * device/include/8052.h,
1487         * device/include/80c51xa.h,
1488         * device/include/at89c55.h,
1489         * device/include/at89S8252.h,
1490         * device/include/at89x51.h,
1491         * device/include/at89x52.h,
1492         * device/include/ds80c390.h,
1493         * device/include/reg764.h,
1494         * device/include/regc515c.h,
1495         * device/include/sab80515.h,
1496         * device/include/mcs51/c8051f000.h,
1497         * device/include/mcs51/c8051f018.h,
1498         * device/include/mcs51/c8051f020.h,
1499         * device/include/mcs51/c8051f040.h,
1500         * device/include/mcs51/c8051f060.h,
1501         * device/include/mcs51/c8051f120.h,
1502         * device/include/mcs51/c8051f300.h,
1503         * device/include/mcs51/c8051f310.h,
1504         * device/include/mcs51/c8051f320.h,
1505         * device/include/mcs51/c8051f330.h,
1506         * device/include/mcs51/c8051f350.h,
1507         * device/include/z180.h: Changed SDCC specific keywords to double
1508         underlined form.
1509
1510 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1511
1512         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1513         18F4455,
1514         * (pic16_assignConfigWordValue): disable testing of configuration
1515         register value with config mask,
1516         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1517         function with port->fun_prefix,
1518         * (genFunction): when generating a naked interrupt function never
1519         create an absolute segment placed in interrupt vector address, place
1520         the actual interrupt function at IVA instead, when an interrupt
1521         function is generated with unspecified interrupt then do not create
1522         the absolute section,
1523         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1524         code for generating a call to generic pointer get/put function with
1525         a call to function pic16_callGenericPointer(),
1526         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1527         the call to the generic pointer get/put functions with prefixing the
1528         function name with port->fun_prefix,
1529         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1530         * src/pic16/main.c (_process_pragma): prefix function with
1531         port->fun_prefix,
1532         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1533         calling assembler, old 18Fxxxx macro is deprecated,
1534         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1535         PC_ASMDIR in while condition,
1536         * (findInstruction): add PC_ASMDIR in while condition,
1537         * (buildCallTree): prefix main with port->fun_prefix,
1538         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1539         identifier for variable with banked access in instructions BTFSS,
1540         BTFSC, BCF, BSF, BTG
1541         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1542         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1543         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1544         perform optimization when enviroment variable NO_REG_OPT is set,
1545         * (insideLRBlock): NEW, return 1 if register is inside an
1546         INF_LOCALREGS block,
1547         * (RemoveRegFromLRBlock): remove a register that is completely
1548         eliminated by register optimization, but it is still left in local
1549         register store/restore in/from stack block,
1550         * (Remove2pcodes): after removing register, check to see if it
1551         should be removed from local register store/restore in/from stack
1552         block,
1553         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1554         DUMMY_READ_VOLATILE,
1555
1556         * device/include/pic16/adc.h: minor prototype modifications and
1557         update,
1558         * device/include/pic16/malloc.h: added GPL notice various
1559         modifications,
1560         * device/include/pic16/stdint.h: NEW, standard header for ints
1561         * device/include/pic16/delay.h: NEW, header for delay functions,
1562         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1563         delay1mtcy,
1564         * device/include/pic16/signal.h: NEW, header providing helper macros
1565         for implementing signal handlers,
1566         * device/include/pic16/stdio.h: added prototypes for functions,
1567         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1568         prototypes for stdin and stdout, added macro PUTCHAR to
1569         automatically implement putchar function prototype,
1570         * device/include/pic16/usart.h: modified and updated USART library,
1571         * device/lib/pic16/libio/adc/,
1572         * device/lib/pic16/libio/i2c: some modifications to improve library
1573         performance,
1574         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1575         family of functions,
1576         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1577         family of functions and other sources,
1578         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1579         of the PIC18Fxx[28] devices,
1580         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1581         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1582         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1583         _do_cinit function, because the previous failed when local variables
1584         where not placed in the same memory bank,
1585         * device/lib/pic16/libsdcc/char/: various modifications to improve
1586         library performance,
1587         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1588         information on the new functions of the c library and more...
1589
1590 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1591
1592         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1593
1594 2005-03-26 Raphael Neider <rneider AT web.de>
1595
1596         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1597           if condition == CARRY)
1598         * (genCmp): adapted to new genSkipc semantics
1599         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1600           on rIfx (genCmp was broken)
1601
1602 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1603
1604         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1605         * src/z80/main.c (_keywords[]),
1606         * src/SDCCglobal.h (struct options),
1607         * src/SDCC.y,
1608         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1609         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1610         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1611         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1612         always available in leading double underscore form. The C99 support is
1613         mostly missing, but it's a start.
1614         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1615         reserved identifier "__data".
1616
1617 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1618
1619         * src/mcs51/peeph.def: fixed bug 1170013
1620
1621 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1622
1623         * device/include/mcs51reg.h: fixed bug 842007
1624
1625 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1626
1627         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1628         last time.
1629
1630 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1631
1632         * src/port.h (struct PORT),
1633         * src/avr/ralloc.c (avr_assignRegisters),
1634         * src/avr/main.c,
1635         * src/ds390/ralloc.c (ds390_assignRegisters),
1636         * src/ds390/main.c,
1637         * src/hc08/ralloc.c (hc08_assignRegisters),
1638         * src/hc08/main.c,
1639         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1640         * src/mcs51/main.c,
1641         * src/pic/ralloc.c (pic14_assignRegisters),
1642         * src/pic/main.c,
1643         * src/pic16/ralloc.c (pic16_assignRegisters),
1644         * src/pic16/main.c,
1645         * src/xa51/ralloc.c (xa51_assignRegisters),
1646         * src/xa51/main.c,
1647         * src/z80/ralloc.c (z80_assignRegisters),
1648         * src/z80/ralloc.h,
1649         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1650         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1651         * src/SDCCcse.h,
1652         * src/SDCCdflow.c (computeDataFlow),
1653         * src/SDCCdflow.h,
1654         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1655         * src/SDCCloop.h,
1656         * src/SDCCcflow.c (*),
1657         * src/SDCCcflow.h,
1658         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1659         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1660         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1661         immedDom() returning wrong block; probably fixes bug #1160833)
1662
1663 2005-03-20 Borut Razem <borut.razem AT siol.net>
1664
1665         * support/scripts/inc2h.pl: WIN32 port
1666
1667 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1668
1669         * device/lib/makefile.in: added abs.c and labs.c
1670
1671 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1672
1673         * device/include/stdint.h: added
1674         * device/lib/abs.c: added
1675         * device/lib/labs.c: added
1676         * device/include/stdlib.h: added abs() and labs() prototypes
1677         * device/lib/libsdcc.lib: added abs and labs
1678         * device/include/float.h,
1679         * device/lib/_fsmul.c,
1680         * device/lib/printf_fast.c,
1681         * device/lib/printf_tiny.c: updated comments
1682
1683 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1684
1685         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1686         bug #1164313
1687
1688 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1689
1690         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1691         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1692
1693 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1694
1695         * device/lib/printf_large.c: removed inline assembly for portability and
1696           readability. Use printf_fast if speed or size are more important.
1697         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1698         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1699
1700 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1701
1702         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1703         prevent compiler warning
1704
1705 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1706
1707         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1708         moved to level 0 and declared as static. Also they are explicit
1709         placed in access bank. This was necessery because some times they
1710         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1711         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1712         optimizations. Currently only compare to unsigned char is implemented,
1713         * src/pic16/gen.c: added fReturnIdx array,
1714         * (struct resolvedIfx) is moved to gen.h and made public,
1715         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1716         * (aopForSym): added an optimization to directly store in stack of
1717         the operand of a SEND iCode,
1718         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1719         but as registers instead (AOP_REG) using the fReturnIdx array,
1720         * (pic16_freeAsmop): remove the freed register from the
1721         _G.sregsAlloc field,
1722         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1723         a compare of 'WREG',
1724         * (pic16_popGetTempRegCond): changed function prototype, now
1725         function takes also a bitVector argument v which holds the current
1726         set of registers that are allocated for stack access by aopForSym,
1727         registers allocated in aopForSym for accessing stack symbols are not
1728         any more part of the functions usedRegs field,
1729         * (genCall): some times aopOp is called for a stack variable to be
1730         send, aopForSym might perform the push, if this is true make sure
1731         that genCall doesn't push the variable twice by testing _G.resDirect,
1732         * (genFunction): changed testing for unspecified interrupt number
1733         from 256 to INTNO_UNSPEC,
1734         * modified selection scheme of frame pointer generation. Previously
1735         if function did use local registers a frame pointer was generated,
1736         now a frame pointer is generated only if function has arguments
1737         (that need PLUSW2 register access), or has stack arguments, or the
1738         compiler is not instructed to omit the frame pointer,
1739         * (genEndFunction): before restoring local registers that were saved
1740         in the function preamble, also restore the registers that *might*
1741         have been allocated for stack access,
1742         * (genRet): removed some old comments,
1743         * (genCmp, the active (RN's) version): added a call to the
1744         pic16_genCmp_special function to perform the compare with a more
1745         robust and optimized way,
1746         * (genInline): a feature has been added in inline code generation,
1747         which allows a wildcard variable substitution when writing inline
1748         assembly. Code is incomplete and experimental therefore undocumented,
1749         * (genCast): changed order of aopOp for result and right to allow
1750         aopForSym to directly load the result if possible,
1751         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1752         perform an optimized compare on some selected special occasions,
1753         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1754         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1755         generate an IVT any more,
1756         * src/pic16/main.c (pic16_optionsTable): added command line option
1757         --optimize-cmp,
1758         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1759         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1760         macros,
1761         * src/pic16/NOTES: Raphael Neider added in list of active developers
1762         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1763         jumptable_end to prevent bug #,
1764         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1765         inCond and outCond fields,
1766         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1767         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1768         turn off register spilling,
1769         * (packRegsForOneUse): synced with other ports' versions although it
1770         is not used currently,
1771         * (pic16_packRegisters): added an optimization while reading
1772         structure bitfields, some registers may be saved (malloc code is
1773         decreased by 80 bytes)
1774
1775 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1776
1777         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1778         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1779         this can be optimized more?
1780
1781 2005-03-10 Raphael Neider <rneider AT web.de>
1782
1783         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1784           genNearPointerGet): (hopefully) fixed access to bitfields via
1785           pointers (p->bitN = x; and x = p->bitN; failed)
1786
1787 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1788
1789         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1790
1791 2005-03-09 Raphael Neider <rneider AT web.de>
1792
1793         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1794
1795 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1796
1797         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1798         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1799           (regTypeNum): set REG_BIT type if necessary
1800         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1801         * support/regression/tests/critical.c: check bug 1144613
1802
1803 2005-03-02 Raphael Neider <rneider AT web.de>
1804
1805         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1806
1807 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1808
1809         * src/avr/ralloc.c (serialRegAssign),
1810         * src/ds390/ralloc.c (serialRegAssign),
1811         * src/hc08/ralloc.c (serialRegAssign),
1812         * src/mcs51/ralloc.c (serialRegAssign),
1813         * src/pic/ralloc.c (serialRegAssign),
1814         * src/pic16/ralloc.c (serialRegAssign),
1815         * src/xa51/ralloc.c (serialRegAssign),
1816         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1817
1818 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1819
1820         * src/SDCCast.c (decorateType): fixed bug 1124787
1821
1822 2005-02-20 Hubert Sack <sack AT digiplan.de>
1823         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1824
1825         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1826         patch #1121755
1827
1828 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1829
1830         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1831         to keep the correct label reference count when adding/removing references
1832         to labels. A peephole file using this is appended to patch #1144962.
1833
1834 2005-02-14 Raphael Neider <rneider AT web.de>
1835
1836         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1837         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1838         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1839           retrievals of result operand's value on assignment
1840
1841 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1842
1843         * device/include/pic16/string.h: modified prototype for memccpy()
1844         to memccpy(void *, void *, char, size_t)
1845         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1846         check whether to omit frame pointer or not,
1847         * (genInline): convert all occurences of "\n" to LF in inline
1848         assembler blocks, this helps formatting the inline text,
1849         * (pic16_loadFSR0): modified prototype,
1850         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1851         removed some 8051 legacy code,
1852         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1853         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1854         before allocating temporary registers in functions,
1855
1856 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1857
1858         * support/regression/tests/bitvars.c: corrected the "fix"
1859
1860 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1861
1862         * support/regression/tests/bitvars.c,
1863         * support/regression/tests/bitwise.c,
1864         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1865
1866 2005-02-10 Raphael Neider <rneider AT web.de>
1867
1868         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1869           different size for Alpha
1870         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1871
1872 2005-02-09 Raphael Neider <rneider AT web.de>
1873
1874         * src/SDCC.lex(doPragma) : save and restore warning options as well
1875           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1876         * have #pragma less_pedantic set the errorlevel to WARNING
1877           (fixes #1117001)
1878         * (cloneOptimize) : fixed wrong malloc's size
1879         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1880           facilitate correct handling of #pragma (save|restore)
1881
1882 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1883
1884         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1885
1886 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1887
1888         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1889
1890 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1891
1892         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1893
1894 2005-02-02 Raphael Neider <rneider AT web.de>
1895
1896         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1897         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1898         * (pic16_storeForReturn): fixed to allow returning function pointers
1899         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1900         * device/include/pic16/{stddef.h,stdbool.h}: added
1901
1902 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1903
1904         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1905
1906 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1907
1908         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1909         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1910          appeared to be required
1911
1912 2005-01-31 Borut Razem <borut.razem AT siol.net>
1913
1914         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1915           include/mcs51 and include/z80 directories to the package
1916
1917 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1918
1919         * src/hc08/gen.c (genFunction): fixed bug #1112752
1920
1921 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1922
1923         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1924
1925 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1926
1927         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1928
1929 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1932
1933 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1934
1935         * device/include/c8051fxxx.h: removed these 6 files
1936         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1937
1938 2005-01-26 Raphael Neider <rneider AT web.de>
1939
1940         * src/pic16/gen.c (genAssign): fixed assignment from longs
1941           in codespace (were cut to three bytes)
1942         * (genDummyRead): implemented (except for CODESPACE...),
1943           fixed bug #1108575
1944         * src/pic16/glue.c (emitStatistics): beautified
1945         * device/lib/pic16/libm/Makefile: added include path
1946
1947 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1948
1949         * src/z80/gen.c (aopPut): fixed bug #1103902
1950
1951 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1952
1953         * device/lib/expf.c: fixed bug #1095792
1954
1955 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1956
1957         * device/lib/pic16/libm: added Math library sources
1958
1959 2005-01-24 Raphael Neider <rneider AT web.de>
1960
1961         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1962           to enable upcast to pCodeOpReg2 (there is no type tag to
1963           differenciate the two and pic16_popGet2p cast into PCOR2)
1964         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1965           (sizeof(sectNames) changed to sizeof(sectName))
1966           Both patches fix segfaults under MinGW.
1967
1968 2005-01-23 Raphael Neider <rneider AT web.de>
1969
1970         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1971           Safe_[mc]?alloc()'ed variables
1972         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1973           of (byte sized) temporaries (assign them to WREG for now)
1974         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1975           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1976           this might fix SIGSEGVs on MinGW...
1977         * src/SDCCopt.c (killDeadCode): restored original behaviour
1978           (volatile operands might get thrown away though)
1979
1980 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1981
1982         * src/pic16/gen.c: fixed bug #1106975,
1983         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1984         pointer update, INTCON is saved, global interrupts are disabled and
1985         restored after updateing TOS.
1986         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1987         * added function attribute 'shadowregs' to take advantage of shadow
1988         registers,
1989         * added function attribute 'wparam' as an alternative to the wparam
1990         pragma,
1991         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1992         user declares a non-ISR function as 'shadowregs',
1993         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1994
1995 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1996
1997         * .version: bumped version number to 2.4.8
1998         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1999         pic16 port,
2000         * device/lib/pic16/libio/i2c/: I2C module support library,
2001         * device/include/pic16/i2c.h: I2C support library header,
2002         * device/lib/pic16/libc/stdio/: standard IO support sources,
2003         * (printf_small.c): printf_small() source, supports float print,
2004         * (printf_tiny.c): printf_tiny() source, does not support floats,
2005         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2006         enable global optimizations for entire library source, other
2007         Makefiles in the source tree are also modified to reflect this,
2008         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2009         function,
2010         * doc/sdccman.lyx: updated to reflect new changes,
2011         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2012         sym->onStack if-case,
2013         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2014         sbit, idata, _idata, xdata, _xdata,
2015         * added pragma library, to link an external library, (see doc),
2016         * removed command line options, --pomit-config-words, --pomit-ivt,
2017         --pleave-reset-vector,
2018         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2019         when calling assembler to reflect memory model used, also define
2020         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2021         reflect stack model used,
2022         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2023         on stack return NULL,
2024
2025 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2026
2027         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2028           of the operands is volatile. Fixes #1020220
2029
2030 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2031
2032         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2033         * (OptimizeRegUsage): make sure that there is really no other flow where
2034           the first pCode is used
2035
2036 2005-01-22 Raphael Neider <rneider AT web.de>
2037
2038         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2039           to fix #1106967 (pCode->seq are not set up correctly)
2040
2041 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2042
2043         * src/SDCCglue.c (glue): make sure code area is declared before the
2044         static initialization area.
2045
2046 2005-01-21 Raphael Neider <rneider AT web.de>
2047
2048         * device/lib/Makefile.in: fixed test for pic16 install dir
2049         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2050           optimizations
2051         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2052           added --optimize-goto compiler switch and pragma wparam documentation
2053         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2054         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2055           and PRODH closing bug #1071770 (peephole optimizer)
2056
2057 2005-01-19 Raphael Neider <rneider AT web.de>
2058
2059         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2060           cmdLine buffers (used when calling sdcpp...) are large enough
2061           (MAX_PATH=256 truncates arguments leading to system halts when
2062           used in MinGW...)
2063         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2064         * (genUminus): rewritten to for efficiency
2065         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2066           used uninitialized in some cases)
2067         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2068           copy the third byte from the int -- now assumes 0x80 (data memory)
2069         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2070           operands (genAddLit expects the iCode's operands to swapped as
2071           well), fixed leftover bytes (crashed for short left operands)
2072         * (pic16_genMinusDec): performance improvements, removed false
2073           PIC14 emitSKPNCs
2074         * (pic16_genMinus): fixed to cope with differently sized operands
2075         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2076           for --obanksel > 1
2077         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2078         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2079           new banksel optimization
2080         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2081           analysis for temporary registers (segfaults...)
2082         * src/pic16/peeph.def: added rule
2083
2084 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2085
2086         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2087         which converts a float number to its ASCII representation
2088         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2089         functions to convert the fractional and integer part of a float to ASCII,
2090         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2091         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2092         ram
2093         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2094         _STATMEM macros,
2095         * device/include/pic16/adc.h: added GPL info,
2096         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2097         a pCodeOp as tested operand,
2098         * (genNearPointerGet): optimized bit testing, does not use
2099         intermediate register for bit value, test directly instead with
2100         BTFSS, BTFSC, works only for single bits,
2101         * (genpic16Code): dump the name of the iCode in the asm,
2102         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2103         renamed to pic16_decodeOp,
2104         * (serialRegAssign): do not allocate a temporary register for iCode
2105         sequences that test a single bit for 1/0
2106
2107 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2108
2109         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2110         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2111         access stack and frame pointers. They are initially assigned to
2112         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2113         accessing SFRs. Updated all occurences of modification of stack or
2114         frame pointer in gen.c and pcode.c,
2115         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2116         assigning of a literal value to pointers,
2117         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2118         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2119         selected
2120
2121 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2122
2123         * doc/sdccman.lyx: update documentation about stack pragma, added
2124         some info for stack memory models
2125
2126 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2127
2128         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2129
2130 2005-01-08 Raphael Neider <rneider AT web.de>
2131
2132         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2133           udata sections to fix bug #1097823
2134
2135 2005-01-05 Raphael Neider <rneider AT web.de>
2136
2137         * src/pic16/gen.c (genGenericShift): added handling of differently
2138           sized left operand and result
2139
2140 2005-01-04 Raphael Neider <rneider AT web.de>
2141
2142         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2143         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2144           to hold the condition bit)
2145         * added new version of genCmp (old code available via #define)
2146         * added new version of genShiftLeft/genShiftRight in a generic
2147           way, now supports shifting by negative values
2148         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2149           shiftCount (expected by genGenericShift)
2150         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2151         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2152           dump
2153         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2154           is an invalid literal too...)
2155
2156 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2157
2158         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2159         from Raphael Neider,
2160         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2161         for 8-bit literals. This fixes some literal operands which are sign
2162         extended to 16-bits ints when instruction needs only 8-bits.
2163
2164 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2165
2166         * device/lib/logf.c: added mcs51 assembly version
2167         * device/lib/expf.c: added mcs51 assembly version
2168         * device/lib/_logexpf.c: new shared asm code for expf and logf
2169         * device/include/math.h: add defines for assembly math library
2170         * device/lib/Makefile.in: build new _logexpf.c
2171         * device/lib/libfloat.lib: use new _logexpf.c
2172
2173 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2174
2175         * src/pic/device.c
2176         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2177           device types which have less than 0x7f registers.
2178
2179 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2180
2181         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2182
2183 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2184
2185         * device/lib/printf_fast.c: only build on supported arch.
2186         * device/lib/printf_tiny.c: only build on supported arch.
2187         * device/lib/printf_fast_f.c: only build if asm float lib
2188         * device/lib/_fsget1arg.c: only build if asm float lib
2189         * device/lib/_fsget2args.c: only build if asm float lib
2190         * device/lib/_fsnormalize.c: only build if asm float lib
2191         * device/lib/_fsreturnval.c: only build if asm float lib
2192         * device/lib/_fsrshift.c: only build if asm float lib
2193         * device/lib/_fsswapargs.c: only build if asm float lib
2194         * device/include/stdio.h: don't provide print_fast,
2195           print_fast_f, print_tiny prototypes if --xstack used
2196
2197 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2198
2199         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2200         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2201           to the SOURCES
2202
2203 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2204
2205         * device/lib/printf_fast_f.c: same as printf_fast, but
2206           with floating point enabled
2207         * device/lib/printf_fast.c: minor tweaks
2208         * device/include/stdio.h: add printf_fast_f
2209
2210 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2211
2212         * src/SDCCmain.c: make --float-reent default for mcs51
2213         * device/lib/_fsadd.c: added mcs51 assembly version
2214         * device/lib/_fssub.c: added mcs51 assembly version
2215         * device/lib/_fsmul.c: added mcs51 assembly version
2216         * device/lib/_fsdiv.c: added mcs51 assembly version
2217         * device/lib/_fseq.c: added mcs51 assembly version
2218         * device/lib/_fsneq.c: added mcs51 assembly version
2219         * device/lib/_fsgt.c: added mcs51 assembly version
2220         * device/lib/_fslt.c: added mcs51 assembly version
2221         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2222         * device/lib/Makefile.in: add _fscmp to build
2223         * device/lib/libfloat.lib: add _fscmp to build
2224
2225 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2226
2227         * device/lib/_fs2slong.c: added mcs51 assembly version
2228         * device/lib/_fs2sint.c: added mcs51 assembly version
2229         * device/lib/_fs2schar.c: added mcs51 assembly version
2230         * device/lib/_fs2ulong.c: added mcs51 assembly version
2231         * device/lib/_fs2uint.c: added mcs51 assembly version
2232         * device/lib/_fs2uchar.c: added mcs51 assembly version
2233         * device/lib/_slong2fs.c: added mcs51 assembly version
2234         * device/lib/_sint2fs.c: added mcs51 assembly version
2235         * device/lib/_schar2fs.c: added mcs51 assembly version
2236         * device/lib/_ulong2fs.c: added mcs51 assembly version
2237         * device/lib/_uint2fs.c: added mcs51 assembly version
2238         * device/lib/_uchar2fs.c: added mcs51 assembly version
2239         * device/include/float.h: added #define to select asm vs c
2240
2241 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2242
2243         * device/lib/printf_fast.c: improvements to float output
2244         * device/include/float.h: add defines for assembly float library
2245         * device/lib/_fsget1arg.c: receive 1 float arg
2246         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2247         * device/lib/_fsnormalize.c: normalize a float
2248         * device/lib/_fsreturnval.c: return float, various helper routines
2249         * device/lib/_fsrshift.c: right shift a float's mantissa
2250         * device/lib/_fsswapargs.c: swap 2 floats
2251         * device/lib/Makefile.in: build these 6 new files for mcs51
2252         * device/lib/libfloat.lib: add these 6 files to the library
2253
2254 2004-12-26 Borut Razem <borut.razem AT siol.net>
2255
2256         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2257           built by gcc 3.4.2
2258
2259 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2260
2261         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2262           and fully reentrant and register bank neutral.
2263         * device/lib/printf_fast.c: added float (not enabled by default),
2264           added compact/slower integer (also not enabled by default),
2265           improved size/speed of fast integer code, other minor changes
2266         * device/include/stdio.h, device/lib/Makefile.in,
2267           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2268
2269 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2270
2271         * src/pic16/pcode.c: declaring variables other than at the start of a
2272           block is not supported in C by VC6.
2273
2274 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2275
2276         * applied a previous patch from Raphael Neider that wasn't included
2277         in the previous commits, which fixes infinite loops within jumptable
2278         improvements,
2279         * made some fixes that previous patches introduced
2280
2281 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2282
2283         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2284         that fixes an issue with AOP_PCODE asmop's offset,
2285         * (pic16_popCopyReg): update instance field too,
2286         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2287         function of pic port,
2288         * (genCmp, genAnd, genAssign),
2289         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2290
2291 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2292
2293         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2294         variables initial values to idata section,
2295         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2296         variables in some functions. This utilizes parmBytes field of iCode
2297         structure to hold the offset of the variable in stack. (might be
2298         able to use the stack field too?)
2299         * applied patch from Raphael Neider # ### , # ###
2300         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2301         variable initial values in idata section,
2302         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2303         for static variables with initial value
2304         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2305         applied fix in while loop from Raphael Neider.
2306
2307 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2308
2309         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2310         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2311         * src/ds390/ralloc.c (serialRegAssign): spill bits
2312         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2313         * support/Util/SDCCerr.c,
2314         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2315         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2316         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2317
2318 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2319
2320         * device/include/sdcc-lib.h: inserted LGPL, added includes
2321           asm/ds390/features.h and asm/mcs51/features.h
2322         * device/include/asm/default/features.h,
2323         * device/include/asm/gbz80/features.h,
2324         * device/include/asm/z80/features.h: added empty _AUTOMEM
2325           and _STATMEM
2326         * device/include/asm/ds390/features.h,
2327         * device/include/asm/mcs51/features.h: added files with defines for
2328           _AUTOMEM and _STATMEM indicating automatic and static storage class
2329         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2330         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2331         * src/SDCCicode.c (geniCodeCast),
2332         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2333         * src/SDCCloop.c (loopInduction): removed unused variable lr
2334         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2335           to convertToFcall to include char modulo (RFE 1065037), added check
2336           if left operand is unsigned and use abs of literal value
2337         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2338           as it doesn't work after conversion from peephole.def to peephole.rul
2339         * src/mcs51/gen.c (toBoolean): added check for size,
2340           (genModOneByte): optimized code for signed char modulo a literal
2341           power of 2 (thanks to Hubert Sack),
2342           (genRRC): removed unnecessary "clr c",
2343           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2344         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2345           jump optimization,
2346           swapped rules 256.c and 256.d,
2347           extended 256.d by using new multiple checks (thanks Erik),
2348           added rules 256.e and 256.f,
2349           updated rule 261.a and 261.b to new generated code
2350         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2351
2352 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2353
2354         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2355           induction related bugs, including first part of bug #1074377
2356
2357 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2358
2359         * applied patch from bug-report #1076292,
2360         * applied patches for genAnd and Goto-optimizations for Raphael
2361         Neider,
2362         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2363         dump a less iCode information,
2364         * src/pic16/device.h (pic16_options_t): added field debgen,
2365         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2366         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2367         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2368         puclic,
2369         * (various functions): added macros FENTRY and FENTRY2 to functions,
2370         to emit function prologue,
2371         * (various functions): fixed indentation,
2372         * (genNearPointerGet): fixed loading of FSR0,
2373         * (genPackBits): applied patch from Raphael Neider to fix updating
2374         of FSR0 and touching only the modified bits,
2375         * src/pic16/genarith.c (various functions): added macros FENTRY to
2376         emit function prologue in comments,
2377         * src/pic16/pcode.h: added functions debugf2, debugf3,
2378         * src/pic16/ralloc.c: partial fix for packForPush caused
2379         segmentation fault,
2380
2381 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2382
2383         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2384           <stsp AT users.sourceforge.net> with reversed byte order
2385         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2386
2387 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2388
2389         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2390           bug #1074377
2391         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2392         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2393
2394 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2395
2396         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2397
2398 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2399
2400         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2401           conditions,
2402           (setFromConditionArgs): friendly operand parser for peephole rules,
2403           (operandBaseName, operandsNotRelated): new peephole condition
2404           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2405           architecture specific register naming into account, handles n-way
2406           comparisons, and supports quoted literals
2407         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2408
2409 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2410
2411         * src/mcs51/peeph.def: fixed bug #1076940
2412
2413 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2414
2415         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2416
2417 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2418
2419         Adding support for replacing ljmps with sjmps in jumptables
2420         generated for switch statements. For now you need to set the
2421         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2422         Now 4 algorithms for mcs51 jumptable generation are used:
2423         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2424         addresses loaded pc-relative for up to 112 cases and stack-pushing
2425         target addresses loaded with offset from dptr for up to 256 cases.
2426
2427         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2428         * src/mcs51/main.c: adapted constants for switch table generation
2429         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2430
2431 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2432
2433         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2434         * support/regression/tests/bug1057979.c: added test for bug 1073386
2435
2436 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2437
2438         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2439         compilers
2440
2441 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2442
2443         * src/pic16/device.h,
2444         * src/pic16/genarith.c,
2445         * src/pic16/glue.c,
2446         * src/pic16/main.c,
2447         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2448
2449 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2450
2451         Large cummulative patch for pic16 port.
2452         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2453         to call when a stack overflow occurs,
2454         * (malloc.h): added CVS Id tag,
2455         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2456         variable,
2457         * added libc directory. The current version of LibC contains string
2458         functions, ctype functions and macros and some functions of the
2459         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2460         be extensively tested in the future. Standard disclaimer here.
2461         Library is not automatically build yet. But one can build it by
2462         invoking 'make' inside the libc directory.
2463         * added ADC library under libio. Preliminary version yet.
2464
2465         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2466         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2467         aopForRemat() now and not by pic16_aopOp(),
2468         * (pic16_popGetTempReg): removed warning messgae when allocating
2469         temporary registers, its a buggy feature and will be removed,
2470         * (pic16_popGet): set register instance field in AOP_CRY,
2471         * (pic16_outBitC): fixed for results in size greater than 1,
2472         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2473         * (pic16_storeForReturn): optimized return of 0,
2474         * (genCmp): experimental code for new genCmp which uses PIC18's
2475         special compare&skip instructions. Initial tests fail some times
2476         with variables grater than 1 byte in size, so new code is disabled,
2477         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2478         a single bit,
2479         * (genCast): began a fix to optimize the casting of a bit to another
2480         bit, now assigning a bitfield to another bitfield will fail, sorry,
2481         * src/pic16/main.c: disabled the use of lr-support feature,
2482         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2483         * added some function prototypes, added function _debugf prototype,
2484         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2485         bits with offset (case PO_GPR_BIT),
2486         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2487         command line,
2488         * (isBankInstruction): modified to return 0 for no banking instruction,
2489         and 1 for banking instruction,
2490         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2491         caused stop processing pCodes after a inline assembly block,
2492         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2493         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2494         registers when it shouldn't,
2495         * src/pic16/ralloc.c (allocReg): add preliminary support for
2496         supporting a limited set of temporary registers,
2497
2498 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2499
2500         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2501           genDataPointerSet): ensure assignments always copy in MSB to LSB
2502           order,
2503           (loadRegFromAop): recognize CLRH optimization,
2504           (genFunction): optimize RECEIVE iCodes in reentrant functions
2505
2506 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2507
2508         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2509           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2510           selected.
2511         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2512         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2513           contiguous with data
2514
2515 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2516
2517         * device/lib/_gptrget.c (_gptrget),
2518         * device/lib/_gptrgetc.c (_gptrgetc),
2519         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2520           instead of sjmp to ret
2521         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2522           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2523
2524 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2525
2526         * .version: bumped version to 2.4.7
2527         * device/lib/_gptrget.c (_gptrget): is now _naked
2528         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2529         * device/lib/_gptrput.c (_gptrput): is now _naked
2530         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2531           (createFunction): fixed xstack
2532         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2533         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2534           or bit either,
2535           (geniCodeCritical): store original interrupt state in an iTemp bit
2536           var unless stack-auto
2537         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2538         * src/SDCCmain.c (setIncludePath): added include/target to search path
2539         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2540         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2541           prototype,
2542           (processFuncArgs): put bit vars in bit area
2543         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2544           unsaveRBank): fixed xstack,
2545           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2546           (genFunction, genEndFunction): fixed xstack,
2547           (genAssign): optimization don't walk backwards through mem
2548         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2549         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2550         * support/regression/Makefile: also make library (for stack-auto) when
2551           making "all" and added "test-mcs51-xstack-auto"
2552         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2553         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2554         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2555         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2556         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2557           make-library by MAKE_LIBRARY
2558         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2559           regression tests for xstack
2560         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2561         * support/regression/tests/critical.c: test for critical on mcs51
2562
2563 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2564
2565         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2566           built version of sdcc instead of installed version
2567
2568 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2569
2570         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2571         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2572           vprintf.c now
2573         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2574         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2575           WARNING: remove device/lib/build/z80/printf.o by hand when
2576           updating from previous build!
2577         * device/lib/z80/printf.c: updated comment
2578         * support/regression/tests/bug1057979.c: test all ports now
2579         * support/regression/tests/bug1065458.c: file added
2580
2581 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2582
2583         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2584           *_start and *_end symbols for static functions
2585
2586 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2589           and search crt0.o in all library paths,
2590           (setIncludePath): proper handling of --nostdinc,
2591           (setLibPath): proper handling of --nostdlib
2592         * support/regression/Makefile,
2593         * support/regression/ports/ds390/spec.mk,
2594         * support/regression/ports/gbz80/spec.mk,
2595         * support/regression/ports/hc08/spec.mk,
2596         * support/regression/ports/mcs51/spec.mk,
2597         * support/regression/ports/mcs51-large/spec.mk,
2598         * support/regression/ports/mcs51-stack-auto/spec.mk,
2599         * support/regression/ports/z80/spec.mk: use include and lib files from
2600           built version of sdcc instead of installed version
2601         * doc/sdccman.lyx: fixed typo in --nostdinc
2602
2603 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2604
2605         * src/pic/pcode.c,
2606         * src/pic/device.c,
2607         * src/pic/ralloc.c,
2608         * src/pic/gen.c : added support to generate code for struct bit fields.
2609
2610 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2611
2612         * as/xa51/xa_version.h,
2613         * device/include/errno.h,
2614         * device/include/regc515c.h,
2615         * device/lib/_itoa.c,
2616         * device/lib/_ltoa.c,
2617         * device/lib/ser_ir_cts_rts.c,
2618         * sim/ucsim/xa.src/glob.cc,
2619         * sim/ucsim/xa.src/inst_gen.cc,
2620         * sim/ucsim/xa.src/xa_bit.cc,
2621         * sim/ucsim/xa.src/xa_sfr.cc,
2622         * sim/ucsim/z80.src/inst_dd.cc,
2623         * sim/ucsim/z80.src/inst_fdcb.cc,
2624         * support/scripts/keil2sdcc.pl,
2625         * src/pic16/pic16.dsp,
2626         * src/pic16/pic16a.dsp: corrected cvs line endings
2627         * device/lib/printf_large.c: fixed bug 1057979
2628         * src/pic16/gen.c: fixed non-C standard code
2629         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2630         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2631         * support/regression/ports/mcs51/support.c: reload T1 asap
2632         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2633           pdata use and clear idata startup behaviour
2634         * support/regression/tests/bug1057979.c: added
2635
2636 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2637
2638         * device/examples/ds390/ow390/ad26.h,
2639         * device/examples/ds390/ow390/cnt1d.h,
2640         * device/examples/ds390/ow390/crcutil.c,
2641         * device/examples/ds390/ow390/ownet.h,
2642         * device/examples/ds390/ow390/owsesu.c,
2643         * device/examples/ds390/ow390/swt12.h,
2644         * device/examples/ds390/ow390/swtoper.c,
2645         * device/examples/ds390/ow390/temp10.h,
2646         * device/examples/ds390/ow390/thermodl.c,
2647         * device/examples/ds390/tinitalk/tinitalk.dsp,
2648         * device/examples/ds390/tinitalk/tinitalk.dsw,
2649         * device/examples/mcs51/clock/hw.h,
2650         * device/examples/mcs51/simple2/go.bat,
2651         * device/examples/serialcomm/windows/serial.h,
2652         * device/examples/xa51/dummy.c,
2653         * device/examples/xa51/hello.c,
2654         * device/include/80c51xa.h,
2655         * device/include/at89x051.h: corrected cvs line endings
2656
2657 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2658
2659         * src/pic16/main.c (options): added command line --gstack, to trace
2660         stack over/under flows,
2661         * added pragma 'wparam' to allow passing first byte of function
2662         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2663         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2664         call to __gstack_test function and sets up the symbol as extern,
2665         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2666         * popaop): added call to pic16_testStackOverflow,
2667         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2668         wparamList list,
2669         * (genCall, genPcall): now all parameters are passed via stack
2670         except in functions that are pass to wparam pragma in which WREG is
2671         used too,
2672         * (genPcall): REENTRANT flag is checked to see if variable prototype
2673         contains reentrant keyword, don't call a non-reentrant function, via
2674         a reentrant function pointer or vice versa, functions are never
2675         passed via WREG,
2676         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2677         D.Winkler,
2678         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2679         SIGSEGV when accessing a NULL register stucture,
2680         * (pic16_printGPointerType): modified to handle UPPER modifier for
2681         function initializers, changed prototype of function to simpler one,
2682         * (pic16_printIvalFuncPtr): check to see if function is already
2683         added in externs list,
2684         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2685         optimized a move from W to SFR with a move to the same register
2686         later after a CALL,
2687         * device/lib/pic16/debug: NEW directory, contains debug features
2688         which are enabled when linking with libdebug.lib, currently command
2689         line option --gstack enables stack pointer tracing for over/under
2690         flow, corresponding sources are in debug/gstack
2691
2692 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2693
2694         * doc/sdccman.lyx: updated SDCC version,
2695         * (PIC16 port): update list of command line options,
2696         * src/pic16/device.h (structure pic16_options_t): added field gstack
2697         to enable stack overflow tracing on push/pops,
2698         * src/pic16/device.c (statistics structure): added statistics
2699         structure,
2700         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2701         pic16_dump_int_registers): increase statistics counters for each
2702         * variable which is encountered
2703         * (pic16_dump_usection): emit each .udata variable to its own udata
2704         section,
2705         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2706         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2707         parameters via stack, otherwise use old scheme,
2708         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2709         assembler output file,
2710         * src/pic16/main.c: added command line options --gstack to enable
2711         push/pop tracing for stack overflow,
2712         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2713         instructions): added size of each instruction,
2714         * (pic16_countInstruction): estimate size of instructions in
2715         the_pFile list, inline assembly blocks are not counted,
2716         * (pic16_FixRegisterBanking): trace previous register usage, when
2717         banksel optimizations is greater than 0, don't emit a redudant
2718         banksel directive,
2719
2720 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2721
2722         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2723         * src/pic16/ralloc.c : applied same fix for pic16.
2724         * src/pic/gen.c : tidied it up a little.
2725
2726 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2727
2728         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2729         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2730
2731 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2732
2733         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2734
2735 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2736
2737         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2738         non-reentrant function __modsint in the interrupt function (thus
2739         corrupting math operations during serial I/O)
2740         * device/lib/ser_ir.c: as above, changed buffersize
2741         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2742         256.c,d for zeroing
2743         * doc/Makefile: added option -t for rsync
2744
2745 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2746
2747         * src/SDCCast.h (struct ast),
2748         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2749
2750 2004-10-20 Borut Razem <borut.razem AT siol.net>
2751
2752         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2753         package
2754
2755 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2756
2757         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2758         makefile targets,
2759         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2760         support functions to replace long sequences of MOVFF's from access
2761         bank registers to stack and vice versa,
2762         * src/pic16/device.h: added new field opt_flags, where optimization
2763         flags can be set to enable certain features,
2764         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2765         * pBlock, (genFunction, genEndFunction): surroung loop for
2766         saving/loading used registers in stack with PC_INFO pCodes,
2767         INF_LREGS. Code in between can then be optimized by pCode optimizer
2768         to support function calls,
2769         * (genDataPointerSet): fixed bug which loaded float fields in
2770         structures with corrupt data,
2771         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2772         in a standard way debug info on stderr. Feature used for developing
2773         and debugging only,
2774         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2775         obsolete chunks of code,
2776         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2777         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2778         * pic16/src/pcode.c (pic16_newpCodeInfo,
2779         * (pic16_newpCodeOpLocalRegs),
2780         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2781         feature,
2782         * (pic16_pCodeConstString): printing of the initial value of a
2783         symbol as a comment is inhibited since parsing was already done by
2784         copyStr and output is corrupt,
2785         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2786
2787 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2788
2789         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2790
2791 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2792
2793         * as/mcs51/lkarea.c: removed old K&R style,
2794           (lnksect): changed check on boundary error,
2795           (lnksect2): changed check on boundary error,
2796           (lnksect2): extend XSTK to end of page if size = 1
2797         * as/mcs51/lkmain.c: removed old K&R style,
2798           (Areas51): create l_IRAM symbol
2799         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2800         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2801           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2802         * device/lib/_mullong.c: added version to be compiled with xstack
2803         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2804         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2805         * device/lib/mcs51/crtxstack.asm: fixed comment
2806         * src/SDCCglue.c: maxInterrupts defaults to 0,
2807           (emitMaps): added pdata,
2808           (createInterruptVect): (re)moved default,
2809           (glue): added pdata,
2810           (glue): moved __start__xstack to XSTK with default size 1
2811         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2812           and options.float_rent when options.stackAuto is set,
2813           (linkEdit): only write XDATA_NAME if provided on command line
2814         * src/SDCCmem.h,
2815         * src/SDCCmem.c: added pdata
2816         * src/port.h: added pdata_name to PORT
2817         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2818           (saveRegisters, unsaveRegisters): removed usage of B,
2819           (genMinus): fixed accumulator clash,
2820           (genJumpTab): added comment, this needs another look
2821         * src/mcs51/gen.c: added check for "B in use" paranoia,
2822           added pushB() and popB()
2823         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2824           chance
2825         * src/avr/main.c,
2826         * src/ds390/main.c,
2827         * src/hc08/main.c,
2828         * src/mcs51/main.c,
2829         * src/pic/main.c,
2830         * src/pic16/main.c,
2831         * src/xa51/main.c,
2832         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2833           added PSEG (PAG,XDATA) or NULL to port specifier
2834         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2835         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2836           (_mcs51_genInitStartup): removed __start__xstack equ,
2837           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2838         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2839         * src/z80/gen.c (_rleAppend): fixed warnings
2840         * support/regression/tests/zeropad.c: added pdata test
2841         * .version: bumped to 2.4.6
2842
2843 2004-10-17 Borut Razem <borut.razem AT siol.net>
2844
2845         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2846         as a part of nightly build
2847
2848 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2849
2850         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2851         WREG holds the first byte function parameters,
2852         * (aopForSym): take special case for symbols which are in FARSPACE
2853         but in CODESPACE too,
2854         * (assignResultValue): modified to take into account _G.useWreg,
2855         * (genCall): don't use wreg for parameter passing when function is
2856         declared as reentrant, too, added optimization INCF to stack
2857         pointer when stack parameter count is 1,
2858         * (genFunction, genEndFunction): refurnished and fixed to not using
2859         wreg for passing parameters when function has varargs or is
2860         reentrant, fixed bug with symbol name compare for generating
2861         functions in absolute address,
2862         * (pic16_storeForReturn): refurnished,
2863         * (genCmp): began writing a new version of the function, not ready
2864         yet, therefore it is disabled,
2865         * (genAssign): do not read code memory when assigning a function to
2866         a pointer function,
2867         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2868         array of characters, not pointer,
2869         * (pic16initialComments): in debug mode emit an .ident directive for
2870         the assembler,
2871         * (_process_pragma): emit a new warning type (internal to pic16)
2872         when setting stack to default length, emit a similar warning when
2873         placing a function at absolute address and address is not word aligned
2874         * (_pic16_parseOptions): added 'return TRUE' statement,
2875         * (_pic16_linkEdit): if compiling a source, then add the source's
2876         file object, first in the list of objects to link,
2877
2878 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2879
2880         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2881         * src/pic/main.c : removed VC warning.
2882         * src/pic/gen.c : changed comment.
2883
2884 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2885
2886         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2887         reference to a deprecated symbol _GPTRREG was causing failure to
2888         link. Thanks G. M. Gallant for the info.
2889
2890 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2891
2892         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2893         comments for Bugs item #954788.
2894
2895 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2896
2897         * src/pic16/device.c (pic16_dump_gsection,
2898         * pic16_groupRegistersInSection): handle symbols declared to be in
2899         access bank differently,
2900         * src/pic16/gen.c (struct _G): added field resDirect,
2901         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2902         send values read from stack directly to result and don't allocate
2903         temporary values,
2904         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2905         same registers,
2906         * (pic16_sameRegsOfs): NEW,
2907         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2908         free because they were not allocated from temporary pool,
2909         * pic16_popRegFromString): workaround to fix a problem with
2910         allocating variables twice or never,
2911         * (genGenPointerGet): using PRODL instead of FSR0H,
2912         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2913         instead of FSR0H,
2914         * (genAssign): take advantage of the _G.resDirect flag,
2915         * (genCast): around line 11844, use mov2f instead of directly
2916         MOVFF'ing between operands to account for literal values,
2917         * src/pic16/genutils.c: some new debug functions for gpsim have been
2918         added,
2919         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2920         float with integer part only,
2921         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2922         place variables in access bank
2923         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2924         updated sources to reflect recent changes in gen.c
2925
2926 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2927
2928         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2929         sources that searched for headers in installation path, now the
2930         device/include/pic16 is used,
2931         * src/pic16/glue.c (pic16glue),
2932         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2933         .line directives if not in debug mode, this suppresses assembler's
2934         warnings for ignored directives
2935
2936 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2937
2938         * src/port.h: made reset_regparms prototype void parameter explicit.
2939         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2940         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2941         * doc/sdccman.lyx: documented warning disabling and how to use
2942           printf_large to make it print floats.
2943         * device/include/stdbool.h: NEW
2944         * device/lib/_atof.c,
2945         * device/lib/_divuint.c,
2946         * device/lib/_divulong.c,
2947         * device/lib/expf.c,
2948         * device/lib/printf_large.c,
2949         * device/lib/sincosf.c,
2950         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2951         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2952           a completely reentrant lib.
2953
2954 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2955
2956         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2957         * device/include/pic16/stdio.h: fixed bug with colon
2958
2959 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2960
2961         * device/include/pic16/stdio.h,
2962         * device/include/pic16/stdlib.h,
2963         * device/include/pic16/math.h: NEW
2964         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2965         declared as _naked to reduce overhead
2966         * device/lib/Makefile.in (target port-specific-objects-pic16):
2967         changed * to *.* so to ignore the CVS directory,
2968         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2969         stacked variables back in stack,
2970         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2971         corruption
2972
2973 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2974
2975         * .version: bumped version number to 2.4.5
2976         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2977         * support/Util/SDCCerr.c (messages structure): added entry for
2978         W_POSSBUG2
2979
2980         Large cumulative patch for pic16 port and libraries.
2981         * device/include/pic16/sdcc-lib.h,
2982         * device/include/pic16/stdarg.h,
2983         * device/include/asm/pic16/features.h,
2984         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2985         * device/include/pic16/float.h: changes reentrant keyword with
2986         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2987         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2988         updated target build-libraries to include objects from gptr,
2989         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2990         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2991         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2992         all function headings,
2993         * src/SDCCmain.c: added global parameter userIncDirsSet,
2994         * (parseCmdLine): when option -I is encountered add directory to
2995         userIncDirsSet too,
2996         * src/version.awk: added space between control and long,
2997         * src/pic16/NOTES: added some notes for the port,
2998         * src/pic16/gen.c: added prototype for mov2fp function,
2999         * (fReturnpic16[]): properly named return value registers,
3000         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3001         * (aopForSym): added code to handle symbols with onStack flag set,
3002         symbols onStack are allocated PTRSIZE bytes,
3003         * (aopFreeAsmop): handles special case where asmops are stack objects,
3004         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3005         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3006         added argument lock to trace flaws in allocating temporary registers
3007         when developing port,
3008         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3009         * (pic16_popRegFromString): reenabled allocating a direct register
3010         from string,
3011         * (assignResultValue): various beautifications,
3012         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3013         referenced function argument,
3014         * (genIpush): reenabled to allow stacked arguments, handles only
3015         ic->parmPush iCodes,
3016         * (genCall, genPcall): major changes to allow for variable argument
3017         functions, fixed a bug with falsely restoring stack pointer after
3018         returning from call,
3019         * (genFunction): pending code for critical function,
3020         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3021         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3022         * (genNearPointerGet): fixed bug with indirect reading, was always
3023         reading from INDF0
3024         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3025         pointers,
3026         * (genAddrOf): rewrote code to take address of a stacked function parameter
3027         * (genCast): fixed casting to generic pointer type,
3028         * src/pic16/gen.h: added AOP_STA,
3029         * (struct asmop): added field stk,
3030         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3031         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3032         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3033         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3034         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3035         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3036         generic pointers,
3037         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3038         and library paths,
3039         * (pic16_port structure): generic pointer size is set to 3,
3040         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3041         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3042         compiler warning,
3043         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3044         operand is an iTemp,
3045
3046 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3047
3048         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3049         * debugger/mcs51/simi.c: addapt new syntax of s51
3050
3051 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3052
3053         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3054         * src/pic16/pcode.c: commented out some calls to free() in order to
3055         fix bug #989576,
3056
3057 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3058
3059         * src/SDCCicode.h,
3060         * src/SDCCicode.c (isiCodeInFunctionCall),
3061         * src/avr/ralloc.c (selectSpil),
3062         * src/pic/ralloc.c (selectSpil),
3063         * src/pic16/ralloc.c (selectSpil),
3064         * src/ds390/ralloc.c (selectSpil),
3065         * src/hc08/ralloc.c (selectSpil),
3066         * src/xa51/ralloc.c (selectSpil),
3067         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3068         stack in the middle of a function call sequence (fixes bug #1020268)
3069         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3070         costs associated with the minimum switch case.
3071
3072 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3073
3074         * src/SDCC.lex: fixed bug #1030549
3075
3076 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3077
3078         * src/SDCCcse.h (struct cseDef),
3079         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3080         over a function call if the CSE is derived from a symbol whose
3081         address has been taken (fixes bug #1029883)
3082         * support/regression/tests/bug-1029883: a new regression test for
3083         this bug
3084
3085 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3086
3087         * src/hc08/gen.c (emitinline): fixed bug #1029778
3088         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3089         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3090         and starts toward RFE #905167)
3091
3092 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3093
3094         * src/pic16/gen.c (mov2f): New function to move an operand to
3095         another without considering if it is a literal or a register,
3096         * (pic16_sameRegs): don't check if they are both AOP_REG,
3097         * (AccRsh): removed andmask=0 lines,
3098         * (genLeftShift): duplicated to be improved in future versions,
3099         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3100         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3101         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3102         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3103         * (insertBankSwitch): fixed inserting banksel directives algorithm
3104         for instructions that follow a skip instruction, this fixes a report
3105         for broken subtraction code generation,
3106         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3107         iCode is a left op, just in case result and right share the same
3108         registers
3109
3110 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3111
3112         * src/hc08/main.c,
3113         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3114         preservation of HX
3115         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3116         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3117         on 2004-09-12; it was buggy
3118
3119 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3120
3121         * src/SDCCsymt.h: removed RESULT_CHECK
3122         * src/SDCCast.c,
3123         * src/SDCCglue.c,
3124         * src/SDCCval.c,
3125         * src/pic/glue.c,
3126         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3127
3128 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3129
3130         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3131         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3132         configuration values no more rejected by compiler, they are assigned
3133         to configuration registers with a warning message instead,
3134         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3135         the for-loop so last conf register is emitted too,
3136         * (_pic16_initPaths): link library libsdcc.lib by default,
3137         * (_hasNativeMulFor): modified test for multiplication according to
3138         Raphael Neider's remarks. Integer multiplication is also done with
3139         support functions,
3140         * device/include/pic16/pic18fregs.h: corrected type error in while
3141         testing and including 18f6720 header file
3142
3143 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3144
3145         * src/pic16/device.h (pic16_options): removed field use_crt,
3146         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3147         until an optimization to handle single bits is added,
3148         * (pic16_loadFSR0): moved before genUnpackBits,
3149         * (genAnd): some white lines removed,
3150         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3151         leave_reset flags in pic16_options when using crt modules,
3152
3153 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3154
3155         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3156           for bugs 898889 & 979599. Also used some safer print instructions.
3157
3158 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3159
3160         * src/pic16/device.h (pic16_options_t): added field use_crt,
3161         crt_name, no_crt,
3162         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3163         catch a probable future bug,
3164         * src/pic16/gen.c: aopIdx function commented out,
3165         * (genAssign): commented out old code which used aopIdx,
3166         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3167         code, added if conditionals to take into account the --use-crt
3168         command line options,
3169         * src/pic16/main.c (pic16_optionsTable): added new command line
3170         options, --use-crt= and --no-crt,
3171         * (_pic16_linkEdit): now the proper crt object is added in the
3172         linker command line except than when --no-crt is specified,
3173         * src/pic16/pcode.c,
3174         * src/pic16/pcode.h: added some structures and functions for a new
3175         optimization scheme to compansate for instruction overhead between
3176         same iCodes, this scheme is currently under development and is not
3177         working in any way,
3178         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3179         to && operator,
3180         * device/lib/pic16/startup/crt0i.c,
3181         * device/lib/pic16/startup/crt0iz.c: added global char variable
3182         __uflags to force the generation of an idata section
3183
3184 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3185
3186         * doc/Makefile,
3187         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3188         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3189
3190 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3191
3192         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3193         Frieder) and clarified the default code optimization mode
3194
3195 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3196
3197         * src/SDCC.lex (doPragma, process_pragma),
3198         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3199         "opt_code_size", and "opt_code_balanced"
3200         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3201         regrouped options by category, added support for category headers
3202         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3203         and "--opt-code-size"
3204         * doc/sdccman.lyx: documented these new options and pragmas
3205         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3206         preference into account
3207
3208 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3209
3210         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3211           geniCodePreDec): Fixed bug 904237 by generating a warning
3212         * src/SDCCerr.h,
3213         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3214
3215 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3216
3217         * src/pic/device.c : When no max ram set validate full memory range.
3218         * src/pic/pcode.c,
3219         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3220
3221 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3222
3223         * device/lib/_gptrget.c,
3224         * device/lib/_gptrput.c: updated comment
3225         * device/lib/calloc.c,
3226         * device/lib/free.c,
3227         * device/lib/malloc.c,
3228         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3229         * src/SDCCcse.c (cseBBlock),
3230         * src/SDCCicode.c (printOperand, geniCodeArray),
3231         * src/SDCCicode.h (struct operand): fixed bug 868103
3232         * support/regression/tests/bug-868103.c: added
3233         * src/SDCCast.c (searchLitOp),
3234         * src/SDCCcse.h (struct cseDef),
3235         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3236         * src/SDCCicode.h (struct operand),
3237         * src/SDCCsymt.h (struct sym_link),
3238         * src/avr/gen.c (hasInc),
3239         * src/ds390/gen.c (hasInc),
3240         * src/hc08/gen.c (genPlusIncr, hasInc),
3241         * src/mcs51/gen.c (hasInc),
3242         * src/pic16/glue.c (pic16_printIvalChar),
3243         * src/pic16/ralloc.c (regWithIdx),
3244         * src/xa51/gen.c (hasInc) : removed warnings
3245         * src/SDCCast.c (createBlock): added comment ???
3246         * src/hc08/ralloc.c: updated comments
3247
3248 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3249
3250         * doc/sdccman.lyx: updated section on switch statements, added
3251         section about semaphore locking
3252         * doc/Makefile: added option -info for latex2html
3253         * device/lib/_gptrget.c,
3254         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3255
3256 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3257
3258         * src/pic/device.h,
3259         * src/pic/device.c,
3260         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3261          maxram is less than 0x100.
3262
3263 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3264
3265         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3266
3267 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3268
3269         * src/port.h,
3270         * src/mcs51/main.c,
3271         * src/ds390/main.c,
3272         * src/z80/main.c,
3273         * src/hc08/main.c,
3274         * src/pic/main.c,
3275         * src/pic16/main.c,
3276         * src/avr/main.c,
3277         * src/xa51/main.c
3278         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3279         a jump table is the best form for a switch statement, including
3280         automatic insertion of missing cases to make the case range
3281         continuous. Developed in collaboration with Frieder Ferlemann.
3282
3283 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3284
3285         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3286         accumulator result if it needs sign extension
3287
3288 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3289
3290         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3291
3292 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3293
3294         * device/lib/gbz80/printf.c,
3295         * device/lib/z80/printf.c: removed define for NULL
3296
3297 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3298
3299         * as/xa51/xa_link.c,
3300         * device/examples/ds390/ow390/ad26.c,
3301         * device/examples/ds390/ow390/cnt1d.c,
3302         * device/examples/ds390/ow390/counter.c,
3303         * device/examples/ds390/ow390/ds2480.h,
3304         * device/examples/ds390/ow390/ds2480ut.c,
3305         * device/examples/ds390/ow390/findtype.c,
3306         * device/examples/ds390/ow390/gethumd.c,
3307         * device/examples/ds390/ow390/owllu.c,
3308         * device/examples/ds390/ow390/ownetu.c,
3309         * device/examples/ds390/ow390/swt12.c,
3310         * device/examples/ds390/ow390/swtloop.c,
3311         * device/examples/ds390/ow390/temp.c,
3312         * device/examples/ds390/ow390/temp10.c,
3313         * device/examples/ds390/ow390/thermo21.c,
3314         * device/examples/ds390/ow390/tinilnk.c,
3315         * device/examples/ds390/ow390/tstfind.c,
3316         * device/examples/serialcomm/windows/serial.cpp,
3317         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3318         * device/include/reg51.h: fixed line endings for cvs
3319
3320 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3321
3322         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3323         packRegsForAccUse, packRegisters): new accumulator register
3324         packing algorithm
3325         * support/regression/ports/hc08/support.c (_putchar): suppress
3326         warning of unused variable
3327         * src/SDCCicode.c: added SWAP entry to codeTable
3328
3329 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3330
3331         * device/lib/sprintf.c: forgot to add this file before previous commit
3332
3333 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3334
3335         * src/pic16/gen.c (genPackBits): added operand right in function
3336         parameters, load result directly if p_type is POINTER (that is
3337         called by genNearPointerSet)
3338         * (genUnPackBits): added operand left in function parameters,
3339         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3340         FSR0 if accessing bitfields,
3341
3342 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3343
3344         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3345           _print_format; updated printf, sprintf, vsprintf
3346         * device/include/asm/default/features.h: corrected comment/define
3347         * device/lib/Makefile.in: added sprintf.c
3348         * device/lib/libsdcc.lib: added sprintf module
3349         * device/lib/printf_large.c,
3350         * device/lib/vprintf.c,
3351         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3352           into these 3 files
3353         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3354         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3355         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3356           hc08 test
3357         * support/regression/tests/zeropad.c: define idata as data for hc08
3358
3359 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3360
3361         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3362         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3363         labels are referenced at least once (even if a reference is not found)
3364         * src/hc08/gen.c (emitcode): set isComment flag for comments
3365         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3366         loads), rules 6a..6b (optimize jumps to return)
3367
3368 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3369
3370         * device/lib/acosf.c (acosf),
3371         * device/lib/asinf.c (asinf),
3372         * device/lib/atanf.c (atanf),
3373         * device/lib/ceilf.c (ceilf),
3374         * device/lib/cosf.c (cosf),
3375         * device/lib/coshf.c (coshf),
3376         * device/lib/cotf.c (cotf),
3377         * device/lib/fabsf.c (fabsf),
3378         * device/lib/floorf.c (floorf),
3379         * device/lib/log10f.c (log10f),
3380         * device/lib/logf.c (logf),
3381         * device/lib/sinf.c (sinf),
3382         * device/lib/sinhf.c (sinhf),
3383         * device/lib/sqrtf.c (sqrtf),
3384         * device/lib/tanf.c (tanf),
3385         * device/lib/tanhf.c (tanhf),
3386         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3387         replaced all instances of "reentrant" in the library functions
3388         defined in math.h with this macro.
3389         * support/regression/tests/float_trans.c: reenabled test for hc08
3390
3391 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3392
3393         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3394         erroneously deleted
3395
3396 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3397
3398         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3399         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3400         multi-byte volatile operands are used
3401         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3402         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3403         initialization to area GSINIT0 so that it would always precede
3404         any static initializers in GSINIT
3405         * support/regression/tests/zeropad.c: fixed idata define for hc08
3406         * support/regression/tests/bug-927659.c,
3407         * support/regression/tests/float_trans.c: disabled tests for hc08
3408         pending missing library routines
3409         * .version: increased version number to 2.4.4 - hc08 port now passes
3410         regression tests
3411
3412
3413 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3414
3415         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3416         * Makefile.common.in,
3417         * as/Makefile,
3418         * as/hc08/Makefile.in,
3419         * as/mcs51/Makefile.in,
3420         * as/z80/Makefile.in,
3421         * debugger/mcs51/Makefile.in,
3422         * device/include/Makefile.in,
3423         * device/lib/Makefile.in,
3424         * doc/Makefile,
3425         * link/Makefile,
3426         * link/z80/Makefile.in,
3427         * packihx/Makefile.in,
3428         * sim/ucsim/main_in.mk,
3429         * sim/ucsim/avr.src/Makefile.in,
3430         * sim/ucsim/doc/Makefile.in,
3431         * sim/ucsim/gui.src/serio.src/Makefile.in,
3432         * sim/ucsim/hc08.src/Makefile.in,
3433         * sim/ucsim/s51.src/Makefile.in,
3434         * sim/ucsim/xa.src/Makefile.in,
3435         * sim/ucsim/z80.src/Makefile.in,
3436         * src/Makefile.in,
3437         * support/cpp2/Makefile.in,
3438         * support/librarian/Makefile,
3439         * support/makebin/Makefile: added DESTDIR to the install path proposed
3440         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3441         * doc/sdccman.lyx: added DESTDIR documentation
3442
3443 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3444
3445         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3446         instruction for interrupt handlers, use fast returns when returning
3447         from high priority interrupts
3448
3449 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3450
3451         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3452         code generation
3453         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3454         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3455         bugs, ported much of Bernhard's code from mcs51
3456         * src/mcs51/gen.c (genSend),
3457         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3458         than one when calling a reentrant function
3459         * device/lib/_mullong.c: defined an alternate struct layout for big
3460         endian ports (hc08)
3461
3462 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3463
3464         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3465         test
3466
3467 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3468
3469         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3470         are sane and complete before asking the port its prefered parameter
3471         passing method (fixes bug #1017633)
3472         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3473         and _ret3
3474
3475 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3476
3477         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3478         problem in bitfields >= 8 bits.
3479
3480 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3481
3482         * src/SDCCsymt.c: undid changes that were not meant to be committed
3483
3484 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3485
3486         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3487
3488 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3489
3490         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3491           copied and wrong bit got inverted
3492
3493 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3494
3495         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3496         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3497         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3498         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3499         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3500         assignments to bitfields at known addresses
3501         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3502         reads from bitfields at known addresses
3503         * src/hc08/ralloc.c (packRegisters),
3504         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3505         genhc08Code): optimize pointer get values used as conditionals
3506         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3507         and branch
3508
3509 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3510
3511         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3512         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3513         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3514         as conditionals
3515
3516 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3517
3518         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3519
3520 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3521
3522         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3523         related problems
3524
3525 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3526
3527         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3528
3529 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3530
3531         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3532         mcs51 port
3533
3534 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3535
3536         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3537
3538 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3539
3540         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3541         cases use more compact code.
3542
3543 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3544
3545         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3546
3547 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3548
3549         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3550
3551 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3552
3553         * src/SDCCsymt.h,
3554         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3555         parameter of changePointer() from symbol* to sym_link*
3556         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3557         * src/SDCCsymt.c (compareType): void* type is castable to other
3558         pointers, but not necesarily an exact match.
3559         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3560         is no longer blindly treated as an exact match.
3561         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3562
3563 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3564
3565         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3566
3567 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3568
3569         * src/pic/gen.c,
3570         * src/pic/pcode.c,
3571         * src/pic/ralloc.h,
3572         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3573
3574 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3575
3576         * src/pic/device.c,
3577         * src/pic/device.h,
3578         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3579
3580 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3581
3582         * src/mcs51/gen.c (emitcode): fixed bug #992819
3583
3584 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3585
3586         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3587           there's no need to make it worse
3588
3589 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3590
3591         * src/mcs51/ralloc.c (deassignLR),
3592         * src/ds390/ralloc.c (deassignLR),
3593         * src/hc08/ralloc.c (deassignLR),
3594         * src/z80/ralloc.c (deassignLR),
3595         * src/pic/ralloc.c (deassignLR),
3596         * src/pic16/ralloc.c (deassignLR),
3597         * src/avr/ralloc.c (deassignLR),
3598         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3599         rlivePoint): fixed another part of bug #971834
3600
3601 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/z80/main.c: enabled "critical" keyword
3604         * src/z80/mappings.i,
3605         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3606         functions (fixes bug #979646)
3607         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3608
3609 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3610
3611         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3612           such as c:\mydir.
3613
3614 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3615
3616         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3617           doesn't disable too much optimizations
3618
3619 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3620
3621         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3622
3623 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3624
3625         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3626
3627 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3628
3629         * src/pic/gen.c tidied up tabs
3630         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3631         * src/pic/main.c tidied up tabs
3632         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3633         * src/pic/pcoderegs.c tidied up tabs
3634         * src/pic/ralloc.c tidied up tabs
3635
3636 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3637
3638         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3639         to S_FIXED for pic16 port and when symbol is not in level 0,
3640         allocate for S_REGISTER storage class and pic16 port, too,
3641         * src/pic16/device.h: prototype for checkSym,
3642         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3643         * (pic16_assignConfigWordValue): test the value and the mask to
3644         validate that the value is suitable for the configuration word,
3645         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3646         collect extern declared symbols, don't emit symbol twice, check
3647         first if symbol is in publics set first,
3648         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3649         * added command line '--fstack' which enables an experimental
3650         feature for stack access, too buggy to be used yet...
3651         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3652         * (pic16_allocDirReg): when register has storage class S_REGISTER
3653         allocate in pic16_dynAccessRegs,
3654         * device/include/pic16/pic18f????.h: modified configuration word
3655         naming convention, words started as CONFIG0H but should be CONFIG1H
3656
3657 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3658
3659         * device/include/mcs51reg.h: fixed bug 970993
3660
3661 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3662
3663         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3664         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3665         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3666         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3667         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3668         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3669           error/warning numbers,
3670           added function setWarningDisabled()
3671         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3672         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3673           _memcmp.c _memmove.c calloc.c realloc.c free.c
3674         * support/regression/tests/malloc.c: added tests for new functionality
3675         * support/regression/tests/zeropad.c: added tests for truncated initializers
3676           and initialized char arrays starting with '\x0'
3677         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3678
3679 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3680
3681         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3682
3683 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3684
3685         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3686         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3687         peephole 177.e. Thanks to anonymous
3688
3689 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3690
3691         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3692         function isn't used in the source but referenced as a
3693         variable initializer then declare it as extern in .asm file
3694
3695 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3696
3697         * .version: increased version number to 2.4.3
3698
3699         Adding version extension according to ChangeLog CVS revision
3700         * src/Makefile.in (target all): added dependency 'version.h'
3701         * (rule version.h): added rule to create version.h from ChangeLog,
3702         * (rule dep): added dependency version.h,
3703         * src/version.awk: AWK script to create version.h
3704         * src/SDCCdwarf2.c (dwWriteModule),
3705         * src/SDCCglue.c (initialComments),
3706         * src/SDCCmain.c (printVersionInfo): modified to write after
3707         version string the version extension number,
3708         * src/SDCCutil.c: included "version.h"
3709         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3710         number,
3711         * src/SDCCutil.h: added prototype for getBuildNumber
3712
3713         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3714         includeDirsSet, too,
3715         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3716         const char [] is found in function prototype...
3717
3718         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3719         moving to WREG with source is already in WREG,
3720         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3721         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3722         * (aopForSym): stack'ed symbols are partially supported, added
3723         if-clause to support symbols in FARSPACE,
3724         * (sameRegs): added test for AOP_ACC to see if registers are same,
3725         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3726         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3727         * (pic16_popRegFromString): will not allocate a new register if it
3728         doesn't find one by name, bug may have introduced...
3729         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3730         * (genIpush): revived to use pic16 port's stack,
3731         * (genAddrOf): added incomplete case for stack'ed operand,
3732         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3733         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3734         can handle multibyte operands,
3735         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3736         * (pic16initialComments): added message for MPLAB compatibility
3737         mode enabled,
3738         * src/pic16/main.h: prototype for pic16_mplab_comp,
3739         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3740         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3741         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3742         because of increased complexity of procedure,
3743         * (_process_pragma): stack pragma changed to format 'stack pos len',
3744         emit symbol '_stack_end' to conform with gplink,
3745         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3746         to search for register,
3747         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3748         PO_GPR_REGISTER,
3749         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3750         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3751         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3752         case for PO_GPR_REGISTER,
3753         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3754         dies, the new era is ahead !...
3755         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3756         pic16_dynInternalRegs,
3757         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3758         * (pic16_allocDirReg): minor optimizations and bug fixes,
3759         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3760
3761         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3762         load stack and frame pointer with address of 'stack_end' symbol
3763
3764 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3765
3766         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3767         without source code but only variable initializers
3768
3769 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3770
3771         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3772         external are not declared as extern to reduce overhead while linking
3773
3774 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3775
3776         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3777
3778 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3779
3780         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3781           Yee Keat for the patch
3782         * src/SDCCast.c (decorateType): fixed bug #979599
3783         * src/ds390/gen.h: removed local fReturnSizeDS390
3784         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3785         * src/ds390/gen.c (genAnd, genOr, genXor),
3786         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3787
3788 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3789
3790         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3791         add relFilesSet to $3, manipulate $2 to handle linking of object
3792         files without source files in command line,
3793         * device/include/pic16 (all headers): added ID location macros,
3794         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3795         entries for ID location bytes,
3796         * (pic16_assignIdByteValue): NEW,
3797         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3798         added field dumpcalltree to pic16_options_t,
3799         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3800         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3801         emitting rFalseIfx label after check_carry label,
3802         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3803         pic16_emitDIRegs), NEW
3804         * (pic16glue): dump .calltree file when option --calltree found,
3805         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3806         * (_pic16_genAssemblerPreamble): emit ID locations after
3807         configuration registers,
3808         * (pic16_linkCmd): modifications of the link command,
3809         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3810         * (pic16_pCodeInitRegisters): don't init stack registers,
3811         * (pic16_findPrevInstruction): fixed bug,
3812         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3813         bug with immediate registers,
3814         * (buildCallTree): traces stack push and pop,
3815         * (pct2): dump also stack usage for each function,
3816         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3817         * (pic16_allocDirReg): various modifications,
3818         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3819         fixed to 1,
3820
3821 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3822
3823         * src/pic16/pcode.c: removed buggy double colon
3824
3825 2004-07-01 Borut Razem <borut.razem AT siol.net>
3826
3827         * support/scripts/sdcc.nsi: added include/pic16 to setup
3828
3829 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3830
3831         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3832         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3833         target 'clean',
3834         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3835         specific command line arguments. Also added sample lkr script
3836         for placing a variable at a specific memory bank.
3837         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3838         at a specific memory bank,
3839         * (pic16_dump_isection): fixed bug which caused string literals to
3840         be omitted when dumping idata section,
3841         * (pic16_groupRegistersInSection): added code to handle registers
3842         in specific memory banks,
3843         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3844         public, all references are renamed too,
3845         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3846         AOP_DPTR2,
3847         * (pic16_storeForReturn): added case to handle when dest is WREG,
3848         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3849         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3850         pic16_rel_udata, check to see if that register is marked as being
3851         a member of a specific memory bank,
3852         * (pic16_printIvalCharPtr): added code to add string literals either
3853         to code or the idata sections,
3854         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3855         also accept the 'udata' pragma,
3856         * src/pic16/main.h: new structure types sectName and sectSym
3857         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3858         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3859         * (pic16_findPrevInstruction): fixed, it returned nothing,
3860         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3861         instruction combinations,
3862         * (pic16_FixRegisterBanking): heavily reorganised,
3863         * (pic16_AnalyzeBanking): if generating banksel directives is
3864         disabled, then don't call FixRegisterBanking at all,
3865         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3866         completely removed,
3867         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3868
3869 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3870
3871         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3872         Phuah Yee Keat <yk.phuah AT nestac.com>
3873
3874 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3875
3876         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3877         correctly the IVT even if it is relocated to some other location
3878
3879 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3880
3881         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3882         * device/include/pic16/pic18f2220.h: NEW,
3883         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3884         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3885         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3886         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3887         nodefaultlibs, ivt_loc is the location of the interrupt vector
3888         table, and nodefaultlibs signs that default libraries should not be
3889         linked in link stage,
3890         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3891         according to --ivt-loc argument,
3892         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3893         when pragma stack is found,
3894
3895 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3896
3897         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3898         256 (range check), 257 (do while), 258.a-f (bit banging
3899         f.e. on 3-wire SPI bus)
3900
3901 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3902
3903         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3904         variables used exclusively within a loop
3905
3906 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3907
3908         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3909
3910 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3911
3912         * src/SDCClrange.c (computeClash): fixed bug #971834
3913
3914 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3915
3916         * src/mcs51/gen.c (genCmp): fixed bug #975903
3917         * src/hc08/gen.c (operandsEqu),
3918         * src/ds390/gen.c (operandsEqu),
3919         * src/z80/gen.c (operandsEqu),
3920         * src/pic/gen.c (operandsEqu),
3921         * src/pic16/gen.c (operandsEqu),
3922         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3923         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3924
3925 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3926
3927         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3928
3929 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3930
3931         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3932         default case in switch statement,
3933         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3934         to eliminate problem with initialisation of pointers, but problem
3935         still exists,
3936         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3937         * (emitStaticSegment): removed various lines emitting debug info,
3938         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3939         added processor registers for utilizing EEPROM,
3940         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3941         configurable and set 8
3942
3943 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3944
3945         * .version: increased version number to 2.4.2,
3946
3947         Cumulative patch for pic16 port
3948         * src/pic16/device.c: changed scheme to dump initial values for
3949         variables in idata segment, all print_idata* functions were removed,
3950         now the pic16_printIval* will be called,
3951         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3952         * _pic16_printPointerType, pic16_printPointerType,
3953         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3954         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3955         NEW, similar to the respective functions in SDCCglue.c,
3956         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3957         way, emitting hex bytes,
3958         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3959
3960 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3961
3962         * src/avr/ralloc.c (serialRegAssign),
3963         * src/xa51/ralloc.c (serialRegAssign),
3964         * src/pic/ralloc.c (serialRegAssign),
3965         * src/pic16/ralloc.c (serialRegAssign),
3966         * src/hc08/ralloc.c (serialRegAssign),
3967         * src/z80/ralloc.c (serialRegAssign),
3968         * src/ds390/ralloc.c (serialRegAssign),
3969         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3970
3971 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3972
3973         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3974         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3975
3976 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3977
3978         Cumulative patch for pic16 port:
3979         * src/pic16/device.h (typedef PIC16_device) modified fields for
3980         defining microcontrollers,
3981         * src/pic16/device.c: added new info for all devices in Pics16 array,
3982         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3983         to be optimised out by the pCode optimiser,
3984         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3985         specially, bug reported by G.M. Gallant,
3986         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3987         as force'd so that cannot be optimised out by pCode optimiser,
3988         * src/pic16/pcode.c,
3989         * src/pic16/pcodepeeph.c,
3990         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3991         they are disabled by default, but can be enabled explicit with
3992         command argument --denable-peeps, for testing,
3993         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3994         --pomit-ivt in COMPILE_FLAGS
3995
3996 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3997
3998         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3999           compilation on MSVC
4000
4001 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4002
4003         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4004
4005 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4006
4007         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4008         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4009
4010 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4011
4012         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4013         would only assign 0x300001 register.
4014
4015 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4016
4017         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4018         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4019
4020 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4021
4022         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4023         for ds80c400
4024         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4025         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4026         added peephole 254 (left shift), 255 (jump table)
4027
4028 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4029
4030         * device/lib/Makefile.in: removed comment line with model-pic16,
4031         * (target port-specific-objects-pic16): the libraries and objects
4032         are copied to the build directory form the device/lib/pic16/bin
4033         directory
4034
4035         Cumulative patch concerning pic16 port:
4036         * library directory has been re-organized,
4037         * added support for PIC18F1220,
4038         * added headers and library sources for chips 18f1220,18f6520,
4039         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4040
4041         * configuration registers setting has changed, now each supported
4042         device has a complete description of the registers it uses,
4043         * all initialisations are moved to idata sections, these section
4044         can be absolute or relocatable,
4045         * fixed initialisation of codespace variables,
4046         * fixed warning about PCLATU and gpsim,
4047         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4048         * (genAssign): use table reads when assigning from variables in codespace,
4049         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4050         char/int variables placed in codespace,
4051         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4052         registers set in .asm file, no need for --pomit-config-words anymore,
4053         * (pic16glue): some 8051 legacy segments are commented out
4054         (to be removed completely),
4055         * added support for alternative assembler and linker with --asm=
4056         and --link= command line arguments,
4057         * peepholes are disabled automatically in the port, no need to
4058         specify on command line,
4059         * port supports natively char/int/long multiplication, but converts
4060         all divisions to support functions,
4061         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4062         to the file set in variable $2,
4063         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4064         strings in ASCII format and not in hex,
4065         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4066         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4067         allocate proper register if iCodes aren't temporary,
4068
4069 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4070
4071         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4072
4073 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4074
4075         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4076         is commented out
4077
4078 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4079
4080         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4081         computed address is reused
4082         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4083         multi-byte bitfields
4084
4085 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4086
4087         * src/z80/gen.c: (genArrayInit): must check for pointers too
4088
4089 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4090
4091         * support/regression/tests/zeropad.c: never meant to commit the
4092           nestedstruct test: removed, added check for GCC version
4093
4094 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4095
4096         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4097         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4098         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4099           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4100           bugs 928906 and 954082 half-empty initializers
4101         * src/SDCCsymt.h,
4102         * src/SDCCsymt.c (getAllocSize): added for above fix
4103         * src/z80/gen.c (genArrayInit): fixed bug 741044
4104         * support/regression/tests/zeropad.c: added tests
4105
4106 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4107
4108         * src/pic16/device.c (pic16_dump_section): corrected bug which
4109         caused some symbols of the libraries to be misplaced
4110
4111 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4112
4113         * src/pic16/glue.c,
4114         * src/pic16/ralloc.h,
4115         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4116         to fix conflict with pic port
4117
4118 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4119
4120         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4121         externs configuration variables,
4122         * src/pic16/ralloc.h,
4123         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4124         prototype in header, commented out some debug messages
4125
4126 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4127
4128         * src/pic16/glue.c,
4129         * src/pic16/main.c,
4130         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4131         for gpasm COFF object generation. Thanks to D. Hawkins for
4132         his patch info
4133
4134 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4135
4136         * src/ds390/main.c,
4137         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4138         Brock for spotting this)
4139         * src/ds390/gen.c (genEndFunction),
4140         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4141         interrupt handler and critical. Disable push/pop optimizations when
4142         peephole optimizations disabled.
4143
4144 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4145
4146         Updated pic16 library sources and headers.
4147         * device/lib/pic16/pic18f*/ ,
4148         * device/include/pic16/*.h: modified to handle structured SFR
4149         definitions
4150
4151 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4152
4153         * src/port.h (PORT structure): added hook initPaths, now each
4154         port can declare its own default search paths,
4155         which can been seen with the --print-search-dirs option,
4156         see pic16 port for example,
4157         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4158         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4159         * (doPrintSearchDirs): NEW, replaces in a central manner the
4160         printing of search dirs which was split in set*Paths functions,
4161         * (main): added call to port->initPaths and doPrintSearchDirs,
4162         * src/avr/main.c,
4163         * src/ds390/main.c,
4164         * src/hc08/main.c,
4165         * src/izt/i186.c,
4166         * src/izt/tlcs900h.c,
4167         * src/mcs51/main.c,
4168         * src/pic/main.c,
4169         * src/pic16/main.c: modified port structures to reflect addition of
4170         initPaths hook,
4171
4172         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4173         * (pic16_dump_section): for registers in same address reserve memory once,
4174         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4175         to no_banksel,
4176         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4177         result is greater in size than right or left,
4178         * (pic16_genUMult8X8_8): there are some cases where the result can
4179         be 16 bits size, so handle these,
4180         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4181         * (pic16_outBitC): modified to emit pcodes,
4182         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4183         or not,
4184         * (genDivOneByte): implemented algorithm to divide 8-bits,
4185         * (genCmp): uncommented goto, but issues still exist,
4186         * (genAnd): fixed a bug with variables >8bits,
4187         * (genPackBits): optimization added that uses BCF/BSF to change a
4188         single bit,
4189         * (genAssign): fixed bug when assigning floating point literals,
4190         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4191         __sdcc_gsinit_startup label,
4192         * src/pic16/main.c (_pic16_init): removed search directory
4193         initialisations,
4194         * (_pic16_initPaths): NEW, used to initialise search directories,
4195         * (_hasNativeMulFor): support functions for all except char/int
4196         multiplication, and char division,
4197         * (PIC16_port struct): modified entry for native mul support,
4198         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4199         no_banksel option,
4200         * (buildCallTree): call to register_usage is ifdef'ed out,
4201
4202 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4203
4204         * device/include/string.h: applied Stas Sergeev's patch to make this
4205         header file compatible with the preprocessor -Wundef option
4206         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4207         failure (fixes bug #941458)
4208
4209 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4212         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4213         that the variable, not the function, should be static
4214         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4215         to be consistent with non-literal case
4216
4217 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4218
4219         * src/SDCCast.c (isConformingBody): fixed bug #949967
4220         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4221         convilong): fixed bug #952086
4222
4223 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4224
4225         * src/SDCCmem.c (allocVariables): fixed bug #955321
4226
4227 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4228
4229         * src/hc08/main.c (_hc08_genAssemblerEnd),
4230         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4231         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4232         completely eliminated the use of a temporary file
4233         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4234         when more than one file linked
4235         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4236
4237 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4238
4239         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4240         which fixes bug #543481
4241         * support/regression/tests/bug-751703.c: fixed comments left from a
4242         cut and paste error
4243         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4244         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4245         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4246         scopes
4247         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4248         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4249         are now changed to underscores in moduleName
4250
4251 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4252
4253         * as/mcs51/lkmem.c: better fix for bug #954173
4254
4255 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4256         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4257
4258         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4259         * device/include/c8051f000.h,
4260         * device/include/c8051f120.h,
4261         * device/include/c8051f300.h,
4262         * device/include/c8051f310.h,
4263         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4264         PWM16) and detab'ed
4265
4266 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4267
4268         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4269         and mailing lists, doc'ed --no-peep-comments, removed reference
4270         to knoppix (newest version has no LyX/LaTeX), other minor changes
4271         * src/SDCCglue.c (glue): save 2 bytes stack space with
4272         option --main-return. The ljmp could probably be avoided too
4273
4274 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4275
4276         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4277
4278 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4281         * src/SDCCopt.c (isLocalWithoutDef),
4282         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4283         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4284         (credit to Maarten Brock for patch #949363, on which this is based)
4285         * support/regression/tests/bug-751703.c: some test cases of extern used
4286         within inner scopes.
4287
4288 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4289
4290         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4291         SPEC_STRUCT
4292         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4293         struct definitions
4294         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4295         dwWriteLabel): fix to create valid debugger symbols even when
4296         the module name has non-alphanumeric symbols in it
4297         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4298         when a variable's allocation has been optimized away
4299
4300
4301 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4304         * src/hc08/main.c,
4305         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4306         * src/mcs51/main.c,
4307         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4308         * src/ds390/main.c,
4309         * src/z80/gen.c (z80_emitDebuggerSymbol),
4310         * src/z80/main.c,
4311         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4312         * src/pic/main.c,
4313         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4314         * src/pic16/main.c,
4315         * src/avr/gen.c (avr_emitDebuggerSymbol),
4316         * src/avr/main.c,
4317         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4318         * src/xa51/main.c,
4319         * src/SDCCdebug.c (emitDebuggerSymbol),
4320         * src/SDCCdebug.h,
4321         * src/port.h: added a debugger struct to the port struct. Added a
4322         callback for defining debugger symbols
4323
4324         * src/SDCCast.c (createLabel),
4325         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4326         with isitmp = 1
4327         * src/SDCCicode.h,
4328         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4329         iCode back to the ast for the function
4330
4331         * src/hc08/ralloc.c (hc08_assignRegisters),
4332         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4333         unneeded fields from the regs struct.
4334         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4335         pushReg() & pullReg() functions instead of emitcode()
4336
4337         * src/hc08/gen.c (genLabel, genhc08Code),
4338         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4339
4340         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4341         debugger hooks
4342
4343         * src/hc08/gen.c (genEndFunction, genhc08Code),
4344         * src/hc08/gen.h,
4345         * src/mcs51/gen.c (genEndFunction, gen51Code),
4346         * src/mcs51/gen.h,
4347         * src/ds390/gen.c (genEndFunction, gen390Code),
4348         * src/ds390/gen.h,
4349         * src/z80/gen.c (genEndFunction, genZ80Code),
4350         * src/z80/gen.h,
4351         * src/z80/z80.h,
4352         * src/pic/gen.c (genEndFunction, genpic14Code),
4353         * src/pic/gen.h,
4354         * src/pic16/gen.c (genEndFunction, genpic16Code),
4355         * src/pic16/gen.h,
4356         * src/avr/gen.c (genEndFunction, genAVRCode),
4357         * src/avr/gen.h,
4358         * src/xa51/gen.c (genEndFunction, genXA51Code),
4359         * src/xa51/gen.h,
4360         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4361         specific code to cdbFile.c and out of the backend code generators
4362
4363         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4364         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4365         starting address is now 0
4366
4367         * as/hc08/asm.h,
4368         * as/hc08/m08pst.c,
4369         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4370         assembler directive for DWARF support
4371         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4372
4373         * src/src.dsp,
4374         * src/Makefile.in,
4375         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4376
4377 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4378
4379         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4380         and inappropriate peephole optimization in jump tables
4381
4382 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4383
4384         * as/hc08/m08pst.c,
4385         * src/SDCCglue.c: sdccopt works for the hc08 port now
4386
4387 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4388
4389         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4390
4391 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4392
4393         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4394
4395 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4396
4397         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4398         rules
4399         * src/SDCCmain.c,
4400         * src/SDCCglobl.h,
4401         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4402         comments from the peephole optimizer replacement rules
4403         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4404         symbols
4405         * src/SDCCcse.c (updateSpillLocation),
4406         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4407         equivalents
4408         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4409         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4410         objects far pointers
4411
4412 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4413
4414         * src/SDCCsymt.h: a missing part of my last change
4415         * src/pic/ralloc.c (regTypeNum),
4416         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4417
4418 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/SDCCicode.h,
4421         * src/SDCCicode.c (aggrToPtrDclType),
4422         * src/SDCCptropt.h,
4423         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4424         ptrPseudoSymConvert),
4425         * src/pic/ralloc.c (regTypeNum),
4426         * src/pic16/ralloc.c (regTypeNum),
4427         * src/hc08/ralloc.c (regTypeNum),
4428         * src/ds390/ralloc.c (regTypeNum),
4429         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4430         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4431
4432 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * link/z80/lkmain.c (afile),
4435         * as/hc08/lkmain.c (afile),
4436         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4437         prevent a pointer problem when a filename has no directory and
4438         no extension specified.
4439
4440 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4441
4442         * link/z80/lkmain.c (afile): allow periods in directory names
4443         * link/z80/lkmain.c (afile),
4444         * as/mcs51/lkmain.c (afile),
4445         * as/hc08/lkmain.c (afile): allow linker script file to have an
4446         extension other than ".lnk"
4447         * link/z80/lklex.c (getfid),
4448         * link/z80/lkmain.c (parse),
4449         * as/mcs51/lklex.c (getfid),
4450         * as/mcs51/lkmain.c (parse),
4451         * as/hc08/lklex.c (getfid),
4452         * as/hc08/lkmain.c (parse): Support comments in the linker script
4453         file on lines by themselves and after filenames
4454
4455 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4456
4457         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4458
4459 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4460
4461         * src/z80/peeph-z80.def: removed some peephole rules that don't
4462         work with multibyte arithmetic (fixed bug #937126)
4463         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4464         to registers and not global variables
4465         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4466         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4467         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4468         checking for assignments not internally generated (fixed bug #931895)
4469         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4470         structure member (fixed bug #930072)
4471
4472 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4473
4474         * src/SDCCmain.c (linkEdit),
4475         * src/hc08/main.c (_hc08_parseOptions),
4476         * as/hc08/Makefile.in,
4477         * as/hc08/aslink.h,
4478         * as/hc08/asm.h,
4479         * as/hc08/m08pst.c,
4480         * as/hc08/lkrloc.c (relr, rele),
4481         * as/hc08/lkarea.c (lnkarea)
4482         * as/hc08/lkmain.c (afile, parse),
4483         * as/hc08/lkelf.c: support for ELF output
4484         * as/hc08/lks19.c (s19),
4485         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4486
4487 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4488
4489         * as/mcs51/lkihx.c: Fixed bug #899105.
4490
4491 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4492
4493         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4494         .dsp files from Unix to DOS.
4495
4496 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4497
4498         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4499         function pointers; we have been compliant for several months now.
4500         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4501         change that was accidently commented out
4502         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4503         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4504         bug #922319
4505
4506 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4507
4508         * src/hc08/gen.c: output of all of the internal debugging information
4509         is now controlled by the D() macro; it is disabled by default
4510
4511 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4512
4513         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4514         harder to keep the same registers during a CAST iCode
4515         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4516         long via int can be done in a single cast, if the signedness is
4517         correct.
4518         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4519         putchar() in tinibios.c in ds390's library
4520
4521 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4522
4523         * src/SDCCast.c (decorateType): fixed bug #898889,
4524         cast result of a literal complement too
4525         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4526         fixed check for bitfields
4527
4528 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4529
4530         * src/SDCCicode.c (geniCodeLogic): made it static,
4531         (geniCodeLogicAndOr): added in order to fix bug #905492,
4532         (ast2iCode): fixed bug #905492
4533         * support/regression/tests/bug-905492.c: added
4534         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4535         (processParms): fixed bug #927659: don't copy parms, this will clear
4536         decorated flag
4537         * support/regression/tests/bug-927659.c: added
4538
4539 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4540
4541         * src/SDCCast.c (addCast): don't cast float to char
4542         * device/lib/libsdcc.lib: added _memmove
4543
4544 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4545
4546         * device/lib/large/Makefile: fixed parallel execution by
4547         replacing `make` by `$(MAKE)`
4548
4549 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4550
4551         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4552         offsets (fixes bug #923936)
4553
4554 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4555
4556         * device/lib/small/Makefile: fixed parallel execution by
4557         replacing `make` by `$(MAKE)`
4558
4559 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4560
4561         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4562
4563 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4564
4565         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4566         * src/regression/Makefile: Regression test was not running.
4567
4568 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4569
4570         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4571         complement if possible
4572         * src/SDCCval.c (valComplement),
4573         * src/SDCCicode.c (operandOperation): fixed complement of literal
4574         * support/regression/tests/onebyte.c (testComplement): added
4575
4576 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4577
4578         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4579         return an optimized tree; actually replace actParm with the new tree
4580         * src/SDCCast.h: added some parantheses to remove side effects
4581         * support/regression/tests/bug-920866.c
4582
4583 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4584         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4585         Bit operands were not being handled properly in the pic14 port.
4586         (now src/regression/add.c passes again).
4587
4588 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4589
4590         * src/SDCC.y (labeled_statement): case and default no longer require
4591         a following statement (RFE #893037)
4592
4593 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4594
4595         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4596         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4597         disabled (fixes bug #916294)
4598         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4599         "mov a,acc"; patch provided by Lenny Story
4600         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4601
4602 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4603
4604         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4605         functions
4606         * src/ds390/gen.c (genFunction, genEndFunction),
4607         * src/ds390/ralloc.c (ds390_assignRegisters),
4608         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4609         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4610         pushed if there are parameters passed on the stack. Also, a cleaner
4611         way to decide if r0/r1 should be pushed/popped. (Together they fix
4612         bug #918693)
4613
4614 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4615
4616         * doc/sdccman.lyx,
4617         * device/lib/mcs51/crtpagesfr.asm,
4618         * device/lib/mcs51/crtxinit.asm,
4619         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4620         to avoid confusion with Si Lab's SFRPAGE register.
4621
4622 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4623
4624         * src/SDCCglue.c (emitMaps): allow public sfr variables
4625         * src/SDCCglue.c (initialComments): include compiler build date
4626         with compiler version and put the timestamp of the generated
4627         assembly file on a serperate line to be less confusing.
4628         * src/port.h: added genInitStartup hook
4629         * src/avr/main.c,
4630         * src/ds390/main.c,
4631         * src/hc08/main.c,
4632         * src/pic/main.c,
4633         * src/pic16/main.c,
4634         * src/xa51/main.c,
4635         * src/z80/main.c: genInitStartup initialize as NULL (default to
4636         historical behaviour)
4637         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4638         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4639         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4640         library instead of hard coding it into the compiler.
4641         * support/regression/ports/mcs51-stack-auto/spec.mk,
4642         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4643         * device/lib/mcs51/Makefile,
4644         * device/lib/small/Makefile,
4645         * device/lib/large/Makefile,
4646         * device/lib/mcs51/crtpagesfr.asm,
4647         * device/lib/mcs51/crtstart.asm,
4648         * device/lib/mcs51/crtxclear.asm,
4649         * device/lib/mcs51/crtxinit.asm,
4650         * device/lib/mcs51/crtclear.asm,
4651         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4652         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4653         and into user configurable files.
4654         * device/lib/clean.mk: clean mcs51 directory too
4655         * support/regression/tests/longlit.c: added static to T1 declaration
4656         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4657         accesses in the initialization code
4658
4659 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4660
4661         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4662         OSCTRIMVAL as noted in bug #916008
4663
4664 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4665
4666         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4667         in loops with multiple exits (reported as incorrect registers
4668         used by Martin Helmling in Sdcc-user list)
4669
4670 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4671
4672         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4673         made ds390 register extensions look less like error messages
4674
4675 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4676
4677         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4678         reported by Adam Wozniak in Sdcc-user list
4679
4680 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4681
4682         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4683         arithmetic optimizations, added debug output
4684
4685 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4686
4687         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4688         * sdcc.spec: updated and split sdcc into 3 rpms
4689         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4690         needed for literals of LEFT_OP and '+'
4691         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4692         introduced RESULT_TYPE_NOPROM
4693         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4694         left shift
4695         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4696         limited promotion to int only for '*'
4697         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4698
4699 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4700
4701         * src/pic16/gen.c (genSkip),
4702         (genc16bit2lit), (gencjneshort): commented out
4703         (is_LitOp): new helper function, checks operand type
4704         (genCmpEq): rewritten
4705
4706 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4707
4708         * support/regression/tests/bug-908454.c: added
4709
4710 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4711
4712         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4713         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4714         (geniCodeCast): cosmetic, don't preserve bit storage class
4715         (geniCodeLeftShift): added promotion
4716         (geniCodeLogic): fixed regression
4717         * src/SDCCsymt.c (computeTypeOr): accept bits too
4718         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4719
4720 2004-03-07  Borut Razem <borut.razem AT siol.net>
4721
4722         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4723
4724 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4725
4726         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4727         version of pic16_genPackRegisters which does not check if ic is a
4728         CAST operator,
4729         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4730         function cause string1.c regression test fails
4731
4732 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4733
4734         * sim/ucsim/configure.in,
4735         * sim/ucsim/configure,
4736         * sim/ucsim/doc/Makefile.in: use docdir
4737         * src/SDCC.y: fixed sbit atrributes
4738         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4739         * src/SDCCast.c (decorateType): |^& need special promotion handling
4740         * src/SDCCast.h,
4741         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4742         * src/SDCCsymt.h (computeType),
4743         * src/SDCCicode.c: computeType() needs op
4744         * src/SDCCsymt.c (checkTypeSanity),
4745         * doc/sddman.lyx: "plain" bitfields are unsigned
4746         * src/SDCCsymt.c (computeTypeOr): added
4747         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4748         |^& ops
4749         * src/SDCCval.c (val*): computeType() needs op
4750         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4751         * support/regression/tests/onebyte.c: added tests for |^&
4752
4753 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4754
4755         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4756         for writing icode into asm output.
4757
4758 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4759
4760         * src/pic16/device.c: added some debug lines enabled
4761         with macro DEBUG_CHECK,
4762         * src/pic16/genarith.c: more debug in genPlus,
4763         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4764         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4765         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4766         * (aopForSym): onStack symbols are re-placed in data memspace,
4767         and onStack flag is cleared,
4768         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4769         copy temporary pcodeop,
4770         * (genPcall): added warning for not updating PCLATU,
4771         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4772         always true for pic16 port,
4773         * (genMultOneWord): NEW, supports integer multiplication,
4774         * (genMult): modified to call genMultOneWord,
4775         * (ifxForOp): added warning when return NULL,
4776         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4777         flag is set before call to operandFromSymbol for implicit
4778         added structures,
4779         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4780         options.intlong_rent are set by default,
4781         * (_hasNativeMulFor): modified to allow port generation of integer
4782         multiplication,
4783         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4784         set regtype to REG_SFR for all registers, restricting seting the
4785         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4786
4787 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4788
4789         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4790         more than 500 times in the regression tests
4791
4792 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4793
4794         * support/Util/SDCCerr.h,
4795         * support/Util/SDCCerr.c,
4796         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4797         enumerator_list),
4798         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4799         for symbol conflicts.
4800         * support/valdiags/tests/enum.c,
4801         * support/valdiags/tests/tentdecl.c,
4802         * support/valdiags/tests/struct.c: expect possible error messages
4803         referring to original symbol definitions.
4804         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4805         * src/SDCCsymt.h,
4806         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4807
4808 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4809
4810         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4811
4812 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4813
4814         * src/pic16/ralloc.c (newReg): fixed bug #908929
4815
4816 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4817
4818         * src/ds390/gen.c: added missing #include "main.h"
4819
4820 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4823         checking if symbol is already in set,
4824         * src/pic16/device.h: prototype for checkAddSym,
4825         * src/pic16/gen.c: (_G): added entry interruptvector,
4826         * (assignResultValue): removed some commented out lines,
4827         * (genFunction): check for ISR via sym->type, absolute section for
4828         interrupt code is created via a new pBlock, the goto instruction is
4829         placed now correctly at the interrupt vector position, changed all
4830         references from ivec to _G.interruptvector,
4831         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4832         is the interrupt is a high priority one, same for return from ISR,
4833         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4834         externs to calls of checkAddSym,
4835         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4836         pic16_pcode_verbose flag is set,
4837         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4838         * src/pic16/pcoderegs.c: message about how many registers are saved
4839         will only be emitted if pic16_pcode_verbose flag is set,
4840
4841 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * src/ds390/ralloc.h,
4844         * src/ds390/ralloc.c (ds390_regWithIdx),
4845         * src/ds390/gen.c (emitcode),
4846         * src/ds390/main.h,
4847         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4848         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4849         ds390operandCompare, getRegsRead, getRegsWritten,
4850         initializeAsmLineNode): customized instruction size calculation for
4851         ds390, started basis for some register optimizations
4852         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4853         corresponding assembly output
4854         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4855         missing push/pop of r0/r1. Optimized push/pops
4856
4857 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4858
4859         * src/mcs51/main.c (instructionSize): fixed ACALL size
4860         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4861
4862 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4863
4864         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4865         the sorting of rlist with NULL elements
4866         * (print_idataType, print_idata): NEW to create idata sections
4867         * src/pic16/device.h: idataSymSet new variable
4868         * src/pic16/gen.c (genFunction): fixed some bugs in string
4869         comparing, improved the absolute section creation for ISRs,
4870         added FSR0L/FSR0H in registers that are saved in an ISR,
4871         * (genInline): fixed the processing of inline snippets,
4872         now they undergo no process by the peephole optimizer
4873         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4874         are placed in idataSymSet,
4875         * (pic16emitStaticSeg): extern symbols are added in externs,
4876         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4877         switching when aboslute variables are placed in access bank memory
4878         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4879         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4880         commented out with #if,
4881         * (pic16_packRegisters): reintroduce the check for CAST because some
4882         symbols are not correctly handled,
4883         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4884         pCodeInstruction instead of pCode,
4885         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4886         pCodeAsmDir definition,
4887         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4888         directive, then the argument directive is emitted without the leading
4889         tab, hack for inline labels which must be in the first column,
4890         * (compareLabel,pic16_findNextInstruction),
4891         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4892         * (insertBankSwitch): modified for the new pCodeAsmDir,
4893
4894 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4895         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4896
4897         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4898         instance,
4899         * (pushSide): commented out with #if,
4900         * (assignResultValue): fixed some typos in saving
4901         registers,
4902         * (genPcall): FIXED and sync'ed with genCall,
4903         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4904         * (genNearPointerGet): fixed to handle some more cases,
4905         implementation scheme via table reads,
4906         * (genConstPointerGet): modified to access code memory correct,
4907         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4908         and improved to handle some cases
4909         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4910         instead of "RETLW" for init data
4911         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4912         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4913         variables are placed in access bank memory (<0x80 and >=0xf80),
4914         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4915         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4916         TBLWT_POSTDEC,TBLWT_PREINC
4917         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4918         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4919         directives
4920         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4921         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4922         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4923         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4924
4925 2004-02-29  Borut Razem <borut.razem AT siol.net>
4926
4927         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4928         support/Util/findme.h, support/Util/system.h: enhance binary relative
4929         search for lib and include by using findProgramPath()
4930
4931 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4932
4933         * src/SDCCpeeph.h,
4934         * src/SDCCpeeph.c (pcDistance),
4935         * src/port.h,
4936         * src/mcs51/ralloc.h,
4937         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4938         * src/mcs51/main.h,
4939         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4940         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4941         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4942         size calculation port specific, started basis for some register
4943         optimizations
4944         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4945         missing push/pop of r0/r1. Optimized push/pops
4946         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4947         * device/lib/_modsint.c (_modsint),
4948         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4949         and stack version so regression tests pass
4950
4951 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4954         * src/SDCCast.c (decorateType): catch another small optimization
4955         with '?' operator
4956         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4957         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4958         modified to finally use computeType() all over SDCC,
4959         see Feature Request #877103
4960         * src/SDCCval.h: cosmetic
4961         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4962         valCompare(); regression tested in muldiv.c
4963         * support/regression/tests/muldiv.c (testMod): mod sign follows
4964         dividend only
4965
4966 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4967
4968         * src/SDCCast.c (decorateType): fixed bug #902362
4969         * doc/INSTALL.txt: fixed install instructions for win32
4970
4971 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4972
4973         * device/include/Makefile.in (install): fixed by replacing spaces
4974         by tabs
4975         * doc/README.txt,
4976         * doc/INSTALL.txt: updated for release
4977         * doc/sdccman.lyx: added warning for --xstack being buggy
4978
4979 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4980
4981         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4982         to eliminate build warnings.
4983         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4984
4985 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4986            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4987
4988         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4989         removed -penable-stack, added comment for stack pragma, added
4990         warning for not initializing the stack/frame registers, removed
4991         comment at interrupts section
4992
4993         Stack is made permanent, there is no ability to disable stack usage.
4994         * src/pic16/device.h,
4995         * src/pic16/device.c: removed all references to USE_STACK macro,
4996         * src/pic16/device.c (pic16_dump_section): when no elements in
4997         rlist, free rlist before return,
4998         * (pic16_dump_int_registers): NEW, internal registers are a new set
4999         of general purpose registers reused by each function,
5000         * (checkAddReg): returns 1 if registers is added to set,
5001         * (pic16_groupRegistersInSection): when a registers is of type
5002         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5003         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5004         SRCASECMP macro is moved here from device.c
5005         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5006         PO_PCLATU, PO_PRODL, PO_PRODH,
5007         * (pic16_pCodeOpType, genMinus,
5008         changed compares to "a" register, with AOP_ACC,
5009         * (pic16_genPlus): fixed some bugs and indented properly,
5010         * (pic16_addSign): changed size to size+offset in the MOVWF
5011         instruction,
5012         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5013         multiply 8-bit operand by literal, result is 8-bit,
5014         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5015         multiply 2 8-bit operand, result is 8-bit,
5016         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5017         genUMult8X*_16,
5018         * src/pic16/gen.c: changed accUse to contain WREG only,
5019         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5020         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5021         true, do not use immediate addressing any more unless sym is a
5022         pointer in codespace,
5023         * (aopForRemat): do not use immediate addressing when symbol not in
5024         codespace and when symbol's address is requested,
5025         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5026         accUse size (= 1),
5027         * (aopGet): added case for AOP_ACC and don't return "accumulator
5028         bug" but WREG instead,
5029         * (popGetTempReg): pushes contents of temporary register in stack,
5030         * (popReleaseTempReg): pops contents of temporary register from
5031         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5032         * (pic16_popGet): separated case AOP_ACC to return register WREG
5033         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5034         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5035         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5036         the use of immediate pointers to certain cases only.
5037
5038         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5039         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5040         * (assignResultValue, genCall, genRet): modified to use the new
5041         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5042         genPcall is still broken,
5043         * (genFunction): added code to create 'A' type pBlocks when
5044         interrupt functions are generated, code not extensively tested yet,
5045         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5046         * (genEndFunction): modified so ISRs pop stored registers from stack,
5047         * (genMultOneByte): cleanup,
5048         * (AccRsh): added flag andmask, to and result with appropriate mask,
5049         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5050         * (genDataPointerGet): fixed and reenabled its use,
5051         * (genNearDataPointerGet): bugs fixed,
5052         * (genDataPointerSet): bugs fixed,
5053         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5054         pic16_DumpSymbol, pic16_DumpOp,
5055         * src/pic16/genutils.h: function prototypes for the above functions,
5056         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5057         pointers,
5058         * (pic16emitRegularMap): many many many improvements, but needs a
5059         major cleanup,
5060         * src/pic16/main.c: enable_stack in pic16_options is removed,
5061         * (_pic16_parseOptions): removed command line options -penable-stack,
5062         * (_process_pragma): emit stack symbol only when stack pragma is
5063         processed,
5064         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5065         redirected to FSR0L/FSR0H pair,
5066         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5067         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5068         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5069         for immediates,
5070         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5071         * (dumpPicOptype): NEW,
5072         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5073         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5074         with movff instruction,
5075         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5076         added pic16_int_regs, some packRegsFor* functions are commented out,
5077         because produce errors,
5078         * src/pic16/NOTES: minor modifications
5079
5080 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5081
5082         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5083         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5084         --pack-iram.
5085         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5086         * as/mcs51/lkaomf51.c: fixed bug #895763
5087
5088 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5089
5090         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5091
5092 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5093
5094         * doc/sdccman.lyx: added details about the HC08 storage classes and
5095         interrupts, fixed the register usage info for z80 & gbz80
5096
5097 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5098
5099         * doc/sdccman.lyx: added more pic16 port documentation
5100         * device/include/pic16/: added header pic18fregs.h
5101
5102 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5103
5104         * doc/sdccman.lyx: added Vangelis' contribution
5105
5106 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5107
5108         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5109         extend to the next CALL or PCALL, not just to the next CALL.
5110
5111 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5112
5113         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5114
5115 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5116
5117         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5118         bug #895752 and a better fix for bug #716790
5119
5120 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5121
5122         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5123
5124 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5125
5126         * doc/sdccman.lyx: minor changes, minor changed
5127
5128 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5129
5130         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5131         which can't handle SDCC_NEWONEBYTEOPS,
5132         (geniCodeMultiply): removed conversion from mult to shift for pic14
5133         and pic16
5134
5135 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/hc08/gen.h,
5138         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5139         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5140         thus fixing bug #895406
5141
5142 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5143
5144         * device/lib/_modsint.c,
5145         * device/lib/_modslong.c: sign follows divisor only
5146         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5147         signs or signedness can be ignored
5148         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5149         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5150         added optimization for IFX,
5151         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5152         arguments;
5153         reenabled optimization for IFX, which was removed on 2004-01-11
5154         * src/SDCCast.h: added return type IFX
5155         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5156         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5157         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5158         SDCC_OLDONEBYTEOPS selects the old behaviour
5159         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5160         changed again and commented promotion rule
5161         * src/SDCCval.c (valDiv): promotion no longer necessary
5162         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5163         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5164         rewritten
5165         * support/regression/tests/onebyte.c: added
5166
5167 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5168
5169         * gen.c (genInline): reverted to old code for assemnling inline
5170         code because of bug reported James Chadd
5171
5172 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5173
5174         * ralloc.h: missing declarations from previous patch,
5175         seems that patch for ralloc.h was never applied, fixed
5176
5177 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5178            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5179
5180         * pcode.c,
5181         * pcode.h,
5182         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5183         indirect addressing. Marked FSR0 as deprecated
5184         * gen.c (pointerCode): commented out, not needed now
5185         (pic16_popGet2p): new MOVFF helper function
5186         (genGenPointerGet),
5187         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5188         (shiftRLong): removed duplicate debugging info
5189
5190 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5191
5192         * src/ds390/gen.c (genNearPointerGet),
5193         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5194         optimization with bits, but not bitfields.
5195         * src/ds390/ralloc.c (packRegisters),
5196         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5197
5198 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5199
5200         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5201
5202 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5203
5204         * src/SDCCsymt.h,
5205         * src/SDCCicode.c (operandFromSymbol),
5206         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5207         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5208         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5209         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5210         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5211         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5212         bug #892038
5213         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5214         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5215         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5216         * src/SDCCsymt.c (newSymbol),
5217         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5218         enumerator_list),
5219         * src/SDCCval.h,
5220         * src/SDCCval.c (newiList): fixed bug #885705
5221
5222 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5223
5224         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5225         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5226
5227 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5228
5229         * device/include/c8051f120.h,
5230         * device/include/c8051f300.h,
5231         * device/include/c8051f310.h: added/updated header files for Silicon
5232         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5233         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5234         in new section Submitting patches
5235
5236 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5237
5238         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5239         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5240         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5241         genGenPointerSet),
5242         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5243         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5244         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5245         genGenPointerSet),
5246         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5247         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5248         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5249         genGenPointerSet),
5250         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5251         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5252         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5253         genGenPointerSet): fixed bug #892400
5254         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5255         to eliminate build warnings.
5256         * src/SDCCast.c (processParms),
5257         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5258         fixed bug 751859
5259         * support/valdiag/valdiag.py: added GCC to the list of defines active
5260         when compiling with gcc
5261
5262 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5263
5264         * support/Util/SDCCerr.h,
5265         * support/Util/SDCCerr.c,
5266         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5267         with an incomplete type (fixed bug #883734)
5268         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5269
5270 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5271
5272         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5273
5274 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * src/SDCCast.c (decorateType),
5277         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5278         function pointer implementation
5279         * support/regression/tests/funptrs.c: added tests to verify both forms
5280         of function pointers work correctly. Added tests to verify parameters
5281         are passed in the correct order.
5282
5283 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5284
5285         * device.c (regCompare): registers are sorted by ascending
5286         address and increasing size,
5287         * main.c (_pic16_finaliseOptions): removed the declaration
5288         of compiler macro MCU. Now a macro of the format pic18fxxxx
5289         will be defined from the command line
5290
5291 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5292             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5293
5294         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5295         PCOP_RLCF was overwritten!
5296         * gen.c (genSkip): commented out calls to pic16_emitcode,
5297         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5298         * (genlshTwo),
5299         * (genRRC): added debugging info,
5300         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5301         overwritten while shifting,
5302         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5303         overwritten while shifting,
5304         * (AccLsh),
5305         * (AccRsh),
5306         * (shiftLLeftOrResult),
5307         * (shiftRLeftOrResult),
5308         * (shiftRLong),
5309         * (shiftLLong): Implemented with pic16_emitpcode
5310         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5311         * (genLeftShift): Fixed bug, operand for shift by variable always
5312         was "and"ed with 0x0f,
5313         * (genLeftShiftLiteral),
5314         * (genrshTwo),
5315         * (genRightShiftLiteral): added debugging info,
5316         * (genrshFour): added comment,
5317         * (genRightShift): determined signedness from operand "left"
5318         instead of "result"
5319
5320 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/SDCCicode.c (geniCodeParms),
5323         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5324         function pointers, fixed function pointer bugs #861242 and #861896
5325
5326 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5327
5328         * device/include/c8051f000.h,
5329         * device/include/c8051f120.h,
5330         * device/include/c8051f300.h: added header files for Silicon
5331         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5332
5333 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5334
5335         * src/SDCCast.c (processParams): added new type flow and restructured
5336         (gatherAutoInit): added new type flow
5337         (addCast): cosmetic changes
5338         (getLeftResultType): added new type flow for array indices, patch
5339         provided by Stas, see FR #877103
5340         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5341         array index patch by Stas
5342         * src/SDCCast.h: added prototype getResultTypeFromType()
5343         * src/SDCCval.h,
5344         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5345         * src/pic/glue.c (pic14emitStaticSeg),
5346         * src/pic16/glue.c (pic16emitStaticSeg),
5347         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5348         for initialization of symbols
5349         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5350         * support/Util/SDCCerr.h:
5351         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5352         * .version: bumped version number to 2.3.8
5353         * device/include/Makefile.in (install),
5354         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5355         avoid warnings
5356
5357 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5358
5359         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5360         Slade Rich fixed an optimization bug
5361         * src/pic/pcodepeep.c,
5362         * src/pic/pcoderegs.c
5363         * doc/Makefile (install): added test for directory
5364
5365 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5366
5367         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5368         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5369         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5370         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5371         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5372         * as/mcs51/asexpr.c (term),
5373         * as/hc08/asexpr.c (term): fixed bug #887146
5374
5375 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * src/z80/gen.c (genMult): handle single byte result product
5378         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5379         DUMMY_READ_VOLATILE (fixed bug #886367)
5380
5381 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5382
5383         * support/regression/tests/libmullong.c: fixed logic, on little endian
5384         hosts we ended without a mullong_wrapper()
5385
5386 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5387
5388         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5389         virus/worm forged address usage.
5390
5391 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5392
5393         Fixed promotion, it should be done on AST level:
5394         * src/SDCCast.c (addCast): added promotion to int
5395         (decorateType): updated call to upCast()
5396         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5397         usualUnaryConversions()
5398
5399 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5400
5401         * support/regression/tests/literalop.c (mulWrapper): Added a
5402         wrapper to remove integer overflow warnings.
5403
5404         * support/regression/tests/float_trans.c: Made work on host.
5405
5406         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5407         location of sz80.
5408
5409         * support/regression/generate-cases.py (main): Changed from inline
5410         to a main method.
5411
5412         * doc/Makefile (install): Changed to depth first to get rid of
5413         missing directory install warning.
5414
5415         * as/Makefile (install-doc): Made work on Mac.
5416
5417 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5418
5419         * src/SDCCast.c: added an additional type flow in decorateType() of
5420         opposite direction, see feature request #860006; it's enabled at runtime
5421         by setting the environment variable SDCC_NEWTYPEFLOW
5422         * src/SDCCast.h: changed prototype of decorateType()
5423         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5424         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5425         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5426         see feature request #877103
5427         * src/SDCCval.c: updated call of decorateType()
5428         (valBitwise): fixed bug #882876
5429         (valMinus): added promotion
5430         (valLogicAndOr): result is unsigned
5431         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5432         * src/SDCCsymt.c (computeType),
5433         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5434         must not cause an unsigned operation
5435         * src/pic/glue (pic14emitRegularMap),
5436         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5437
5438 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5439
5440         * src/pic/pcode.c (PCodeID): commented out left over debug code
5441
5442 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5443
5444         * support/valdiag/tests/overflow.c: added shift tests
5445         * src/pic/device.c,
5446         * src/pic/gen.c,
5447         * src/pic/gen.h,
5448         * src/pic/glue.c,
5449         * src/pic/main.c,
5450         * src/pic/pcode.c,
5451         * src/pic/pcode.h,
5452         * src/pic/pcodepeep.c,
5453         * src/pic/pcoderegs.c,
5454         * src/pic/ralloc.c,
5455         * src/pic/ralloc.h: applied patch from Slade Rich;
5456         added support for multiple code pages and multiple RAM banks on the
5457         PIC 14 port. The ASM files now no longer simply assume all the
5458         code / RAM are in the same page / bank. This means the linker can
5459         safely allocate code/RAM of separate ASM files to different pages/banks.
5460         * doc/sdccman.lyx: added Slade's tips
5461         * src/mcs51/peeph.def: fixed bug #880768
5462
5463 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5464
5465         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5466         * src/SDCCast.c (decorateType): fixed bug #880197
5467
5468 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5469
5470         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5471         getopt.h.
5472
5473         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5474         strtof is not part of C89 and isn't included with Mac OS X.
5475
5476 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5477
5478         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5479         shiftL2Left2Result): fixed bug #879326
5480         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5481         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5482         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5483         address fetch for clr instruction
5484         * device/lib/hc08/_mulint.c: created optimized assembly version
5485         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5486
5487 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5488
5489         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5490         proposed in FR #877103
5491
5492 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5493
5494         * src/SDCCval.c (cheapestVal): added missing checks
5495         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5496         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5497
5498 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5499
5500         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5501         equal operands
5502
5503 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5504
5505         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5506         loaded with the linker search paths (-L arguments) and the libraries
5507         to be linked with the current source (-l arguments). Changes
5508         currently will affect only the pic16 port.
5509         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5510         include path the port specific paths and port specific libraries,
5511         * gplink command now contains the $3 argument,
5512         * src/pic16/device.h,
5513         * src/pic16/device.c,: structure PIC_device is made public and
5514         renamed to PIC16_device, the same for variable Pics which is renamed
5515         to Pics16. Updated all references to them.
5516         * src/pic16/glue.c (pic16glue): corrected bug with code
5517         initialization which bypassed the variable initializations block.
5518
5519         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5520         COMPILE_FLAGS and added the --nostdinc option
5521
5522 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5523
5524         * device/include/mc68hc908jb8.h: Register defs for another member
5525         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5526
5527 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5528
5529         Documenting changes from previous commits.
5530         * configure.in (version 1.56),
5531         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5532         when generating output files to configure the pic16 library,
5533         but now I've commented it out, since gputils aren't installed in the
5534         SF compile farm, so library won't compile
5535
5536         * device/lib/Makefile.in (version 1.56): initially I've added in
5537         target 'all' the prerequestive 'model-pic16' so it compiled the
5538         pic16 library, but now I've commented it out for the same reasons
5539         above,
5540         * added targets 'model-pic16' and 'objects-pic16' to compile the
5541         library
5542         * added target 'port-specific-objects-pic16' to handle the
5543         generated libraries and copy them into the build/ directory
5544         * added target 'clean-intermediate-pic16' to clean intermediate
5545         files into pic16 directory
5546         * in target 'installdirs' added line to create directory pic16 in
5547         the installation path
5548
5549         * device/include/Makefile.in (version 1.11): in target 'install'
5550         added lines to copy all header files to installation path,
5551         * in target 'installdirs' added line create directory for pic16
5552         headers in the installation path
5553
5554 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5555
5556         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5557          a function call
5558
5559 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5560
5561         * configure,
5562         * device/lib/configure.in,
5563         * device/lib/configure: fixed for autoconf 2.57
5564
5565 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5566
5567         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5568         option so that it actually works. Made it specific to the z80, since
5569         the gbz80 doesn't have these kinds of I/O ports.
5570
5571 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5572
5573         * device/include/z180.h,
5574         * device/lib/_memcpy.c,
5575         * device/lib/_memmove.c,
5576         * device/lib/_mulint.c,
5577         * device/lib/ser_ir.c,
5578         * device/lib/ser_ir_cts_rts.c,
5579         * device/lib/_strcmp.c,
5580         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5581         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5582         portmode; added deprecation warning for bank= and protmode= forms.
5583         Also, guard against buffer overflow.
5584         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5585
5586 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5589         changed interrupt vector table generation to only emit declared vectors.
5590         * device/include/Makefile.in: added missing backslash
5591         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5592
5593 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5594
5595         Mainly changes to support compilation of the device libraries
5596         * src/pic16/device.c: stack is allocated via symbol and not
5597         via literal number. The symbol is placed in the corresponding
5598         position of the data ram
5599         * (pic16_dump_section): relocatable and absolute uninitialized
5600         data are now emitted in sorted order to reduce section naming,
5601         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5602         weren't marked as being in the access bank,
5603
5604 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5605
5606         Added portion of GNU PIC Library under the directory
5607         device/include/pic16 and device/lib/pic16. These files
5608         contain the declarations of SFRs for the PIC18Fxx2 devices.
5609         The directory is initialized via configure from toplevel.
5610
5611 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5612
5613         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5614         the spilllocations to be compared correctly
5615
5616 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5617
5618         * src/SDCCast.c (decorateType): fixed bug introduced today
5619
5620 2004-01-12  Borut Razem <borut.razem AT siol.net>
5621
5622         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5623         doc/sdccman.lyx: upper case pragmas are deprecated
5624
5625 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5626
5627         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5628         in simpler and even better code
5629
5630 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5631
5632         * src/SDCCicode.c (operandOperation): fixed bug #874819
5633         * src/SDCCast.c (decorateType): fixed
5634         char foo (unsigned long ul) { return ul > 0; }
5635
5636 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5637
5638         * doc/sdccman.lyx: Moved and added some sections, small changes
5639         all over. Telling LaTeX to be less strict with word spacing
5640         to better keep the right margin. Changed some notes about
5641         maintainance of the ports in section 3.2.1 - is it OK like this?
5642
5643 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5644
5645         SDCC source changes:
5646         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5647         convilong): modified to inform the pic16 port that builtin functions
5648         are external
5649
5650         PIC16 PORT specific changes:
5651         * src/pic16/device.c pic16_dump_equates() added,
5652         processor registers declared internally by the port are emitted in
5653         the translation as equates,
5654         * src/pic16/gen.c: inline code is passed unprocessed to the
5655         translation,
5656         * (pic16_popGetLit2): fnuction modified to take second operand as
5657         pCodeOp pointer and not as literal,
5658         * (popRegFromIdx): prefixed with pic16_,
5659         * (pic16_popCombine2): modified to receive already allocated pCode
5660         operands,
5661         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5662         * (genFunction): initializes local stack frame and pushes on stack
5663         all the registers used by this function,
5664         * (genEndFunction): restores all registers from stack and restores
5665         stack frame,
5666         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5667         improvements,
5668         * (pic16glue): changed the program startup sequence,
5669         * added new dbName code 'A' for functions placed in absolute section
5670         * src/pic16/main.c: added function attribute _naked,
5671         * added pragma 'code' to place a fnuction at an absolute address,
5672         * added command line arguments --debug-ralloc and --pcode-verbose,
5673         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5674         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5675         * (pic16_newpCodeOpLit2): modified to take the second operand as
5676         pCodeOp pointer,
5677         * (pic16_printpBlock): modified to emit each function in a separate
5678         section,
5679         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5680         UPPER for immediate operands,
5681         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5682         instruction,
5683         * src/pic16/peeph.def: all peepholes with movff are commented out,
5684         because there is a problem in the pcode peep optimizer,
5685         * src/pic16/ralloc.c: the register allocator can now reuse local
5686         function symbols for another function. This saves register usage.
5687         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5688
5689         Added file src/pic16/NOTES with information about program writing on
5690         the current port version.
5691
5692 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5693
5694         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5695         and peephole 252 (array access)
5696
5697 2004-01-09  Borut Razem <borut.razem AT siol.net>
5698
5699         * src/SDCCmain.c : fixed #872250: -l command line defined library
5700           files are scanned before standard library files
5701
5702 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5703
5704         * src/SDCCast.c (decorateType): fixed bug #874046
5705
5706 2004-01-09  Borut Razem <borut.razem AT siol.net>
5707
5708         * support/scripts/sdcc.nsi: remove previous installation
5709
5710 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5711
5712         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5713         bytes for last interrupt vector (mcs51)
5714         * sdcc.spec: fixed typo
5715
5716 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5717
5718         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5719         gen51Code): more efficient parameter receive for --model-large
5720         ("bug" #845294)
5721
5722 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5723
5724         * src/ds390/main.c,
5725         * src/z80/main.c: added missed needLinkerScript flags (more than
5726         one port structure defined in these file)
5727         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5728         bug #795325
5729
5730 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5731
5732         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5733         * src/port.h: added flag needLinkerScript in port->linker
5734         structure to inform whether to create a .lnk file or not,
5735         * src/avr/main.c,
5736         * src/ds390/main.c,
5737         * src/hc08/main.c,
5738         * src/mcs51/main.c,
5739         * src/pic/main.c,
5740         * src/pic16/main.c,
5741         * src/xa51/main.c,
5742         * src/z80/main.c: changed appropriately to configure
5743         needLinkerScript flag
5744         * src/pic/gen.c,
5745         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5746         * src/pic/glue.c: added variable udata_section_name to
5747         override default uninitialized data segment definition for
5748         devices only with SHAREBANK memory (reported from Erik Epetrich)
5749         * (pic14emitOverlay): modified to emit a commented overlay segment
5750         directive when no overlay data exist
5751         * (picglue): modified to emit uninitialized data segment
5752         according to udata_section_name
5753         * src/pic/main.c (_pic14_parseOptions): added command line
5754         options --udata-section-name=[name] to override default
5755         udata definition name
5756         * modified _linkCmd and _asmCmd to include compiler passed
5757         arguments via -W option
5758         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5759         object file from '.rel' to '.o' in port->linker structure,
5760         changed size of fptr from 2 to 3 in port structure
5761
5762 2004-01-07  Borut Razem <borut.razem AT siol.net>
5763
5764         * support/scripts/sdcc.nsi: update PATH
5765         * support/scripts/sdcc.ico: craeted
5766
5767 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5768
5769         * device/include/Makefile.in: fix install
5770         * doc/Makefile: fix install
5771
5772 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5773
5774         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5775         in bug #860505
5776         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5777         how the function variable allocation summary is displayed; also
5778         include information about variables allocated to the overlay
5779         segment
5780
5781 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5782
5783         * as/mcs51/lkmain.c: Help about -Y option
5784         * as/mcs51/lkarea.c: Fixed gcc warnings
5785
5786 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5787
5788         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5789         fixed warning
5790         * support/valdiag/tests/overflow.c: added
5791         * src/SDCCast.c (decorateType),
5792         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5793         LEFT_OP (left shift)
5794
5795 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5796
5797         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5798         (default behaviour).
5799
5800 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5801
5802         A python script to validate compiler diagnostic messages. It can be
5803         used to verify that sdcc complains about bad c source code and
5804         gives a good location of the error.
5805         * support/valdiag/Makefile,
5806         * support/valdiag/valdiag.py,
5807         * support/valdiag/tests/*
5808
5809 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5812         * src/SDCCsymt.c (newEnumType),
5813         * src/SDCCsymt.h
5814         * support/Util/SDCCerr.c,
5815         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5816         enum related bugs.
5817         * support/regression/tests/enum.c: added test for enum values that
5818         require at least 2 bytes of storage.
5819
5820 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5821
5822         * src/common.h: added ifndef/define/endif macros
5823         around the header file.
5824         Bug reported from Jesus Calvino-Fraga
5825
5826 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5827
5828         * sdcc.spec: updated
5829         * device/include/Makefile.in: don't install CVS directories
5830         * device/lib/Makefile.in: added removal of CVS directories after install
5831         * doc/Makefile: fixed install, added local_icons
5832         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5833         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5834         * src/ds390/gen.c (genRightShift): fixed bug #870788
5835         * src/SDCCast.c (decorateType): fixed bug #870781
5836
5837 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5838
5839         PIC16 port related changes:
5840         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5841         added variable stackPos,
5842
5843         * gen.c: genCall, assignResultValue: added support for
5844         pushing/retrieving function parameters to/from stack,
5845         genFunction,genEndFunction: setup stack frame for the
5846         generated function,
5847         genAddrOf: will be changed according to bug 863624
5848
5849         * added files genutils.c and genutils.h which contain gen*
5850         debugged and optimised functions extracted from gen.c
5851
5852         * glue.c: added variable 'externs' which holds extern symbols,
5853         pic16emitRegularMap: is modified to properly handle relocatable
5854          symbols under the new scheme,
5855         pic16createInterruptVect: is modified
5856         pic16printPublics: is modified to emit 'global' assembler directives,
5857         added pic16_printExterns to print extern symbols,
5858         pic16glue: initializes stack/frame pointer in the beginning of
5859         the assembly output. Temporary hack, will be corrected later,
5860         because gplink yet does not support stack and SDCC does not
5861         yet support a type of crt0.o object to create the final binary.
5862
5863         * Removed many lines that contain 8051 legacy code.
5864         * The code is finally placed under a 'code' directive.
5865         * Added port specific options.
5866
5867         * _process_pragma: simplified since now we do not need *special*
5868         include file to define SFR registers. But a separate header
5869         will be needed. This will be developed later.
5870         * _pic16_parseOptions: added, parses port specific options:
5871         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5872         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5873         --preplace-udata-with=
5874
5875         * _pic16_setDefaultOptions: modified to initialize section names,
5876         but hack is temporarly out of order since it needs improvement.
5877         * _pic16_genAssemblerPreamble: configuration words are emitted by
5878         their address instead of their name. This part is incomplete and
5879         supports only the 18Fxx2 devices. Other devices will emit an error
5880         during assembly since they do not contain the same set of config
5881         registers
5882         * _pic16_genIVT: is modified,
5883
5884         * pcode.c: added definitions for some hardware registers that are needed
5885         for stack support
5886         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5887         All PCI entries are updated. Now LFSR is supported.
5888         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5889         * added pic16_newpCodeOpLit2 to support instructions with
5890         two literal arguments
5891         * pic16_pCode2str: corrected code that emits assembler instructions
5892         with two literal operands and those that have an access bit modifier
5893         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5894         this fixes a bug which caused some labels to be lost, when an
5895         assembler directive was added, i.e. banksel,
5896         * pic16_FixRegisterBanking: improved logic that causes the insertion
5897         of bank switching,
5898         * InlineFunction: functions that are called once, are not any more
5899         inlined. This can be a port option in the future,
5900
5901         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5902
5903         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5904         hold the corresponding uninitialized symbols,
5905         * pic16_allocProcessorRegister: registers have explicit marked the
5906         accessBank field,
5907         * pic16_allocInternalRegister: registers are explicit marked as
5908         not used,
5909         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5910         processing list, so bit registers were lost,
5911         *
5912
5913         * ralloc.h: added field 'accessBank' and original symbol operand
5914         in register definition,
5915         * removed the field isMapped from register definition,
5916
5917         ** Several functions have been removed from various sources:
5918         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5919         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5920         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5921         pic16_assignRelocatableRegisters
5922
5923         ** others have been introduced:
5924         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5925         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5926
5927 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5928
5929         * support/scripts/inc2h.pl: changed definition of BIT_AT
5930         to emit 'sbit at' instead of 'bit at'. This was a request.
5931
5932         PIC16 port related preliminary changes:
5933         * gen.c: prefixed function popRegFromString with
5934         pic16_ and all references to it corrected
5935         * pcode.c: all pic16_pc_* hardware registers prefixed
5936         with underscore (_),
5937         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5938         * ralloc.c: newReg(): when register is REG_SFR then
5939         set address to rIdx,
5940         pic16_allocProcessorRegister(): marks register wasUsed=0
5941         pic16_writeUsedRegs(): added a call to assign processor
5942         registers via pic16_assignFixedRegisters
5943
5944 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5945
5946         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5947         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5948         variables in unused register banks.  Also the SSEG is placed
5949         wherever there is enough space for it, and IDATA can be anywhere
5950         in internal RAM.  For now compile using -Wl-Y[stack_size].
5951         The mem file is different for this option as well, since it
5952         makes no sense of talking about DSEG lenght.
5953
5954 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5955
5956         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5957         in certain cases, e.g. when ROM assignment, patch provided
5958         from Albert den Haan.
5959
5960 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5961
5962         Many signedness and type propagation fixes:
5963         * src/SDCCicode.c: made geniCodeCast() static
5964         replaced SPEC_ by IS_ (cosmetic)
5965         (operandOperation): fixed div and mod operation
5966         (usualBinaryConversions): added support for promotion of char
5967         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5968         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5969         (geniCodeAdd): an array index will stay unsigned, even if promoted
5970         from char to int
5971         (geniCodeArray): ditto
5972         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5973         * src/SDCCsymt.c (computeType): added more support for char;
5974         promotion of char is selectable by promoteCharToInt, fixed signedness
5975         for all cases
5976         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5977         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5978         * src/SDCCval (val*): replaced signedness calculation by
5979         computeType()
5980         rearranged if-branches (cosmetic)
5981         (valShift): added warning W_SHIFT_CHANGED
5982         (valCompare): fixed problem with different types
5983         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5984         * support/regression/tests/literalop.c: added many cases
5985         * support/regression/tests/ast_constant_folding.c: changed finally to
5986         'unsigned int'
5987         * .version: new year, new version: 2.3.7
5988         * src/SDCCmain.c (main): applied patch #866468
5989         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5990         provided by Scott Bronson
5991         * doc/sdccman.lyx: updated documentation for sdcdb
5992         updated and added chapter tips
5993
5994 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/SDCCsymt.h: missing from yesterday's commits
5997
5998 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5999
6000         * src/SDCC.y (struct_or_union_specifier),
6001         * support/Util/SDCCerr.c,
6002         * support/Util/SDCCerr.h: verify that struct & union tags are used
6003         as declared.
6004
6005 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/SDCCglobl.h: missing from yesterday's commits
6008
6009 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6012         sft_attributes, struct_declaration, parameter_declaration,
6013         type_name, start_block, declaration_list),
6014         * src/SDCC.lex (check_type): support redefinition of typedef names
6015
6016 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6017
6018         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6019         aligned xdata arrays. Erik helped me with the if clause.
6020
6021 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6024         warning
6025
6026 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6027
6028         * src/SDCCast.h,
6029         * src/SDCCast.c (newAst_),
6030         * src/SDCCicode.h,
6031         * src/SDCCicode.c (ast2iCode, newiCode),
6032         * src/SDCCglobl.h,
6033         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6034         expr, statement, expression_statement, selection_statement,
6035         iteration_statement, expr_opt, jump_statement): foundation for tracking
6036         sequence points
6037         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6038         point code too)
6039
6040 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6041
6042         * support/Util/SDCCerr.c,
6043         * src/SDCCast.h,
6044         * src/SDCCast.c (createCase, createDefault, decorateType),
6045         * src/SDCClabel.c (labelUnreach),
6046         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6047         to error messages.
6048         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6049         (with thanks to Stas Sergeev)
6050         * device/include/time.h,
6051         * device/lib/time.c (CheckTime): suppress unreachable code warning
6052
6053 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6054
6055         * src/SDCCast.c (createIvalCharPtr),
6056         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6057         bug #753752)
6058         * support/regression/tests/nullstring.c: tests for these two bugs
6059
6060 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6061
6062         * support/Util/SDCCerr.h,
6063         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6064         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6065         about storage class and 'at' used inside struct or union
6066         * src/SDCCBBlock.c (iCodeFromeBBlock),
6067         * src/SDCCcse.c (ifxOptimize),
6068         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6069         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6070         printIval, emitStaticSeg, emitOverlay),
6071         * src/SDCClabel.c (deleteIfx),
6072         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6073         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6074         gatherAutoInit, processParms),
6075         * support/Util/SDCCerr.h,
6076         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6077         reporting for post-parse errors.
6078
6079 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6080
6081         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6082         implicit casts via union; they don't work on big endian systems
6083         (possible fix for bug #861138)
6084
6085 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6086
6087         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6088         * src/mcs51/main.c: fixed the fix for bug #737001
6089
6090 2003-12-15  Borut Razem <borut.razem AT siol.net>
6091
6092         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6093
6094 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6095
6096         * support/makebin/makebin.c: put output in binary mode
6097
6098 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6099
6100         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6101         xdata and data memory on startup. Set the environment variable
6102         SDCC_NOGENRAMCLEAR to disable this.
6103         * src/mcs51/peephole.def,
6104         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6105         (allows non-interrupt and interrupt code to safely compete for a resource
6106         without the non-interrupt code having to disable interrupts)
6107
6108 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * src/SDCCicode.c (geniCodeAdd),
6111         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6112         with valFromType if type might be a pointer and host is big endian).
6113         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6114         types, not just integer types.
6115         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6116         multiply defined with mismatching "at" address.
6117
6118 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6119
6120         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6121         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6122         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6123         with embedded nulls (fixed bug #753752)
6124
6125 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6126
6127         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6128         Apparently this did not see much testing (endless loop)
6129
6130 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6133
6134 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6137         gracefully handle NULL memmap pointers
6138
6139 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6140
6141         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6142         instead of deleting the iCode when an operand is volatile
6143         * src/z80/gen.c (genDummyRead),
6144         * src/mcs51/gen.c (genDummyRead),
6145         * src/ds390/gen.c (genDummyRead),
6146         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6147         not just IC_RIGHT
6148         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6149         * src/SDCC.y: fixed bug #850420
6150
6151 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6152
6153         Applied z80 i/o port patch from Peter Townson and fixed some operators
6154         to better handle operands in A register.
6155         * device/include/z180.h
6156         * src/SDCC.y
6157         * src/SDCCglue.c
6158         * src/z80/gen.c
6159         * src/z80/gen.h
6160         * src/z80/main.c
6161         * src/z80/peeph-z80.def
6162         * src/z80/peeph.def
6163         * src/z80/z80.h
6164
6165 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6166
6167         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6168
6169 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6170
6171         * device/lib/hc08/_mullong.c: Removed extra #endif
6172
6173 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6174
6175         * sim/ucsim/hc08.src/inst.cc,
6176         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6177         carries from x to h
6178         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6179         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6180         * device/include/stdarg.h: fixed varargs for hc08
6181         * device/lib/Makefile.in,
6182         * device/lib/hc08/Makefile,
6183         * device/lib/hc08/_mulint.c,
6184         * device/lib/hc08/_mullong.c: fixed some endian problems
6185
6186 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6187
6188         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6189         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6190         * device/lib/_gptrget.c,
6191         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6192
6193 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6194
6195         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6196         * src/SDCCast.c (astErrors): fixed bug #846007
6197         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6198
6199 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/SDCCast.c (decorateType): disabled a transformation I added in
6202         revision 1.188 (access to fields of a structure at an absolute address);
6203         it breaks with bitfields, extern declarations, and gcse analysis.
6204         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6205         could be assigned through a pointer, so don't complain.
6206         * src/SDCCast.c (astErrors),
6207         * src/SDCCast.h,
6208         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6209
6210 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6211
6212         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6213         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6214         output of __config directives, since gpasm now supports them
6215         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6216         pre-processor macro, i.e. -DMCU=p18f452
6217         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6218         and modified to handle 'cast' icode similarly to '=' icode
6219         * src/pic16/device.h (typedef struct PIC_device): added field
6220         'extMIface' to indicate that chip has external memory interface
6221         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6222         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6223         18F8720
6224
6225 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6226
6227         * src/SDCC.y (pointer): fixed bug #846006
6228         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6229         * src/SDCCast.c (decorateType): fixed bug #846009
6230         * src/ds390/peeph.def,
6231         * src/ds390/gen.c (genAnd, genOr),
6232         * src/mcs51/peeph.def,
6233         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6234
6235 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6236
6237         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6238         * src/SDCCdflow.c
6239         * src/SDCCcse.c
6240         * src/SDCCcse.h
6241         * src/SDCCBBlock.h
6242         * src/SDCCBBlock.c
6243
6244 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6245
6246         fixed bug #845089
6247         * src/SDCCbitv.h,
6248         * src/SDCCbitv.c: added function to free a bitvector
6249         * src/SDCClrange.h,
6250         * src/SDCClrange.c: added function to recompute the liveranges
6251         * src/avr/ralloc.c,
6252         * src/ds390/ralloc.c,
6253         * src/hc08/ralloc.c,
6254         * src/mcs51/ralloc.c,
6255         * src/pic/ralloc.c,
6256         * src/pic16/ralloc.c,
6257         * src/xa51/ralloc.c,
6258         * src/z80/ralloc.c: recompute the liveranges after register packing
6259
6260 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6261
6262         * src/SDCCloop.c (newInduction): fixed bug #845630
6263
6264 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6265
6266         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6267         inadvertantly left behind from my 2003-11-12 change
6268
6269 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         Updated headers I neglected to commit yesterday.
6272         * src/SDCClrange.h,
6273         * src/SDCCicode.h
6274
6275 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6276
6277         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6278         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6279         * src/SDCCopt.c (eBBlockFromiCode),
6280         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6281         the creation of the key hash table from the sequencing so it can be used
6282         earlier (for some GCSE bug fixes still pending)
6283
6284 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6285
6286         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6287         * support/regression/tests/addsub.c: testing genPlus shortcut
6288
6289 2003-11-15  Borut Razem <borut.razem AT siol.net>
6290
6291         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6292
6293 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6294
6295         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6296         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6297         ordering is immaterial.
6298         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6299
6300 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6303         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6304         (SIGSEV) of bug #840381
6305         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6306         unlink new file before rename if new and old filenames are the same)
6307
6308 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6309
6310         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6311         uninitialized variables) for the mcs51. Set environment variable
6312         SDCC_GENRAMCLEAR to test.
6313         xdata initialization slightly shorter
6314
6315 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         * src/SDCCsymt.h,
6318         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6319         #838241 & 780691 (basicly the same bug)
6320         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6321         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6322
6323 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6324
6325         * src/SDCCmain.c (linkEdit): "fix" #834252
6326
6327 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6330         * src/SDCCast.h,
6331         * src/SDCC.y: fixed bug #819403
6332
6333 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6336         the reentrant attribute.
6337         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6338         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6339         simulation
6340         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6341         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6342         erroneously reduced to a literal.
6343         * src/hc08/ralloc.c (packRegisters, rematStr),
6344         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6345         some cases
6346
6347 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6348
6349         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6350         * doc/sdccman.lyx: changed from 'article' to 'book'
6351         * doc/Makefile: readded test_suite_spec and cdbfileformat
6352
6353 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         * device/include/stdlib.h: include malloc.h to comply with ANSI
6356         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6357
6358 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6359
6360         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6361         * doc/clean.mk: also remove *.out files
6362         * doc/sdccman.lyx: some additions, larger top/bottom margins
6363
6364 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6365
6366         * src/SDCC.y: fixed bug #837365
6367         * support/regression/tests/bitopcse.c
6368         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6369         a symbol (might be valop instead)
6370         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6371         * device/lib/clean.mk: added hc08 to the cleaning list
6372
6373 2003-11-04  Borut Razem <borut.razem AT siol.net>
6374
6375         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6376           made 2003-11-04
6377         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6378           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6379           malloc is declared in standard stdlib.h
6380
6381 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6382
6383         * device/lib/hc08/Makefile: need to clean .rel not .o files
6384         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6385
6386 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6387
6388         * src/port.h,
6389         * src/hc08/main.c,
6390         * src/mcs51/main.c,
6391         * src/ds390/main.c,
6392         * src/z80/main.c,
6393         * src/avr/main.c,
6394         * src/pic/main.c,
6395         * src/pic16/main.c,
6396         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6397         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6398         tests (which uses the port's oclsExpense function)
6399         * src/SDCC.y,
6400         * src/SDCCast.c,
6401         * src/SDCCicode.c,
6402         * src/hc08/gen.c,
6403         * src/ds390/gen.c,
6404         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6405
6406 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6407
6408         * src/SDCCcse.c (ifxOptimize),
6409         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6410         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6411         deleting the IFX iCode.
6412         * src/hc08/ralloc.c: reduced unneeded slocs
6413         * src/hc08/gen.c: fixed bug in asmopToBoolean
6414
6415 2003-11-04  Borut Razem <borut.razem AT siol.net>
6416
6417         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6418           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6419           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6420           transferred to configure
6421
6422 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6423
6424         Use headers defined in the C[++] standards:
6425         * sim/ucsim/gui.src/serio.src/fileio.cc
6426         * sim/ucsim/gui.src/serio.src/frontend.cc
6427         * sim/ucsim/gui.src/serio.src/main.cc
6428         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6429         * support/Util/NewAlloc.c
6430         * as/hc08/lklibr.c
6431         * as/mcs51/lklibr.c
6432         * as/z80/aslist.c
6433         * as/z80/assym.c
6434
6435 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6436
6437         * Added MSVC projects for hc08 assembler and linker:
6438         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6439         /as/hc08/link_hc08.dsp
6440
6441 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6442
6443         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6444
6445 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6448
6449 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6450
6451         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6452
6453 2003-10-31  Borut Razem <borut.razem AT siol.net>
6454
6455         * support/cpp2/cpplib.h,
6456           support/cpp2/cpplib.c,
6457           support/cpp2/cpplex.c,
6458           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6459           to switch _asm block preprocessing on / off. Default is
6460           #pragma preproc_asm +
6461
6462 2003-10-31  Borut Razem <borut.razem AT siol.net>
6463
6464         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6465           when outputting comment blocks (when executed with -C option) and
6466           _asm (SDCPP specific) blocks
6467
6468 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6469
6470         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6471
6472 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6473
6474         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6475
6476 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6477
6478         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6479         * src/SDCCast.c (decorateType): fixed bug #832664
6480
6481 2003-10-31  Borut Razem <borut.razem AT siol.net>
6482
6483         * support\cpp2\cpplex.c: fixed for SDCPP:
6484           comments(when executed with -C option) and _asm blocks
6485           were included even if they where in skipped #if block.
6486           Applied solution from GCC cpp 3.3.2
6487
6488 2003-10-31  Borut Razem <borut.razem AT siol.net>
6489
6490         * src/SDCC.lex: sdcc now understands both formats:
6491           '# <line_number> <file_name>' and
6492           '#line <line_number> <file_name>'
6493         * support/cpp2/cppmain.c: sdcpp now generates the standard
6494           '# <line_number> <file_name>' instead of former
6495           '#line <line_number> <file_name>'
6496
6497 2003-10-30  Borut Razem <borut.razem AT siol.net>
6498
6499         * support/cpp2/cpphash.h,
6500         * support/cpp2/cpplib.h
6501         * support/cpp2/cpplex.c,
6502         * support/cpp2/cppmain.c,
6503         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6504
6505 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6506
6507         Fixed a number of problems revealed by bug #827883.
6508         * src/SDCCloop.c (loopInvariants): Spill location of the
6509         result operand should be recomputed if extracted from
6510         a loop. Also, don't extract assignments of an iTemp
6511         from a literal.
6512         * src/SDCCast.c (isConformingBody): loop reversal should
6513         not occur if the control variable is involved with a
6514         relational operator.
6515
6516 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6517
6518         * .version: bumped to 2.3.6 to reflect the big improvements
6519         made by Erik and Klaus. Thanks!
6520
6521 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6522
6523         Replaced the livrange code.
6524         * src/SDCClrange.c: added new LR code
6525         * src/SDCCloop.c,
6526         * src/SDCCBBlock.h: removed remainig parts from old LR code
6527         * src/ds390/ralloc.c,
6528         * src/ds390/gen.c: minor fixes to make it work with new code
6529
6530 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6531
6532         * as/hc08/asm.h,
6533         * as/hc08/lkrloc.c,
6534         * src/hc08/gen.c,
6535         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6536         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6537         (tweaked fix for bug #818696)
6538
6539 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6540
6541         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6542
6543 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6544
6545         * src/SDCCmain.c,
6546         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6547         * src/mcs51/gen.c (gencjneshort),
6548         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6549         more efficient (per Scott Bronson's suggestion)
6550
6551 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         Extended the semantics of the critical keyword to include
6554         individual statements. See RFE #827755 and #799831
6555         * src/SDCC.y
6556         * src/SDCCicode.c
6557         * src/SDCCopt.c
6558         * src/SDCCast.c
6559         * support/Util/SDCCerr.c
6560         * support/Util/SDCCerr.h
6561         * src/mcs51/gen.c
6562         * src/ds390/gen.c
6563         * src/hc08/gen.c
6564
6565 2003-10-19  Borut Razem <borut.razem AT siol.net>
6566
6567         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6568
6569 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6570
6571         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6572         Fixed bug #818696
6573         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6574         and predecrement operand is displayed
6575
6576 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6577
6578         * src/SDCCval.c (valMinus): fixed bug #826041
6579
6580 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6581
6582         Some hc08 related updates that I missed earlier
6583         * sim/ucsim/stypes.h
6584         * support/regression/ports/hc08/spec.mk
6585
6586 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         New target "hc08" for the Motorola 68hc08 family of micros
6589
6590         * configure
6591         * configure.in
6592         * Makefile
6593         * src/hc08/*
6594         * src/SDCCmain.c
6595         * src/port.h
6596         * sim/ucsim/hc08.src/*
6597         * sim/ucsim/configure.in
6598         * src/ucsim/configure
6599         * sim/ucsim/packages_in.mk
6600         * as/hc08/*
6601         * as/Makefile
6602         * device/include/mc68hc908qy.h
6603         * device/lib/hc08/*
6604         * device/lib/Makefile.in
6605         * support/regression/ports/hc08/*
6606         * support/regression/Makefile
6607
6608 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6611         regression test
6612         * src/ds390/gen.c (genCast): fixed bug #821957
6613
6614 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6615
6616         * device/lib/logf.c: "fixed" overlay bug
6617         * support/regression/ports/host/spec.mk: added m library
6618         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6619         * support/regression/tests/float_trans: added (for Eric)
6620
6621 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6622
6623         * src/mcs51/gen.c (genCpl): fixed bug
6624         http://sf.net/mailarchive/message.php?msg_id=6263915
6625
6626 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6627
6628         * src/SDCCast.c (decorateType): added extended constant folding
6629         * src/SDCCsymt.c (computeType): cleanup
6630         * src/SDCCval.c (valShift): minor optimization
6631         * support/regression/tests/ast_constant_folding.c: added
6632
6633 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/SDCCmain.c: removed some unintended changes
6636
6637 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6638
6639         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6640         * src/z80/gen.c: fixed part of bug #817589
6641         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6642
6643 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6646         * src/SDCCcflow.c
6647         * src/SDCCcse.c
6648         * src/SDCCdflow.c
6649         * src/SDCClabel.c
6650         * src/SDCClrange.c
6651         * src/SDCCmem.c
6652         * src/SDCCopt.c
6653         * src/SDCCpeeph.c
6654         * src/SDCCset.c
6655         * src/avr/ralloc.c
6656         * src/ds390/ralloc.c
6657         * src/izt/ralloc.c
6658         * src/mcs51/ralloc.c
6659         * src/pic/ralloc.c
6660         * src/pic16/ralloc.c
6661         * src/xa51/ralloc.c
6662         * src/z80/ralloc.c
6663         * src/z80/gen.c: removed unused label "release:"
6664
6665 2003-10-06  Borut Razem <borut.razem AT siol.net>
6666
6667         * src/SDCC.lex: removed definition of unused variables
6668           save_optimize and save_options
6669
6670 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6671
6672         * clean.mk: removed '=' in "-maxdepth=1"
6673         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6674         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6675
6676 2003-10-06  Borut Razem <borut.razem AT siol.net>
6677
6678         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6679           my_unput() replaced by unput()
6680
6681 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6682
6683         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6684         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6685         type-punned pointer will break strict-aliasing rules"
6686         Old LR behaviour is again default; Klaus' LR can be choosen by
6687         defining the environment variable LRKLAUS
6688         * src/SDCCBBlock.h
6689         * src/SDCCloop.c
6690         * src/SDCClrange.c
6691         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6692         * clean.mk: fixed removal of files in bin/CVS/
6693         * device/lib/clean.mk: fixed removal of directories small and large
6694         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6695         * src/SDCCicode.c,
6696         * src/SDCCval.c: removed superflous test for pedantic
6697
6698 2003-10-05  Borut Razem <borut.razem AT siol.net>
6699
6700         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6701           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6702           message "unmatched #pragma SAVE and #pragma RESTORE"
6703
6704 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6705
6706         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6707           assembly, critical functions, atomic, nojtbound)
6708
6709 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6710
6711         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6712         * src/SDCCBBlock.h
6713         * src/SDCCloop.c
6714         * src/SDCCloop.h
6715         * src/SDCClrange.c
6716
6717 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6718
6719         * src/z80/gen.h,
6720         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6721         * src/mcs51/gen.h
6722         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6723         * src/ds390/gen.h
6724         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6725         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6726         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6727
6728 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6729
6730         * src/z80/gen.c (genRet): fixed bug #524753
6731         * src/z80/gen.c (genCast): fixed internal error on cast from
6732         pointer to long
6733         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6734         fix for bug #477835 to the z80
6735         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6736         for tracking iCodes in the peephole optimizer for z80
6737
6738 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6741         the other part of bug #814548
6742         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6743
6744 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6745
6746         * src/SDCCcse.c: fixed part of bug #814548
6747
6748 2003-09-28  Borut Razem <borut.razem AT siol.net>
6749
6750         * src/asm.c: rewrite of printILine() to use temporary file instead
6751           a pipe
6752         * src/xa51/main.c: commented out declaration of int rewinds
6753
6754 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6757
6758 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6759
6760         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6761         * src/asm.c (printILine): Fixed bug #811015
6762
6763 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6764
6765         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6766         freeing.
6767
6768 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6769
6770         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6771         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6772         to correctly handle general case of AOP_PAIRPTR
6773         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6774
6775 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6776
6777         * src/mcs51/ralloc.c (fillGaps),
6778         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6779         register positioning bug)
6780
6781 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6782
6783         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6784
6785 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6786
6787         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6788         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6789         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6790         (ralloc doesn't intentionally do this now, but perhaps later)
6791         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6792         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6793         register positioning bugs (Fixed bug #762602 and #795325)
6794         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6795         (Fixed bug #808779)
6796         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6797         lines that --i-code-in-asm generates
6798
6799 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6800
6801         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6802         trying to fclose a FILE* that was already closed.
6803
6804 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6805
6806         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6807         of const struct should be treated as if const themselves)
6808
6809 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6810
6811         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6812
6813 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6814
6815         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6816         Unix (/n) and DOS (/r/n) line terminations.
6817
6818 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6819
6820         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6821         bug #613775
6822
6823 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6824
6825         * src/mcs51/gen.c (genFunction, genEndFunction),
6826         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6827         and restore of EA so that stack offsets to parameters are
6828         correct when using both critical and reentrant/stack-auto.
6829         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6830         size (can be triggered in error if sloc is shared between
6831         different sized objects)
6832         * device/include/float.h: fixed macros to explicitly use
6833         unsigned long where needed
6834
6835 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6836
6837         Feature req. 799831: added code to allow nesting of critical functions
6838         * src/mcs51/gen.c (genFunction, genEndFunction)
6839         * src/ds390/gen.c (genFunction, genEndFunction)
6840
6841 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6842
6843         * src/SDCCsymt.c (sclsFromPtr),
6844         * src/SDCCsymt.h,
6845         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6846         support for standard C idiom of memory mapped variables; for
6847         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6848         to xdata int at 0x1234 tempvar = 1.
6849         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6850         provided by Akiya ISHIDA
6851
6852 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6853
6854         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6855         * src/SDCCval.c (constVal): added reduction from int to char
6856         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6857         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6858         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6859         to ignore the sign
6860         * support/regression/tests/shifts.c: fixed
6861
6862 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6863
6864         * src/z80/gen.c (genXor): Fixed bug #805445
6865
6866 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6867
6868         Fixed bug #621531 (const & volatile confusion in the type chain).
6869         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6870         refer to the const or volatile state of the pointer itself.
6871
6872         * src/SDCCast.c
6873         * src/SDCCglue.c
6874         * src/SDCCicode.c
6875         * src/SDCCsymt.c
6876         * src/SDCCval.c
6877         * src/SDCC.y
6878         * src/SDCCsymt.h
6879         * src/pic/gen.c
6880         * src/pic/ralloc.c
6881         * src/pic16/gen.c
6882         * src/pic16/ralloc.c
6883         * support/regression/tests/const.c
6884
6885 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6886
6887         When checking for duplicated modules, use absolute paths
6888         instead of relative paths.  Files changed:
6889
6890         * as/mcs51/lklib.c
6891         * link/z80/lklib.c
6892
6893 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6894
6895         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6896
6897 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6898
6899         * device/include/string.h: added size_t typedef, changed
6900         prototypes to use size_t, eliminated separate reentrant and
6901         non-reentrant declarations, added _memmove declaration
6902         * device/lib/_memcpy.c: changed to use size_t instead of int,
6903         changed /4 to >>2 to avoid division library call
6904         * device/lib/_memcmp.c,
6905         * device/lib/_memset.c,
6906         * device/lib/_strncat.c,
6907         * device/lib/_strncpy.c,
6908         * device/lib/_strncmp.c: changed to use size_t instead of int
6909         * device/lib/_memmove.c: new file (fixed bug #772294)
6910         * device/lib/Makefile.in: added _memmove.c
6911         * device/lib/z80/asm_strings.s: fixed bug #772290
6912         * support/regression/tests/bitfields.c: attempt to fix host assertion
6913         failure on amd64-unknown-linux2.2
6914
6915 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6916
6917         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6918         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6919         * as/z80/asmain.c (main): fixed bug #801766
6920
6921 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6922
6923         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6924         compilers
6925
6926 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6927
6928         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6929         reported in bug #800609
6930
6931 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6932
6933         * Top header beautifications in src/pic16 directory:
6934           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6935           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6936           pcoderegs.h, ralloc.c, ralloc.h
6937         * main.c: added top header and GPL license notice
6938         * pcode.c: fixed the if-conditional warning
6939
6940 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6941
6942         * device/lib/_mullong.c: replaced int by short for gcc
6943
6944 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6945
6946         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6947         and JUMPTABLE iCodes properly now (worked by accident before)
6948         * src/mcs51/gen.c (leftRightUseAcc),
6949         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6950         iCode properly now. Use getSize instead of nRegs since a & b
6951         aren't part of the nRegs tally.
6952
6953 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6954
6955         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6956         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6957           before instructions that use the _STATUS register
6958
6959 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6960
6961         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6962         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6963         fetching of the pointer
6964         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6965         copied from genNearPointerSet()
6966         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6967         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6968         If they pop r0/r1 they must be called in the opposite order than aopOp().
6969         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6970         (resp. --stack-auto), prepared for --xstack
6971
6972 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6973
6974         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6975
6976 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6977
6978         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6979         these ports have their own __sdcc_external_start()
6980
6981 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6982
6983         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6984         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6985         type for bits was changed. It resulted in bit variables becoming
6986         global, which is not permitted in PIC 14 assembly output.
6987
6988 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6989
6990         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6991
6992 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6993
6994         Z80 and MCS51 linkers complaint if a public symbol is defined
6995         in more than one library module:
6996
6997         * as/mcs51/lklib.c
6998         * link/z80/lklib.c
6999         * as/mcs51/Makefile.in
7000
7001 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7002
7003         A few small changes that speed up the peephole optimizer.
7004
7005         * src/SDCCpeeph.c
7006
7007 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7008
7009         Try to make the peephole optimizer smarter by maintaining
7010         an association between the assembly source code and the
7011         iCodes that originated them. Put this information to use
7012         with a new peephole rule condition "notVolatile" so that
7013         the rules can be aggressive yet still safe.
7014
7015         * src/SDCCpeeph.c
7016         * src/SDCCpeeph.h
7017         * src/mcs51/gen.c
7018         * src/mcs51/peeph.def
7019
7020 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7021
7022         Fixed bug #741761
7023
7024         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7025         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7026         if the left or right operand symbols have the accuse flag set.
7027
7028 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         Changed the type of the result of the ! (NOT) operator to char;
7031         previously it returned the same type as the source. This allows
7032         us to eliminate all the genFloatNot functions (all of its target
7033         implementations were very buggy) since !float can use the same
7034         code as !long now.
7035
7036         * src/SDCCicode.c (ast2iCode): ! returns char
7037         * src/mcs51/gen.c (genNot, genNotFloat),
7038         * src/ds390/gen.c (genNot, genNotFloat),
7039         * src/z80/gen.c (genNot, genNotFloat),
7040         * src/pic/gen.c (genNot, genNotFloat),
7041         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7042
7043 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7044
7045         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7046         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7047            during interrupts. Ensure WSAVE is located at a shared bank address.
7048         2. Fixed page selection in some places
7049         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7050            the registers name strings.
7051         4. Fixed "signed / unsigned compare" compiler warnings.
7052         5. The PIC port manages its own allocation of the general purpose
7053            registers, but makes no attempt to reuse them. As a result when
7054            compiling it soon runs out of general purpose registers. Some
7055            additional code was added to the files pcode.c and device.c to walk
7056            through the function call tree and rename the registers so that they
7057            get reused.
7058
7059         * src/pic/device.c
7060         * src/pic/gen.c
7061         * src/pic/glue.c
7062         * src/pic/pcode.c
7063         * src/pic/pcode.h
7064         * src/pic/ralloc.c
7065         * src/pic/ralloc.h
7066         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7067         genPlus() & genMinus() when the result is the same as left or right
7068
7069 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7070
7071         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7072
7073 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7074
7075         Made bitfield a distinct type from bit so that bitfields
7076         convert as per ANSI C and bits retain their traditional
7077         boolean style behaviour. Implemented bitfield support in
7078         the z80 port.
7079
7080         * src/SDCCsymt.h,
7081         * src/SDCCsymt.c,
7082         * src/SDCCast.c,
7083         * src/cdbFile.c,
7084         * src/mcs51/gen.c,
7085         * src/ds390/gen.c: bit v bitfield split
7086         * src/z80/gen.c: New support for bitfields
7087         * support/regression/tests/bitfields.c: reenabled z80,
7088         added more tests
7089
7090 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7091
7092         Rules 246.x, 247.x relate to bitfields, the others speed up
7093         access to xdata mapped I/O devices.
7094
7095         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7096
7097 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         Cleaned up genPackBits and genUnpackBits and added two helper
7100         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7101         for literal assignments in genPackBits (thanks to Frieder for
7102         reminding me).
7103
7104         * src/mcs51/gen.c
7105         * src/ds390/gen.c
7106
7107 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7108
7109         Fixed bug #748310 (pointer to function type mishandled when the
7110         function name is omitted). Also fixed a SIGSEGV when a function
7111         attribute (reentrant, etc) is used on a non-function or on a
7112         function but misplaced before the parameter list.
7113
7114         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7115         bug #748310
7116         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7117         * support/Util/SDCCerr.h,
7118         * support/Util/SDCCerr.c: Added func attr misuse error msg
7119
7120 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7121
7122         Fixed bug #787649 by anonymous
7123         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7124         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7125
7126 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7127
7128         Fixed numerous bitfield problems.
7129
7130         * src/SDCC.y: More bitfield related error checking
7131         * src/SDCCsymt.h,
7132         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7133         * support/Util/SDCCerr.h,
7134         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7135         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7136         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7137         * support/regression/tests/bitfields.c: tests added
7138
7139 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7140
7141         Made the constant following the "interrupt" keyword optional. If
7142         omitted, the function will not automatically be given an entry
7143         in the interrupt vector table (similar to #pragma NOIV, but
7144         less syntacticly kludgy). The interrupt number is also now
7145         range checked. Also fixed a bug in the high order bit example
7146         in the manual.
7147
7148         * src/SDCC.y
7149         * src/SDCCmem.c
7150         * src/SDCCglue.c
7151         * src/SDCCsymt.h
7152         * support/Util/SDCCerr.c
7153         * support/Util/SDCCerr.h
7154         * doc/sdccman.lyx
7155
7156 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7157
7158         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7159         * src/SDCCicode.c (operandOperation): rewritten some ops
7160         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7161         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7162         other type
7163         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7164         be re-activated by defining REDUCE_LITERALS)
7165         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7166         unsigned, but are signed by default
7167         * src/SDCCval.c (constVal): rearranged
7168         * src/SDCCval.c (valMod): preliminary fix
7169         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7170         * support/regression/literalop.c: added, work in progress
7171
7172 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         Generate warnings for useless declarations like "char data;"
7175         that don't do what new users expect.
7176
7177         * src/SDCC.y
7178         * support/Util/SDCCerr.h
7179         * support/Util/SDCCerr.c
7180
7181 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7182
7183         * src/SDCCval.c (valMult): fix overflow detection of negative int
7184
7185 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7186
7187         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7188
7189         Changes to support big endian targets:
7190
7191         * src/ports.h
7192         * src/SDCCglue.c
7193         * src/avr/main.c
7194         * src/ds390/main.c
7195         * src/izt/i186.c
7196         * src/mcs51/main.c
7197         * src/pic/main.c
7198         * src/pic16/main.c
7199         * src/xa51/main.c
7200         * src/z80/main.c
7201
7202 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7203
7204         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7205         * device/lib/time.c: fixed warning "integer overflow in expression"
7206
7207 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7208
7209         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7210         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7211         constants are unsigned; added recognition of "u" flag for unsigned
7212         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7213         * src/SDCCval.c (valDiv, valMod): fixed signdness
7214         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7215         signedness of modulo, left and right shift
7216         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7217         * support/Util/SDCCerr.h: added warning W_INT_OVL
7218         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7219         * src/SDCCast.c (ast_print): improved output of constants
7220
7221 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7222
7223         Fixed some warnings when building with MSVC:
7224
7225         * as\mcs51\asdata.c
7226         * as\z80\asdata.c
7227         * as\mcs51\asm.h
7228         * as\z80\asm.h
7229         * link\z80\aslink.h
7230         * link\z80\lkdata.c
7231         * link\z80\lkeval.c
7232         * link\z80\lkgb.c
7233         * link\z80\lkihx.c
7234         * link\z80\lks19.c
7235         * link\z80\lksym.c
7236         * support\cpp2\cpplib.c
7237         * src\ds390\gen.c
7238         * src\mcs51\gen.c
7239
7240 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7241
7242         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7243
7244 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7245
7246         * support\librarian\clean.mk: Do not remove Makefile.
7247         * support\librarian\Makefile: added.
7248
7249 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7250
7251         Added librarian to MSVC build:
7252         * all.dsp
7253         * sdcc.dsw
7254         * support\librarian\librarian.dsp
7255
7256         'configure' not needed for librarian, removed:
7257         * support\librarian\configure
7258         * support\librarian\configure.in
7259         * support\librarian\config_in.h
7260         * support\librarian\Makefile.in
7261
7262         Hopefully these ones built the librarian and the rest of sdcc properly:
7263         * Makefile
7264         * Makefile.common.in
7265
7266         Messed up 'configure', so revert to previous version:
7267         * configure
7268         * configure.in
7269
7270 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7273         there, while the mantissa of a double is "only" 53 bits wide.
7274
7275 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7276
7277         Adding sdcclib to the build.  MSVC project coming soon.
7278         Files added/changed:
7279
7280         * support\librarian\clean.mk
7281         * support\librarian\configure
7282         * support\librarian\configure.in
7283         * support\librarian\config_in.h
7284         * support\librarian\Makefile.bcc
7285         * support\librarian\Makefile.in
7286         * support\librarian\sdcclib.c
7287         * Makefile.bcc
7288         * Makefile
7289         * Makefile.common.in
7290         * configure
7291         * configure.in
7292
7293 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7294
7295         Linker now complaints if linked modules have conflicting options, for
7296         example, one compiled using --model-large and another one compiled with
7297         --model-small.  The following files were modified:
7298
7299         * as\mcs51\asdata.c
7300         * as\mcs51\aslink.h
7301         * as\mcs51\asm.h
7302         * as\mcs51\asmain.c
7303         * as\mcs51\asout.c
7304         * as\mcs51\i51pst.c
7305         * as\mcs51\lkdata.c
7306         * as\mcs51\lklibr.c
7307         * as\mcs51\lkmain.c
7308         * as\z80\asdata.c
7309         * as\z80\asm.h
7310         * as\z80\asmain.c
7311         * as\z80\asout.c
7312         * as\z80\z80pst.c
7313         * link\z80\aslink.h
7314         * link\z80\lkdata.c
7315         * link\z80\lklibr.c
7316         * link\z80\lkmain.c
7317         * src\SDCCglue.c
7318
7319 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7320
7321         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7322         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7323
7324 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         * src/z80/mappings.i: fix _mul[us][int,long] entries
7327
7328 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7329
7330         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7331
7332 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7333
7334         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7335         * support/regression/tests/bitopcse.c: added
7336         fixed warning:
7337         * src/avr/gen.c:
7338         * src/pic/gen.c:
7339         * src/pic16/gen.c:
7340         * src/z80/gen.c:
7341         * src/xa51/gen.c:
7342
7343 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7344
7345         added support for new library format to z80, gbz80 linkers:
7346         *link/z80/aslink.h
7347         *link/z80/lklex.c
7348         *link/z80/lklib.c
7349         *link/z80/lklist.c
7350
7351 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7354         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7355
7356 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7357
7358         added DUMMY_READ_VOLATILE:
7359         * src/SDCC.y:
7360         * src/avr/gen.c:
7361         * src/xa51/gen.c:
7362         * src/z80/gen.c:
7363         * src/pic/gen.c:
7364         * src/pic16/gen.c:
7365         * src/mcs51/gen.c:
7366         * src/ds390/gen.c:
7367         * src/SDCCcse.c (algebraicOpts): many improvements
7368         * src/SDCCcse.h: removed algebraicOpts()
7369         * src/SDCCicode.c (picDummyRead): added
7370
7371 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7372
7373         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7374         "Insufficient space in data memory".
7375
7376 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7377
7378         * src/mcs51/gen.c: fixed bug #771358
7379         * src/z80/gen.c: fixed bug #759087
7380
7381 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7382
7383         * src/pic16/glue.c: minor cleanup by Vangelis
7384
7385 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7386
7387         * device/include/regc515c.h: fixed #758477
7388         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7389         * device/lib/_gptrput.c: saved a few bytes
7390         * my tab spacing is 8, yours too?)
7391         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7392         * device/lib/serial.c: process RX bytes earlier than TX bytes
7393         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7394
7395 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7396
7397         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7398
7399 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7400
7401     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7402
7403 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * device/lib/Makefile.in: bad fix, reverted to 1.43
7406
7407 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * device/lib/Makefile.in: added missing z80 object files
7410
7411 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7414         pic16 progress by Vangelis:
7415         * src/SDCCglobl.h:
7416         * src/SDCCmain.c:
7417         * src/pic/Makefile:
7418         * src/pic:
7419         * pic/Makefile:
7420         * pic16/device.c:
7421         * pic16/device.h:
7422         * pic16/gen.c:
7423         * pic16/gen.h:
7424         * pic16/genarith.c:
7425         * pic16/glue.c:
7426         * pic16/main.c:
7427         * pic16/pcode.c:
7428         * pic16/pcode.h:
7429         * pic16/pcodepeep.c:
7430         * pic16/peeph.def:
7431
7432 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7433
7434     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7435
7436 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7437
7438     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7439     added gbz80 build to MSVC project.
7440     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7441     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7442     from 8051 stuff and setup so it links using a .lnk file.
7443
7444 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7445
7446     * support/librarian/sdcclib.c: sdcc librarian.
7447     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7448     with sdcclib.
7449
7450 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7451
7452     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7453
7454 2003-07-02  Borut Razem <borut.razem AT siol.net>
7455
7456         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7457         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7458         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7459         src/xa51/main.c, src/z80/main.c:
7460         virtualization of glue() function: each port has it's own glue function,
7461         which is accessed by do_glue function pointer in PORT.general structure
7462
7463 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7464
7465         * DS800C400 fun, improved ROM interface and tinibios.
7466
7467 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7468
7469         * More support for DS80C400. Now includes beginning of interface to ROM.
7470
7471 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7472
7473         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7474
7475 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7476
7477         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7478
7479 2003-06-19  Borut Razem <borut.razem AT siol.net>
7480
7481         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7482
7483 2003-06-19  Borut Razem <borut.razem AT siol.net>
7484
7485         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7486         fixed Z80 port - crt0.o: cannot open.
7487
7488 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7489
7490         * support/Util/MySystem.c (merge_command): revert bad fix
7491
7492 2003-06-18  Borut Razem <borut.razem AT siol.net>
7493
7494         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7495
7496 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7497
7498         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7499         option --use-stdout sends errors to stdout instead of stderr.
7500
7501 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7502
7503         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7504
7505 2003-06-15  Borut Razem <borut.razem AT siol.net>
7506
7507         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7508         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7509         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7510         fixed width array of pointers replaced with sets;
7511         multiple include and lib paths ared transferred to preprocessor and linker
7512         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7513         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7514         fixed width array of pointers
7515         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7516         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7517         fixupPath(), getPathDifference()
7518         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7519         fixed width array of pointers
7520
7521 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7522
7523         * src/pic16/ralloc.c: fix warnings
7524         * src/pic16/pcode.c: fix warning
7525
7526 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7527
7528          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7529         know all the details, but essentially this set of changes enable
7530         the pic16 port to generate movff instructions and generate assembler
7531         directives,
7532         * src/SDCCmain.c:
7533         * src/pic16/gen.c:
7534         * src/pic16/glue.c:
7535         * src/pic16/pcode.c:
7536         * src/pic16/device.c:
7537         * src/pic16/main.c:
7538         * src/pic16/pcode.h:
7539         * src/pic16/pcoderegs.c:
7540         * src/pic16/ralloc.c:
7541         * src/pic16/ralloc.h:
7542
7543 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7544
7545         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7546         added option --vc, so sdcc errors and warnings are compatible with
7547         Microsoft Visual Studio.
7548
7549 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7550
7551         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7552           device/lib/libfloat.lib: added atof function.
7553
7554 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7555
7556         * doc/sdccman.lyx: updated to Lyx 1.3
7557         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7558         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7559         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7560
7561 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7562
7563         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7564
7565 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7566
7567         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7568           additions to the "related tools/documentation" section
7569
7570 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7571
7572         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7573
7574 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7577         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7578
7579 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7580
7581         * doc/sdccman.lyx: fix double dash and other minor things
7582         * doc/Makefile: fix double dash
7583
7584 2003-05-28  Karl Bongers(patches from Martin Helmling)
7585         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7586           condition and ignore commands.
7587
7588 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7589
7590         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7591           is in parts still quite out of date, I did changes as far as I felt makes sense
7592           for a non-native english speaker.
7593           Please feel free to add to the manual or to correct my changes.
7594         * doc/Makefile: undid touching the date of intermediate tex files.
7595
7596 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7597
7598         * doc/sdccman.lyx: Manual has an index now
7599
7600 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7601
7602         Finalize muluint/mulsint and mululong/mulslong merging:
7603         * device/lib/_mulint.c
7604         * device/lib/_mullong.c
7605         * device/lib/gbz80/mul.s
7606         * device/lib/gbz80/stubs.s
7607         * device/lib/z80/mul.s
7608         * device/lib/z80/stubs.s
7609         * src/SDCCsymt.c (initCSupport)
7610
7611 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7612
7613         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7614         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7615           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7616           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7617           instead of /Zm500.
7618
7619 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7620
7621         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7622           the regression tests I'm not brave enough to enable 245.b, 245.c
7623         * doc/sdccman.lyx: added latex preamble for hyperref package.
7624           Using pdflatex this will give you a hyperlinked pdf file with
7625           bookmarks. (prepend '%' before /usepackage if this breaks something)
7626
7627 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7628
7629          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7630
7631 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7632
7633         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7634
7635 2003-05-21    <johan AT balder>
7636
7637         * src/SDCCglue.c (printIval): fixed bug #739934
7638
7639 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7640
7641         Applied patch from bug 737905 (renamed yylineo to mylineno):
7642         * src/altlex.c
7643         * src/SDCCast.c
7644         * src/SDCglobl.h
7645         * src/SDCC.lex
7646         * src/SDCCsymt.c
7647         * src/SDCCval.c
7648         * src/pic16/pcode.c: Cleaned warnings
7649         * src/pic16/pcodeflow.c: Cleaned warnings
7650         * src/pic16/pcoderegs.c: Cleaned warnings
7651
7652 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7653
7654         * src/pic16/pcode.c: Cleaned warnings
7655         * src/pic16/pcodepeep.c: Cleaned warnings
7656         * src/pic16/ralloc.c: Cleaned warnings
7657
7658 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7659
7660         * doc/sdccman.lyx: fixed bug 739745
7661         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7662
7663 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7664
7665         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7666         it can be defined with CFLAGS when running configure
7667         * src/SDCCmain.c: fixed compiling + linking with object files
7668
7669 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7670
7671         * configure.in: configure for pic16 port,
7672             added --disable-pic16-port
7673         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7674         * src/SDCCmain.c: linkOptions is changed to set *,
7675             added if/endif conditional macros to remove options help
7676             messages from optionsTable when a port is not configured, added
7677             support for the PIc16 port in the ports table, when executing
7678             the compiler with no port specified on command line, a default
7679             port is selected with the new macro DEFAULT_PORT which is
7680             defined in port.h, in setDefaultOptions() linkOptions is removed
7681             from initialization assignment, since now it is a set,
7682             parseCmdLine uses setParseWithComma for linkOptions, in
7683             linkEdit() linkOptions are accessed with new function indexSet()
7684             which returns the i'th item of a set variable. See SDCCset.c, in
7685             linkEdit() when calling buildCmdLine(), added linkOptions as
7686             last argument. Now users can pass arguments to gplink via the
7687             -Wl option, main() uses pic16glue() to glue up pic16 programs
7688         * src/SDCCpeeph.c: various changes to support pic16
7689         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7690             return the i'th item of the set
7691         * src/SDCCset.h: added function prototype for indexSet()
7692         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7693         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7694         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7695             added macro DEFAULT_PORT
7696         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7697         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7698             generated
7699         * src/pic16/glue.c: commented out some error producing lines
7700         * src/pic16/main.c: __config directives are commented out to stop
7701             gpasm complaining and test the linkage with gplink, _linkCmd and
7702             _asmCmd changed to be more gplink and gpasm friendly
7703         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7704             produced an error when parsed, peep rule 12 is added to utilize
7705             movff, but it is commented out since the pCode does not support
7706             yet a command with 2 address arguments
7707
7708 2003-05-18    <johan AT balder>
7709
7710         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7711         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7712 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7713
7714         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7715   Added feature to script commands from file.
7716
7717 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7718
7719         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7720         * src/SDCCutil.c: include ctype.h for win32
7721
7722 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7723
7724         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7725
7726 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7727
7728         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7729   Fixed so you can set breakpoints prior to run, run does not stop
7730   on entry now.  Add tbreak.  Other enhancements and fixes for use
7731   with ddd.
7732
7733 2003-05-12  Borut Razem <borut.razem AT siol.net>
7734
7735         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7736
7737 2003-05-11  Borut Razem <borut.razem AT siol.net>
7738
7739         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7740         the path of bin directory, so that PATH is the only env. variable, which has to be set
7741         in case of standard installation.
7742         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7743         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7744         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7745
7746 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7747
7748         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7749         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7750         temp files are in the port dir; clean the gen/test directory when
7751         generating new test.c
7752         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7753         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7754         * support/regression/tests/zeropad.c: added
7755
7756 2003-05-09    <johan AT balder>
7757
7758         * src/SDCCglue.c: fixed bug #597940
7759
7760 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7761
7762         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7763   cache sfr, optimize next,step, fix off by one sourceline,
7764   support ddd list function.
7765         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7766
7767 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * support/regression/HTMLgen.py: added compare_s2f()
7770         * support/regression/Makefile: redo 1.27
7771         * support/regression/generate-cases.py: redo 1.5
7772
7773 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7774
7775         * support/regression/tests/float.c: workaround 33 bit hex constant
7776         * support/regression/tests/simplefloat.c: fix division for host
7777
7778 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7779
7780         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7781         that tame's the PIC's over-aggressive optimizer.
7782
7783 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7784
7785          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7786          support for MSVC.
7787
7788 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7789
7790         Initial support for DS80C400. "Hello world" runs on TINIm400
7791         (with polled I/O).
7792
7793 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7794
7795          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7796          * Some notes on ddd usage added in debugger/README
7797          Martin Helmling adding more features and fixes for ddd GUI debugger.
7798          Code added for nexti, stepi, up, down, and other adjustments.
7799
7800 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7801
7802         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7803         * src/pic/peeph.def Added two rules to optimize carry manipulation
7804         * src/pic/* removed debug printfs
7805
7806 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7807
7808         * debugger/mcs51/cmd.c: added header newalloc.h
7809
7810 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7811
7812         * as/Makefile: new EXEEXT
7813         * as/z80/Makefile: remove trailing slash of BUILDIR
7814         * as/z80/clean.mk: new EXEEXT
7815         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7816         * support/cpp2/Makefile.in: new EXEEXT
7817         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7818
7819 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7820
7821         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7822         EXEEXT was introduced to fix all related problems with targets
7823         "clean", "install" and "uninstall"; a couple of further flaws
7824         especially with "clean" have been fixed too
7825         * as/mcs51/Makefile.in
7826         * as/mcs51/clean.mk
7827         * as/z80/Makefile
7828         * Makefile
7829         * clean.mk
7830         * debugger/mcs51/Makefile.in
7831         * debugger/mcs51/clean.mk
7832         * link/z80/Makefile
7833         * link/z80/Makefile.in
7834         * link/z80/clean.mk
7835         * link/Makefile
7836         * packihx/Makefile.in
7837         * packihx/clean.mk
7838         * sim/ucsim/Makefile
7839         * sim/ucsim/clean.mk
7840         * sim/ucsim/avr.src/Makefile.in
7841         * sim/ucsim/avr.src/clean.mk
7842         * sim/ucsim/s51.src/Makefile.in
7843         * sim/ucsim/s51.src/clean.mk
7844         * sim/ucsim/xa.src/Makefile.in
7845         * sim/ucsim/xa.src/clean.mk
7846         * sim/ucsim/z80.src/Makefile.in
7847         * sim/ucsim/z80.src/clean.mk
7848         * sim/ucsim/main_in.mk
7849         * sim/ucsim/packages_in.mk
7850         * sim/ucsim/gui.src/Makefile.in
7851         * sim/ucsim/gui.src/serio.src/Makefile.in
7852         * sim/ucsim/gui.src/serio.src/clean.mk
7853         * src/Makefile.in
7854         * src/clean.mk
7855         * support/cpp2/Makefile.in
7856         * support/cpp2/clean.mk
7857         * support/makebin/Makefile
7858         * support/makebin/clean.mk
7859         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7860         * doc/sdccman.lyx: --program-suffix no longer needed
7861
7862 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7863
7864          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7865          Martin Helmling added support for ddd GUI debugger.
7866          Code added to display assembly, set variables, and other commands
7867          to interface to ddd.
7868
7869 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7870
7871         * as/Makefile: fix target clean
7872         * as/clean.mk: fix target clean
7873         * as/z80/clean.mk: fix target clean
7874
7875 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * Makefile.common.in: added  AT EXEEXT AT
7878         * configure.in: removed all mingw32 stuff
7879         * configure: rebuilt from configure.in
7880         * doc/sdccman.lyx: updated section "installation"
7881         * support/scripts/sdcc_mingw32: adapted to configure
7882         * support/scripts/sdcc_cygwin_mingw32: added
7883
7884 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7885
7886         * src/pic Added object file support for the PIC port
7887         * src/pic Applied patch from Craig Franklin (this started the object file support)
7888         * src/regression Updated the PIC regression tests for object files
7889
7890 2003-04-20  Borut Razem <borut.razem AT siol.net>
7891
7892         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7893           lklex.c: In function `getfid':
7894           lklex.c:203: warning: array subscript has type `char'
7895         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7896           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7897         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7898           stack handling macros
7899
7900 2003-04-19  Borut Razem <borut.razem AT siol.net>
7901
7902         * "handling space characters in file path" task:
7903         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7904         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7905         * support/Util/MySystem.h: make it self-sufficient
7906         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7907           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7908           handling space characters in file path
7909         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7910           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7911         * support/Util/MySystem.c: handling space characters in executable's path
7912
7913 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7914
7915         * as/z80/Makefile: fix permanent rebuild of z80
7916         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7917         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7918
7919 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7920
7921         * src/SDCCopt.c: add special case optimization to replace modulo by
7922           a power of two with a bitwise AND.
7923
7924 2003-04-18    <johan AT balder>
7925
7926         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7927
7928 2003-04-17    <johan AT balder>
7929
7930         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7931         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7932
7933 2003-04-13  Borut Razem <borut.razem AT siol.net>
7934
7935         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7936         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7937           fixed mingw problem in adl_NORMALIZE_PATH
7938
7939 2003-04-12  Borut Razem <borut.razem AT siol.net>
7940
7941         * fixed "#pragma SAVE/RESTORE can not be nested":
7942         * src/SDCC.lex: reworked pragma handling functions
7943         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7944         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7945
7946 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * src/SDCCutil.c (pathEquivalent): defined but not used
7949         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7950         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7951         * configure: rebuilt from configure.in
7952         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7953         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7954         * device/include/Makefile.in: replace sdcc_datadir
7955         * device/lib/Makefile.in: replace sdcc_datadir
7956         * Makefile.common.in: add LDFLAGS from configure
7957         * packihx/Makefile.in: use LDFLAGS
7958         * src/Makefile.in: use LDFLAGS
7959         * support/cpp2/Makefile.in: add LDFLAGS from configure
7960         * support/makebin/Makefile: use LDFLAGS
7961         * .version: bumped version number to 2.3.5
7962
7963 2003-04-12  Borut Razem <borut.razem AT siol.net>
7964
7965         * completed "different paths" task:
7966         * src/SDCCmacro.c: fixed bug in handling quotes
7967         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7968         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7969
7970 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7971
7972         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7973
7974 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7975
7976         * ds390/gen.c ds390/peeph.def: fix bug 706781
7977
7978 2003-04-11  Borut Razem <borut.razem AT siol.net>
7979
7980         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7981
7982 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7983
7984         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7985         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7986          set - this bit used to not be set...).
7987         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7988           bad code in PIC Port
7989         * src/regression/and2.c added to test bug 609268
7990         * src/regression/Makefile added and2.c to regression test
7991
7992
7993 2003-04-08    <johan AT CP255758-A>
7994
7995         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7996         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7997         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7998
7999 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8000
8001         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8002         fix bug #487815
8003         * support/cpp2/Makefile.in: fix bug #487815
8004         * configure: rebuilt from configure.in
8005         * Makefile.common.in: docdir changed, new path suffixes
8006         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8007         * sdcc_vc_in.h: reflect changes from sdccconf.h
8008         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8009         * src/SDCCutil.h: remove BINDIR hack
8010         * doc/sdccman.lyx: update new path hierarchy
8011
8012 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8013
8014         * src/SDCCpeeph.c: added okToRemoveSLOC test
8015
8016 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8017
8018         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8019
8020 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8021
8022         * src/SDCCpeeph.c: added labelIsReturnOnly test
8023         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8024
8025 2003-04-05    <johan AT balder>
8026
8027         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8028         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8029         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8030         * src/SDCCast.c: fixed a warning
8031         * src/SDCCast.h: fixed a warning
8032         * src/SDCCicode.c (operandFromAst): fixed a warning
8033
8034 2003-04-04    <johan AT balder>
8035
8036         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8037         * src/SDCCast.c (decorateType): fixed bug #715076
8038         * src/SDCC.y: fixed bug #702907
8039
8040 2003-04-03    <johan AT balder>
8041
8042         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8043         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8044         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8045         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8046         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8047
8048 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8049
8050         * _decdptr.c: fix return values
8051         * _gptrget.c: fix return values
8052         * _gptrgetc.c: fix return values
8053         * _gptrput.c: fix return values
8054         * _mulint.c: fix return values
8055         * as/z80/Makefile: fix 'make -j' problem
8056
8057 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8060         * configure.in: big cleanup, updated to autoconf 2.5x
8061         * configure: rebuilt from configure.in
8062         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8063         * sdcc_vc_in.h: reflect changes from sdccconf.h
8064         * doc/Makefile: fixed a flaw in "make install"
8065
8066 2003-04-02    <johan AT balder>
8067
8068         * src/ds390/gen.c (genCmp): no comments
8069         * src/mcs51/gen.c (genCmp): no comments
8070         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8071         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8072
8073 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8074
8075         * support/regression/generate-cases.py: place generated file in given sub directory
8076         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8077         * support/regression/Makefile: improvements for 'make -j';
8078         side effect: it's simpler and faster now
8079
8080 2003-03-31  Borut Razem <borut.razem AT siol.net>
8081
8082         * src/z80/main.c: link-{port} and as-{port} defined without path
8083         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8084
8085 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8086
8087         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8088
8089 2003-03-30  Borut Razem <borut.razem AT siol.net>
8090
8091         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8092           changed type of list parameter to set
8093         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8094         * src/port.h: changed type of do_assemble() parameter to set
8095         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8096           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8097           definition of "cppoutfilename" macro with NULL value in preProcess()
8098         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8099         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8100         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8101           replaced with set *binPathSet
8102         * shash_add() deallocates the item, if allready exsists, before adding the new one
8103         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8104
8105 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8106
8107         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8108           a nested for loop bug in the PIC port
8109         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8110           for loops
8111
8112 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8113
8114         * support/Util/dbuf.h: remove C++ stuff to make it portable
8115
8116 2003-03-28  Borut Razem <borut.razem AT siol.net>
8117
8118         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8119           literal strings in stringLiteral()
8120         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8121         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8122           to the project
8123
8124 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8125
8126         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8127
8128 2003-03-26    <johan AT balder>
8129
8130         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8131         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8132         * src/SDCCast.c (decorateType): fixed " -v < 3"
8133
8134 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8135
8136         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8137         Added Lenny Story's debug infrastructure changes:
8138         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8139         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8140         * src/cdbFile.c: added
8141         * src/SDCCdebug.c: added
8142         * src/SDCCdebug.h: added
8143         * src/SDCCast.c (createFunction)
8144         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8145         * src/SDCCmain.c (parseCmdLine, main)
8146         * src/SDCCmem.c (redoStackOffsets)
8147         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8148         * src/SDCCsymt.h
8149         * src/common.h
8150         * src/avr/gen.c (genAVRCode)
8151         * src/ds390/gen.c (gen390Code)
8152         * src/mcs51/gen.c (gen51Code)
8153         * src/pic/gen.c (genpic14Code)
8154         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8155         * src/xa51/gen.c (genXA51Code)
8156         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8157
8158 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8159
8160         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8161         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8162
8163 2003-03-22    <johan AT balder>
8164
8165         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8166
8167 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8168
8169         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8170         * doc/cdbfileformat.lyx: added, written by Lenny Story
8171         * doc/Makefile: added cdbfileformat.lyx
8172         * doc/clean.mk: added cdbfileformat.lyx
8173
8174 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8175
8176         * src/mcs51/peeph.def: fix bug #705773
8177
8178 2003-03-20    <johan AT balder>
8179
8180         An sfr/sbit can have an "at #" AND an initializer
8181         * src/SDCCsymt.c (checkSClass):
8182         * src/SDCCmem.c (allocGlobal):
8183         * src/SDCCmem.c (allocLocal):
8184         * src/SDCCast.c (createBlock):
8185
8186 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8187
8188         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8189
8190 2003-03-16    <johan AT balder>
8191
8192         Undid the hackup of const and volatile, the problem is much bigger
8193         * src/SDCC.y:1.65
8194         * src/SDCCast.c:1.171
8195         * src/SDCCglue.c:1.138
8196         * src/SDCCicode.c:1.146
8197         * src/SDCCsymt.c:1.150
8198         * src/SDCCval.c:1.65
8199
8200 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8201
8202         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8203         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8204
8205 2003-03-13    <johan AT balder>
8206
8207         Hackup const and volatile modifiers in type chains a bit:
8208         * src/SDCC.y:1.63
8209         * src/SDCCast.c:1.169
8210         * src/SDCCglue.c:1.136
8211         * src/SDCCicode.c:1.143
8212         * src/SDCCsymt.c1.146
8213         * src/SDCCsymt.h1.59
8214         * src/SDCCval.c:1.63
8215
8216 2003-03-12    <johan AT balder>
8217
8218         * src/SDCCBBlock.h: more LRH debugging junk
8219         * src/SDCCcflow.h: more LRH debugging junk
8220         * src/SDCCloop.c: more LRH debugging junk
8221         * src/SDCC.y (struct_declaration): fixed bug #697590
8222         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8223         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8224         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8225
8226 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8227         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8228         test function names must now match exactly).
8229         * src/SDCCcse.c: added special case in findCheaperOp to allow
8230         extending a short integer. Makes less awful code for bug 700121 test case.
8231
8232 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8233
8234         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8235         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8236
8237 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8238
8239         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8240         actually called (operandsNotEqual() was called for all
8241         operandsNotEqualX tests).
8242
8243 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8244
8245         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8246         with shorter literals. Fixes bug 700121.
8247
8248 2003-03-11    <johan AT balder>
8249
8250         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8251
8252 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8253
8254         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8255         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8256
8257 2003-03-10  Borut Razem <borut.razem AT siol.net>
8258
8259         * src/SDCCmain.c: pipe preprocessor's output
8260         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8261         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8262         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8263         which closes all pipes in pipeSet set
8264         * src/SDCCset.c: free deleted item in function deleteSetItem()
8265         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8266         moved from z80 to src subproject
8267         * .version: increased version number to 2.3.4
8268
8269 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8270
8271         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8272         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8273         * support/regression/ports/xa51/spec.mk: fix typo
8274
8275 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8276
8277         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8278
8279 2003-03-09  Borut Razem <borut.razem AT siol.net>
8280
8281         * src/SDCCmain.c: pipe preprocessor's output
8282         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8283         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8284         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8285         which closes all pipes in pipeSet set
8286         * src/SDCCset.c: free deleted item in function deleteSetItem()
8287         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8288         moved from z80 to src subproject
8289
8290 2003-03-09  Borut Razem <borut.razem AT siol.net>
8291
8292         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8293         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8294         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8295         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8296         * src/SDCCglobl.h: unification of WIN32 native definitions
8297
8298 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8299
8300         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8301
8302 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * src/configure.in:   check for endianess (even while cross-compiling)
8305         * src/configure:      check for endianess (even while cross-compiling)
8306         * src/configure_in.h: check for endianess (even while cross-compiling)
8307         * src/avr/gen.c:        remove old endianess stuff
8308         * src/mcs51/gen.c:      remove old endianess stuff
8309         * src/ds390/gen.c:      remove old endianess stuff
8310         * src/pic/gen.c:        remove old endianess stuff
8311         * src/pic/genarith.c:   remove old endianess stuff
8312         * src/pic/glue.c:       fix endianess check
8313         * src/pic16/gen.c:      remove old endianess stuff
8314         * src/pic16/genarith.c: remove old endianess stuff
8315         * src/pic16/glue.c:     fix endianess check
8316         * src/xa51/gen.c:       remove old endianess stuff
8317         * src/z80/gen.c:        fix endianess check
8318         * src/SDCCglue.c:       fix endianess check
8319         * src/ds390/peeph.def: fix bug 700036
8320
8321 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8322
8323         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8324         * src/configure: find appropriate data-types on host for SDCC's int and long
8325         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8326         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8327         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8328
8329 2003-03-07    <johan AT balder>
8330
8331         Just a big NOOP:
8332                 some minor cleanups before the big shot
8333                 OP_DEFS and OP_USES now use Kevin's protection
8334                 new option --nolabelopt
8335
8336         * src/SDCCBBlock.c:
8337         * src/SDCCast.c,:
8338         * src/SDCCcflow.c:
8339         * src/SDCCcse.c:
8340         * src/SDCCicode.c:
8341         * src/SDCCicode.h:
8342         * src/SDCClabel.c:
8343         * src/SDCCloop.c:
8344         * src/SDCCmain.c:
8345         * src/ds390/ralloc.c:
8346         * src/mcs51/ralloc.c:
8347         * src/pic/ralloc.c:
8348         * src/xa51/ralloc.c:
8349         * src/z80/ralloc.c:
8350
8351 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * src/pic/pcode.c (get_op): fix 64 bit warnings
8354         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8355         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8356         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8357         * support/regression/tests/malloc.c: fix 64 bit warnings
8358
8359 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * src/mcs51/gen.c (genMinus): fixed bug 696436
8362
8363 2003-03-02  Borut Razem <borut.razem AT siol.net>
8364
8365         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8366
8367 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8368
8369         * configure.in: test for mkstemp
8370         * sdccconf_in.h: add HAVE_MKSTEMP
8371
8372 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8373
8374         * device/include/ctype.h: removed warning while using --stack-auto
8375         * device/include/malloc.h: removed warning while using --stack-auto
8376         * device/include/string.h: removed warning while using --stack-auto
8377
8378 2003-02-23  Borut Razem <borut.razem AT siol.net>
8379
8380         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8381         because NDEBUG is defined (see man assert)
8382         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8383
8384 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8385
8386         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8387         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8388
8389 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8390
8391         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8392         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8393
8394 2003-02-18    <johan AT balder>
8395
8396         * as/mcs51/asmain.c (asmbl): module can start with a digit
8397         * as/z80/asmain.c (asmbl): module can start with a digit
8398
8399 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8400
8401         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8402         * src/asm.c: fix pipe() for Mingw32
8403
8404 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8405
8406         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8407         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8408         make -V work again; --c1mode reads now from stdin
8409         * doc/sdccman.lyx: added --c1mode
8410         * support/Util/SDCCerr.c: new messages for c1 mode
8411         * support/Util/SDCCerr.h: new messages for c1 mode
8412         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8413
8414 2003-02-15    <johan AT balder>
8415
8416         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8417
8418 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * doc/sdccman.lyx: Environment variables, -o and other minor things
8421
8422 2003-02-14    <johan AT balder>
8423
8424         * src/xa51/main.c: before anyone really tries to use it :)
8425
8426         * Install doc's in share/sdcc/doc
8427         * removed some obsolete files
8428         * Do a proper make distclean and uninstall
8429         M Makefile.common.in
8430         R sdccbuild.sh
8431         M as/Makefile
8432         M device/include/Makefile.in
8433         M device/lib/Makefile.in
8434         M doc/sdccman.lyx
8435         M link/Makefile
8436         M sim/ucsim/doc/Makefile.in
8437         M src/clean.mk
8438         R src/avr/peeph.rul
8439         R src/xa51/peeph.rul
8440         M support/cpp2/Makefile.in
8441         M support/makebin/Makefile
8442
8443
8444 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8445
8446         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8447
8448 2003-02-10  Borut Razem <borut.razem AT siol.net>
8449
8450         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8451         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8452         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8453         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8454         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8455         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8456         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8457         src/z80/Makefile.bcc: Borland Makefile cleanup
8458         * as/z80/Makefile.bcc: Added Borland Makefile
8459         * support/cpp2/borland.h: Removed
8460
8461 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8462
8463         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8464         * src/SDCC.lex: new pragma NOIV
8465         * src/SDCCglobl.h: new pragma NOIV
8466         * src/SDCCmem.c: new pragma NOIV
8467
8468 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8471
8472 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8473
8474         * src/SDCCmain.c: signal handling is switched off by --debug
8475         * doc/Makefile: small fix for install; use clean.mk again
8476         * doc/clean.mk: clean *.pdf and *.html too
8477
8478 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8479
8480         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8481         * device/lib/printfl.c: fix a ds390 bug by making it portable
8482         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8483         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8484         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8485         * debugger/mcs51/cmd.c: converted multi-line string literals
8486         * sim/ucsim/globals.cc: converted multi-line string literals
8487         * src/SDCCmain.c: introduced signal handler to remove temp files
8488         * doc/Makefile: small tweaks, implement clean
8489         * doc: removed generated files
8490
8491 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8492
8493         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8494         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8495         Address Record is not correctly generated for DS390."
8496
8497 2003-02-02  Borut Razem <borut.razem AT siol.net>
8498
8499         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8500         * as/mcs51/asm.h: fixed compilation with Borland C
8501         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8502         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8503         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8504         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8505         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8506         src/z80/Makefile.bcc: delete $(LIB) only if exist
8507         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8508
8509 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8510
8511         * device/include/malloc.h: introduced NULL
8512         * device/include/string.h: introduced NULL
8513         * device/include/stdlib.h: introduced NULL
8514         * device/lib/_memcpy.c: removed NULL
8515         * device/lib/_strcat.c: removed NULL
8516         * device/lib/_strchr.c: removed NULL
8517         * device/lib/_strcmp.c: removed NULL
8518         * device/lib/_strcpy.c: removed NULL
8519         * device/lib/_strcspn.c: removed NULL
8520         * device/lib/_strlen.c: removed NULL
8521         * device/lib/_strncat.c: removed NULL
8522         * device/lib/_strncmp.c: removed NULL
8523         * device/lib/_strncpy.c: removed NULL
8524         * device/lib/_strpbrk.c: removed NULL
8525         * device/lib/_strrchr.c: removed NULL
8526         * device/lib/_strspn.c: removed NULL
8527         * device/lib/_strstr.c: removed NULL
8528         * device/lib/_strtok.c: removed NULL
8529         * device/lib/malloc.c: removed NULL, include own header
8530
8531 2003-02-02    <johan AT balder>
8532
8533         * 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
8534         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8535         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8536         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8537         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8538         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8539
8540 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8541
8542         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8543         area 'DATA'"
8544
8545 2003-02-01    <johan AT balder>
8546
8547         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8548
8549 2003-01-31    <johan AT CP255758-A>
8550
8551         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8552
8553 2003-01-30    <johan AT balder>
8554
8555         * src/SDCCBBlock.c: automatic bug detection
8556         * src/SDCCicode.c: automatic bug detection
8557
8558 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8559
8560         * src/SDCCglobl.h:   now --xram-size 0 works
8561         * src/SDCCmain.c:    now --xram-size 0 works
8562
8563 2003-01-29    <johan AT balder>
8564
8565         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8566
8567 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8568
8569         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8570         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8571         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8572         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8573         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8574         * src/SDCCmain.c:    Added options --xram-size and --code-size
8575
8576 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8579         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8580
8581 2003-01-27    <johan AT balder>
8582
8583         * src/SDCC.y: fixed bug #613764
8584
8585 2003-01-26    <johan AT balder>
8586
8587         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8588         * src/SDCCsymt.h: fixed bug #673374
8589         * src/SDCCglue.c: fixed bug #661910
8590         * src/SDCCast.c: fixed bug #458099 and 673374
8591
8592 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8595         * as/mcs51/strcmpi.h: added
8596         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8597         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8598         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8599         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8600         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8601         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8602         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8603         * as/mcs51/Makefile.aslink: new module strcmpi
8604         * as/mcs51/Makefile.asx8051: new module strcmpi
8605         * as/mcs51/Makefil.bcc: new module strcmpi
8606         * as/mcs51/Makefile.in: new module strcmpi
8607         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8608
8609 2003-01-26    <johan AT balder>
8610
8611         * src/SDCCglue.c: reverted back to 1.124
8612         * src/SDCCast.c: reverted back to 1.156
8613         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8614
8615 2003-01-25    <johan AT balder>
8616
8617         * src/SDCCglue.c: A better fix for bug #661910
8618         * src/SDCCast.c: A better fix for bug #661910
8619         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8620
8621 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8622
8623         * src/Makefile.in: remove spawn.o
8624         * src/SDCCmain.c: remove spawn.h
8625         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8626         * src/spawn.c: removed
8627         * src/spawn.h: removed
8628         * support/regression/ports/ds390/spec.mk: link with -r
8629
8630 2003-01-24    <johan AT CP255758-A>
8631
8632         * src/ds390/gen.c (aopOp): fixed bug #667458
8633         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8634         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8635         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8636
8637 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8638
8639         * src/mcs51/peeph.def: better assembler identation by Frieder
8640         * src/mcs51/gen.c: better assembler identation by Frieder
8641
8642 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8643
8644         * as/z80/string.h: removed for gcc 3.2
8645         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8646         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8647
8648 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8649
8650         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8651         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8652         * support/regression/Makefile: separate temp files for ports
8653         * support/regression/generate-cases.py: separate temp files for ports
8654         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8655         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8656
8657 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8658
8659         * moved tinitalk to device/examples/ds390
8660
8661 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8662
8663         * as/mcs51/lkmem.c: rflag is for DS390
8664         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8665         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8666                          (linkEdit): move mem- and map-files the same way as ihx-files
8667         * src/z80/main.c (_setDefaultOptions): removed --generic
8668         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8669         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8670         * src/pic/glue.c (picglue): --c1mode works again
8671         * src/pic16/glue.c (pic16glue): --c1mode works again
8672         * src/asm.c (printCLine): fix #660034
8673
8674 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8675
8676         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8677         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8678         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8679         * as/mcs51/lkmem (summary): better fix for sp problem
8680         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8681         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8682         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8683                                               remove --stack-after-data
8684
8685 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8686
8687         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8688         * src/SDCCutil.c (join): ugly bug: missing '\0'
8689         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8690
8691 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8692
8693         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8694         * src/port.h: typo
8695         * src/pic/main.c (_asmCmd): gpasm supports -o
8696         * src/z80/main.c: more general macros
8697         * device/lib/Makefile.in: remove intermediate files
8698
8699 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8700
8701         * .version: Bumped version number to 2.3.3
8702         * src/SDCCBBlock.c: new option -o
8703         * src/SDCCglobl.h: new option -o
8704         * src/SDCCglue.c: new option -o
8705         * src/SDCCmain.c: new option -o
8706         * src/asm.c: new option -o
8707         * src/ds390/main.c: new option -o
8708         * src/pic/glue.c: new option -o
8709         * src/pic/pcode.c: new option -o
8710         * src/pic/ralloc.c: new option -o
8711         * src/pic16/glue.c: new option -o
8712         * src/pic16/pcode.c: new option -o
8713         * src/pic16/ralloc.c: new option -o
8714         * src/z80/main.c: new option -o
8715         * device/lib/Makefile.in: use -o
8716         * support/regression/ports/ds390/spec.mk: use -o
8717         * support/regression/ports/gbz80/spec.mk: use -o
8718         * support/regression/ports/mcs51/spec.mk: use -o
8719         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8720         * support/regression/ports/z80/spec.mk: use -o
8721         * support/regression/ports/ucz80/spec.mk: use -o
8722         * support/regression/ports/xa51/spec.mk: use -o
8723         * support/regression/fwk/lib/timeout.c: fix usage string
8724
8725 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8726         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8727
8728 2003-01-07    <johan AT balder>
8729
8730         * src/SDCCast.c (decorateType): fixed bug #600035
8731
8732 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8733         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8734         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8735         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8736         * src/pic/pcode.c: outcommented unused variable to remove warnings
8737         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8738
8739 2003-01-06    <karl AT turbobit.com>
8740         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8741    regression tests.
8742
8743 2003-01-06    <johan AT balder>
8744
8745         * src/SDCCicode.c: fixed array add
8746
8747 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8748         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8749         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8750
8751 2003-01-04    <johan AT balder>
8752
8753         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8754
8755 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8756         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8757
8758 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8759         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8760         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8761
8762 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8763         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8764
8765 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8766         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8767
8768 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8769         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8770
8771 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8772
8773     * in \sdcc\as\mcs51\ changed these files in order to create an
8774     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8775     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8776     following files to include the previous two files: aslink.dsp,
8777     Makefile.aslink, Makefile.bcc, and Makefile.in.
8778
8779     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8780     .adb instead of .cdb
8781
8782 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8783
8784         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8785         value from option --iram-size.
8786
8787 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8788
8789         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8790         dram[] array.
8791
8792 2002-09-18    <wiml AT hhhh.org>
8793
8794         * SDCClrange.h: exposed setFromRange() and setToRange()
8795         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8796           packRegsForAccUse() (bug 542397)
8797         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8798           multiple times and emitting the fetch operations more than once
8799           added aopGetUsesAcc() function to allow binary operators to
8800           fetch their operands in the correct order; made genMinus() emit
8801           compact code for X = LITERAL - Y
8802
8803 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8804         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8805         sprintf() in line 1267.
8806
8807 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8808         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8809         like ports.
8810
8811 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8812         Changes to aslink (All the changes are marked with 'JCF'):
8813
8814         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8815         summary().
8816
8817         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8818         area BSEG.  Also moves, if possible, the DATA area down into the internal
8819         ram so more space is available.
8820
8821         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8822         sflag.
8823
8824         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8825         not bytes.  Function summary() which creates a memory usage summary
8826         file with extension .mem.  Reports of overlaping stack and small stack
8827         size.  If the space for the stack is less than 16 bytes aslink trows a
8828         warning.
8829
8830         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8831         the 8051.  Option 'y' for memory summary output file.
8832
8833         Changes to sdcc (All the changes are marked with 'JCF'):
8834
8835         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8836
8837         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8838         overlaying area for it (uses RegBankUsed[4]).
8839
8840         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8841         bank zero as used by default.  By default aslink locates the stack
8842         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8843         the creation of the .mem file.  Delegates the allocation of data area
8844         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8845         the begining of the stack area to aslink.
8846
8847         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8848         glue() in SDCCglue.c creates an area for it.
8849
8850 2002-09-03  Borut Razem <borut.razem AT siol.net>
8851         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8852         sdcc/src/pic/glue.c:
8853         introduced atexit() handler for teporay files removal in case of
8854         errors, assertions, ...
8855
8856 2002-08-29  Borut Razem <borut.razem AT siol.net>
8857         * sdcc/support/cpp2/auto-host_vc_in.h:
8858         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8859         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8860         Maybe there is a similar problem with BORLANDC? It should be checked!
8861
8862         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8863         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8864         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8865         was not executed, and the compiler (cl) launched a warning:
8866         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8867
8868 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8869         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8870
8871 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8872         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8873
8874         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8875           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8876           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8877           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8878           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8879           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8880           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8881         - added Release configuration in VS projects
8882         - review of compiler an linker options
8883         - VC .exe files are generated in bin_vc directory, not to interfere
8884           with binaries generated from other projects (cygwin, mingw, bcc ...)
8885
8886         * sdcc/src/yacc.dsp: added
8887
8888         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8889         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8890         and insert the version number definitions from .version
8891
8892         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8893
8894         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8895         added - genarate auto-host.h using auto-host_vc_in.h as template
8896
8897         * sdcc/sdcc_vc.h,
8898         removed from CVS, generated automatically
8899
8900 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8901         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8902
8903 2002-08-11  Borut Razem <borut.razem AT siol.net>
8904         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8905
8906 2002-08-10  Borut Razem <borut.razem AT siol.net>
8907         * src/SDCCmain.c (main):
8908         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8909         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8910         The consequence was that some temporary files were not removed.
8911
8912         * src/SDCCglue.c:
8913         unification of code in functions tempfilename() and tempfile():
8914         function tempnam() is defined in Visual Studio 6.0 and .NET
8915
8916         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8917
8918         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8919           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8920         - removed compiler command line option /WX: Treats all warnings as errors
8921         - update a list of source files, included into the project
8922
8923         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8924           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8925         changed project type to Generic Project so that can be correcly converted to VS.NET project
8926
8927         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8928
8929         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8930
8931         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8932
8933         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8934         added return 0 statements after assert() to make compiler happy
8935
8936         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8937         added newline in the def file to keep MSC compiler satisfied
8938
8939         * sdcc/src/z80/gen.c:
8940         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8941           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8942         - solved MSC error in function aopDump()
8943
8944         * sdcc_vc.h: define PREFIX as "\\sdcc"
8945
8946 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8947         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8948
8949 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8950         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8951         - Rewrote the register banking algorithm.
8952         - Added pCode live-range analysis to registers (for now, only non-used and
8953         singly-used registers optimized away)
8954
8955         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8956
8957         * 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.
8958
8959 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8960         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8961
8962 2002-04-22  Michael Hope  <michaelh AT vroom>
8963
8964         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8965
8966         * configure.in (DD_COPT): Added include support required for gbdk.
8967
8968         * .version: Bumped version number just to increase it.
8969
8970         * src/SDCCmain.c: Added -nostdinc to the default options.
8971
8972 2002-04-15  Michael Hope  <michaelh AT vroom>
8973
8974         * device/lib/z80/printf.c (sprintf): Added.
8975
8976         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8977
8978         * src/z80/peeph.def: Added transpose redundent load rule.
8979
8980         * src/z80/main.c: Added force callee saves for jaune.
8981
8982         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8983
8984         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8985
8986 2002-03-28  Johan Knol  <johan AT balder>
8987
8988         * src/SDCCval.c: fixed bug #532436
8989
8990 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8991         * /src/port.h:
8992         Added "char *Processor" field to the port structure.
8993
8994         * /src/SDCCmain.c:
8995         Added -p option. Allows port dependent processor to be specified.
8996
8997         * all ports:
8998         Initialized the new field char *Processor field to NULL in all ports
8999
9000         * /src/pic/*:
9001         Compiler generated registers for interrupt context saving
9002         were not getting allocated.
9003
9004 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9005
9006         * /src/SDCCast.c:
9007         Fixed left shift. Will promote the left side of a left shift
9008         if a) left shifting more than size of operand or b) when assigned
9009         to something size > size of left side
9010
9011 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9012         * src/pic/*
9013         tons of changes. Register allocation has been
9014         rewritten. Added customization for the various PICs. Flow
9015         analysis is restructured. ...
9016
9017         * src/pic/device.h:
9018         Added
9019
9020         * src/pic/device.c:
9021         Added. device.c is a PIC port hack to accomodate variations
9022         in PIC devices.
9023
9024 2002-03-13  Michael Hope  <michaelh AT vroom>
9025
9026         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9027
9028 2002-03-04  johanknol  <johanknol AT manik>
9029
9030         * /src/SDCCval.c: fixed
9031
9032         const unsigned char arr[][2] = { { 0, 1 } };
9033         t18.c:1: error: Initializer element is not constant
9034
9035 2002-03-04  bela  <bela AT manik>
9036
9037         * /device/include/mcs51reg.h:
9038         ds89c420 register definition update
9039
9040 2002-03-03    <johan AT FRIJA>
9041
9042         * support/Util/SDCCerr.c: did something, but don't no why anymore
9043
9044         * support/regression/tests/bug-524691.c: made it a little less shy
9045
9046         * src/SDCCast.c (decorateType): fixed bug #524697
9047
9048         * src/SDCCast.c: made some lineno improvements
9049
9050         * src/SDCCval.c (getNelements): changed warning to error
9051
9052         * src/SDCCglue.c (printIvalArray): changed warning to error
9053
9054         * src/SDCCicode.c: fixed a warning for mingw
9055
9056         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9057
9058         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9059
9060 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9061
9062         * src/ds390/peeph.def:
9063         Added some more peephole rules
9064
9065         * src/ds390/gen.c: Various fixes & enhancements
9066
9067         * src/SDCClrange.c, src/SDCClrange.h:
9068         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9069
9070         * src/ds390/ralloc.c:
9071         various fixes & enhancements (ds390) specific
9072
9073         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9074         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9075         from rallocs.
9076
9077         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9078
9079 2002-03-02    <johan AT FRIJA>
9080
9081         * src/SDCCast.c (decorateType): fixed bug #524708
9082
9083         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9084
9085         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9086
9087 2002-03-01  Michael Hope  <michaelh AT vroom>
9088
9089         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9090
9091         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9092
9093 2002-03-01    <johan AT FRIJA>
9094
9095         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9096
9097         * src/SDCCast.c (decorateType): fixed bug #524209
9098
9099         * src/SDCCval.c (valNot): fixed bug #524195
9100
9101 2002-02-26    <johan AT balder>
9102
9103         * src/xa51/gen.c: fixed a warning
9104
9105         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9106
9107         * src/SDCCast.c (decorateType): fixed bug #522534
9108
9109 2002-02-23    <johan AT balder>
9110
9111         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9112
9113 2002-02-22    <johan AT balder>
9114
9115         * src/SDCCast.c: fixed bug #514865
9116
9117         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9118
9119 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9120
9121         * sdcc/src/SDCCloop.c:
9122         Previous fix was not good. basic blocks that have "break" or "return" are
9123         not really partof a loop , but live ranges used in these blocks should
9124         be live thru the entire loop, so set partOfLoop but don't add them to
9125         loop region
9126
9127 2002-02-21    <johan AT FRIJA>
9128
9129         * src/SDCCcse.c: fixed bug #514308
9130
9131 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9132
9133         * src/SDCCloop.c:
9134         Fixed BUG #519583. If a conditional block ended in a return/break
9135         statement inside a loop, it was not being considered part of the loop.
9136
9137         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9138
9139 2002-02-10  Karl Bongers <karl AT turbobit.com>
9140
9141         * debugger/*:
9142         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9143         with lots of comments and notes.
9144
9145         * device/examples/test2.c:
9146         Fix bug, "red" variable not being initialized(compiler complained).
9147
9148         * device/examples/Makefile, examples/test3.c:
9149         Add Makefile in device/examples folder, compiles test3.c
9150         for use as a multiple module SDCDB test case.
9151
9152         * sim/ucsim/cmd.src/cmdset.cc:
9153         Took out debug printfs in ucsim "next" command.
9154
9155         * sim/ucsim/xa.src:
9156         Karl and Johan start ucsim XA support.  Most dissassembly working,
9157         about 75% emulation done(plenty of work remaining).
9158
9159         * sim/ucsim/z80.src:
9160         Add Z80 support to ucsim, add test-ucz80 regression test,
9161         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9162         Notice z80 compiler fails on examples/test3.c/crc code.
9163
9164 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9165
9166         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9167         Added support for --parms-in-bank1
9168
9169         * src/ds390/peeph.def:
9170         added a few more peephole optimzations
9171
9172         * src/ds390/main.c:
9173         1) added __builtin_inp & __builtin_outp used to read in data of given length
9174            from a memory mapped port
9175         2) added __builtin_memcmp
9176         3) added __builtin_swapw swap bytes of a short
9177
9178         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9179         1) handle multiple send & receives from register bank1
9180         2) ralloc can now allocate DPTR1 to some liveRanges
9181
9182         * src/SDCCsymt.c, src/SDCCsymt.h:
9183         changes to handle multiple sends & receives
9184
9185         * src/SDCCptropt.h:
9186         added some pointer arithmetic optimization
9187
9188         * src/SDCCptropt.c:
9189         added some pointer arithmetic optimizations but not stable yet so not
9190         called from anywhere (will get this working shortly)
9191
9192         * src/SDCCopt.c: fixed for multiple sends & receives
9193
9194         * src/SDCCmain.c:
9195         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9196         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9197            set preprocessor defines (depending on options)
9198
9199         * src/SDCCicode.c, src/SDCCicode.h:
9200         changes made to handle multiple sends & receives
9201
9202         * src/SDCCglobl.h:
9203         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9204
9205         * src/SDCCcse.c, src/SDCCcse.h:
9206         added function findbackward def (to be used in upcoming optimization)
9207
9208         * src/SDCCcflow.c, src/SDCCcflow.h:
9209         added function returnAtEnd - to determine if a basic block terminates with
9210         a RETURN iCode
9211
9212         * src/SDCCast.c, src/SDCCast.h:
9213         added option parms-in-bank1
9214
9215         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9216         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9217         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9218         adjusted for --parms-in-bank1 option
9219
9220         * device/include/string.h:
9221         donot redefine "reentrant" keyword
9222
9223         * device/include/ds80c390.h: Added some more SFRs
9224
9225 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9226
9227         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9228
9229 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9230
9231         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9232
9233 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9234
9235         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9236
9237 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9238
9239         * Added --xram-movc option
9240
9241 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9242
9243         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9244
9245 2002-01-11  Johan Knol
9246
9247         * Added math lib of Jesus Calvino-Fraga
9248
9249 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9250
9251         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9252         * support/regression/Makefile: new target test-mcs51-stack-auto
9253         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9254
9255 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9256
9257         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9258
9259 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9260
9261         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9262
9263 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9264
9265         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9266
9267         * src/SDCCglue.h: add definition for printIvalChar()
9268
9269 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9270
9271         * src/SDCCast.c: fix #498138 by Johan
9272
9273         * src/SDCCglue.c: fix #498138 by Johan
9274
9275 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9276
9277         * support/regression/Makefile: fix clean
9278
9279         * support/regression/ports/ds390/support.c: fix transmission of last character
9280
9281 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9282
9283         * /sdcc/src/ds390/gen.c:
9284         a) improved computing address of stack variable
9285         b) took out some #if 0 code
9286         c) improved parmBytes adjustment
9287         d) improved genPlusIncr & genMinusIncr
9288         e) genCmp could generate bad code (when left assigned to DPTR)
9289         f) Fixed bug in hasInc
9290
9291         * /sdcc/src/ds390/ralloc.c:
9292         a) packRegsForSupport could mess up live information (Fixed)
9293         b) packRegsDPTRuse could be incorrect for left & right shift
9294
9295         * /sdcc/src/mcs51/ralloc.c:
9296         packRegsForSupport could mess up the live information (Fixed)
9297
9298         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9299
9300         * /sdcc/src/SDCCast.c:
9301         can reverse a loop even if function call is present as long
9302         as the loop control variable is local & is not passed as parameter
9303
9304 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9305
9306         * /sdcc/ChangeLog: *** empty log message ***
9307
9308         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9309         More builtin function additions for TININative
9310
9311         * /sdcc/src/ds390/ralloc.c:
9312         Had broken the regression testsuite
9313
9314         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9315
9316         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9317         Added funcattr hasStackParms will be set for reentrant functions when there
9318         are paramteres on the stack, this helps in minimizing frame pointer generation
9319         typeFromStr can handle function pointers now
9320
9321         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9322         *** empty log message ***
9323
9324 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9325
9326         * /src/ds390/gen.c, /src/ds390/main.c:
9327         More builtin function additions for TININative
9328
9329         * /src/ds390/ralloc.c:
9330         Had broken the regression testsuite
9331
9332         * /src/SDCCast.c: Fixed a bug in dumptree
9333
9334         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9335         Added funcattr hasStackParms will be set for reentrant functions when there
9336         are paramteres on the stack, this helps in minimizing frame pointer generation
9337         typeFromStr can handle function pointers now
9338
9339         * /doc/builtins.txt, /doc/TININative.txt:
9340         *** empty log message ***
9341
9342
9343 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9344
9345         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9346         ALPHA version for -mTININative
9347
9348         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9349         updated to reflect changes in the port structure
9350
9351         * /src/port.h:
9352         added function do_assemble (similar to do_link) if non-null this function
9353         will be called to do assembly (-mTININative) requires a multi command
9354         assembly
9355         added function genAssemblerEnd will be called to generate assembler Epilogue
9356
9357         * /src/SDCCsymt.c:
9358         added _JavaNative to debug info printing
9359
9360         * /src/SDCCmain.c: added option --tini-libid
9361         added port->do_assemble function (-mTININative) has a multi command assemble
9362
9363         * /src/SDCCglue.c: Disabled "constExpr" check
9364         added port->genAssemblerEnd function
9365
9366         * /src/SDCCglobl.h: Added option --tini-libid value
9367
9368         * /src/SDCCast.h:
9369         tookout optimizeCompare from the header (has no external references)
9370
9371         * /src/SDCCast.c: made one more function "static"
9372
9373 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9374
9375         * src/z80/mappings.i: Added z80asm support.
9376
9377         * src/z80/main.c: Added z80asm support on --asm=z80asm
9378
9379         * src/z80/gen.c: Fixed asm portability issues.
9380
9381         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9382
9383         * src/SDCCglue.c (printExterns): Added global/extern split.
9384
9385 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9386
9387         * support/regression/Makefile: added test for mcs51 model large
9388
9389         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9390
9391         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9392
9393 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9394
9395         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9396
9397 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9398
9399         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9400
9401         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9402
9403 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9404
9405         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9406
9407         * support/regression/tests/simplefloat.c: Port to mcs51.
9408
9409 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9410         * support/regression/tests/bug-485362.c: Added.
9411
9412         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9413
9414         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9415
9416         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9417
9418         * src/z80/gen.c (aopDump): Added a dump function.
9419
9420 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9421         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9422
9423         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9424
9425         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9426
9427         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9428
9429         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9430
9431         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9432
9433         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9434
9435         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9436
9437         * support/regression/ports/ds390/support.c: Use tinibios.
9438
9439         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9440
9441 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9442
9443         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9444         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9445
9446         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9447
9448         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9449
9450 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9451
9452         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9453
9454         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9455         (packRegsForIYUse): Created and optimised.
9456
9457 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9458
9459         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9460 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9461
9462         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9463
9464         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9465
9466         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9467
9468 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9469
9470         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9471
9472         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9473
9474 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9475
9476         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9477
9478         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9479
9480         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9481
9482 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9483
9484         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9485         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9486         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9487
9488         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9489
9490         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9491         (genNotFloat): Added.
9492         (genUminusFloat): Added.
9493
9494         * device/lib/z80/Makefile: Added floating pt stubs.
9495
9496         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9497
9498         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9499
9500         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9501
9502 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9503
9504         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9505
9506         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9507
9508         * sdcc/support/regression/Makefile: Add port ds390.
9509
9510         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9511
9512         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9513
9514         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9515
9516         * sdcc/support/regression/ports/ds390/support.c: Added.
9517
9518         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9519
9520         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9521
9522         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9523
9524 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9525
9526         * device/include/malloc.h: Added z80 and gbz80 support.
9527
9528         * device/lib/gbz80/heap.s: Added.
9529
9530         * device/lib/z80/heap.s: Added.
9531
9532         * device/lib/malloc.c: Added z80 and gbz80 support.
9533
9534         * support/regression/tests/malloc.c (testMalloc): Added.
9535
9536         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9537
9538         * support/regression/tests/bug-478094.c: Added.
9539
9540         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9541
9542 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9543
9544         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9545
9546         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9547
9548         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9549
9550         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9551
9552         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9553
9554 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9555
9556         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9557
9558 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9559
9560         * support/regression/tests/bug-477927.c: Added.
9561
9562         * src/z80/peeph.def: Added minor rules.
9563
9564         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9565
9566         * src/z80/peeph.def: Added jump optimisation modification.
9567
9568 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9569
9570         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9571
9572 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9573
9574         * support/regression/tests/funptrs.c: Added.
9575
9576 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9577
9578         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9579
9580 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9581
9582         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9583
9584         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9585
9586         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9587         (movLeft2ResultLong): Created.
9588
9589         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9590         (joinPushes): Added.  Joins two char pushes into a word push.
9591
9592 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9593
9594         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9595
9596         * support/makebin/Makefile (install): Added creation of dest dir.
9597
9598 2001-10-24 Karl Bongers <karl AT turbobit.com>
9599
9600         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9601
9602 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9603
9604         * src/z80/ralloc.c: Turned off faulty pack for one use.
9605
9606         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9607
9608         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9609
9610 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9611
9612         * support/regression/Makefile: Improved clean
9613
9614         * support/regression/ports/gbz80/spec.mk: Added clean
9615
9616         * support/regression/ports/host/spec.mk: Added clean
9617
9618         * support/regression/ports/z80/spec.mk: Added clean
9619
9620         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9621
9622         * support/regression/ports/mcs51/timeout.c: little improvements
9623
9624 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9625
9626         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9627
9628         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9629
9630         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9631
9632 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9633
9634         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9635
9636         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9637
9638 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9639         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9640
9641         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9642
9643         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9644
9645         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9646
9647         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9648
9649         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9650
9651         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9652
9653         * support/regression/tests/longor.c: Added.
9654
9655 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9656
9657         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9658
9659         * as/mcs51/aslink.h: define PATH_MAX
9660
9661         * as/mcs51/asm.h: define PATH_MAX
9662
9663         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9664
9665         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9666
9667         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9668
9669         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9670
9671         * src/SDCCglobl.h: define PATH_MAX
9672
9673         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9674
9675         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9676
9677 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9678
9679         * src/z80/gen.c (gencjneshort): Fixed
9680
9681         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9682
9683 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9684
9685         * support/regression/tests/bug-469671.c: Added.
9686
9687         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9688
9689 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9690
9691         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9692
9693         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9694
9695 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9696
9697         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9698
9699         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9700
9701         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9702
9703         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9704
9705         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9706
9707         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9708
9709         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9710
9711 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9712
9713         * 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.
9714
9715         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9716
9717         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9718
9719 2001-10-07    <johan AT FRIJA>
9720
9721         * device/lib/gets.c (gets): fixed the return value.
9722
9723 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9724         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9725
9726         * 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.
9727
9728         * 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.
9729
9730         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9731
9732         * src/pic/gen.c: Removed Safe_strdup.
9733
9734         * configure.in: Added option to enable libgc support.
9735
9736         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9737         (bitVectUnion): Optimised.
9738         (bitVectIntersect): Optimised.
9739         (bitVectBitsInCommon): Optimised.
9740         (bitVectCplAnd): Optimised.
9741
9742         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9743
9744 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9745
9746         * src/SDCCmain.c: distinguish between assembler debug and plain options
9747
9748         * src/avr/main.c:   remove standard assembler options
9749
9750         * src/ds390/main.c: remove standard assembler options
9751
9752         * src/mcs51/main.c: remove standard assembler options
9753
9754         * src/port.h: removed "PENDING" comment
9755
9756 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9757
9758         * src/device/lib/_mulint.c  : new, with assember functions
9759
9760         * src/device/lib/_mullong.c : new, with assember functions
9761
9762         * src/device/lib/_divuint.c : with assember functions
9763
9764         * src/device/lib/_divsint.c : with assember functions
9765
9766         * src/device/lib/_divulong.c: with assember functions
9767
9768         * src/device/lib/_divslong.c: with assember functions
9769
9770         * src/device/lib/_moduint.c : with assember functions
9771
9772         * src/device/lib/_modsint.c : with assember functions
9773
9774         * src/device/lib/_modulong.c: with assember functions
9775
9776         * src/device/lib/_modslong.c: with assember functions
9777
9778         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9779
9780         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9781
9782         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9783                                       replaced _mululong.c and _mulslong.c by _mullong.c
9784
9785 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9786
9787         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9788
9789 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9790
9791         * src/SDCCglue.c: test, if win32api is available for MINGW
9792
9793 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9794
9795         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9796         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9797         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9798         * support/regression/ports/host/spec.mk: removed GENERIC
9799         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9800         * support/regression/ports/z80/spec.mk: removed GENERIC
9801
9802 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9803
9804         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9805
9806         * support/regression/tests/bug-467035.c: Created.
9807
9808 2001-10-01    <johan AT FRIJA>
9809
9810         * src/SDCC.y: fixed bug #466586 part 1
9811
9812 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9813
9814         * SDCCicode.c: z80 has no generic pointers
9815         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9816
9817 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9818
9819         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9820
9821 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9822
9823         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9824
9825         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9826
9827 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9828
9829         * configure.in: Fixed up so that ucsim is only configured once.
9830
9831         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9832
9833         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9834         (getPathDifference): As above.
9835
9836         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9837
9838         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9839
9840 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9841         * .version: Updated to 2.3.1
9842
9843         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9844         Added copyright header.
9845
9846         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9847         (assemble): Added support for macro based assembler commands.
9848         (linkEdit): Added support for macro based linker commands.
9849         (preProcess): Changed the pre-processor to use macros.
9850         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9851         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9852
9853         * device/lib/z80/crt0.s: Added module name for debugging.
9854
9855 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9856
9857         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9858
9859         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9860
9861         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9862
9863         * src/Makefile.in: Added SDCCmacro and SDCCutil
9864
9865 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9866
9867         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9868
9869 2001-09-16    <johan AT FRIJA>
9870
9871         * 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.
9872
9873 2001-09-15    <johan AT FRIJA>
9874
9875         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9876         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9877
9878 2001-09-11    <johan AT FRIJA>
9879
9880         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9881
9882 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9883
9884         * support/regression/tests/bug-460444.c: Added test case.
9885
9886         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9887         (genCast): Added justification for all of the asserts.
9888
9889 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9890
9891         * support/regression/support.c: _xdata replaced by xdata
9892
9893         * support/regression/spec.mk: removed _generic
9894
9895 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9896
9897         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9898
9899         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9900         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9901
9902         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9903
9904         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9905
9906         * support/regression/tests/bug-460010.c: Added test case.
9907
9908         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9909
9910 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9911
9912         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9913
9914         * support/regression/testfwk.c: removed workaround for bug #436344
9915
9916         * support/regression/tests/bp.c: use less memory with mcs51
9917
9918         * support/regression/tests/bug-441448.c: use less memory
9919
9920         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9921
9922         * support/regression/collate-results.py: typo
9923
9924 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9925
9926         * support/regression/tests/fetchoverlap.c: Added new test case.
9927
9928         * support/regression/tests/bp.c: Added new test case.
9929
9930         * support/regression/tests/bug-448984.c: Added new test case.
9931
9932         * support/regression/tests/pow2shifts.c: Added new test case.
9933
9934         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9935         (genlshTwo): Fixed right shift for count > 8.
9936
9937         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9938
9939 2001-09-08    <johan AT FRIJA>
9940
9941         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9942
9943 2001-09-07    <johan AT FRIJA>
9944
9945         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9946
9947         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9948
9949 2001-09-06    <johan AT FRIJA>
9950
9951         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9952         * bernhard noted me at this: "() equals to (void)" (1.38)
9953
9954 2001-09-05    <johan AT FRIJA>
9955
9956         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9957
9958 2001-09-04    <johan AT FRIJA>
9959
9960         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9961
9962
9963 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9964
9965         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9966
9967 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9968
9969         * link/z80/aslink.h: Fixed path for PATH_MAX
9970
9971 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9972
9973         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9974
9975         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9976
9977         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9978
9979         * 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.
9980
9981 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9982
9983         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9984         (genCmp): Fixed up genCmp for the GB with longs.
9985
9986         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9987
9988         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9989
9990         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9991
9992         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9993
9994 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9995
9996         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9997
9998 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9999
10000         * 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.
10001
10002         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10003
10004 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10005
10006         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10007
10008         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10009
10010 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10011
10012   * sim/ucsim/configure:    little improvement of Cygwin-detection
10013   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10014   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10015   * support/regression/tests/bug-221100.c: small changes for mcs51
10016   * support/regression/tests/bug-221168.c: small changes for mcs51
10017   * support/regression/tests/bug-227710.c: small changes for mcs51
10018   * support/regression/tests/staticinit.c: small changes for mcs51
10019   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10020   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10021   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10022
10023 $Revision$