bf0303dca7034c7d5e2f0a33dfb117af43011b64
[fw/sdcc] / ChangeLog
1 2005-10-28 Raphael Neider <rneider AT web.de>
2
3         * device/include/pic/p16f_common.inc: added common declarations
4         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
5
6 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
7
8         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
9           (aopPutUsesAcc): added to predict accumulator use,
10           (assignResultValue): save acc if necessary,
11           (genMinusDec): store result if indirectly addressed,
12           (genDivOneByte):  save acc if necessary,
13           (movLeft2Result): bugfix if left already in acc,
14           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
15             attention to accumulator use (esp. pdata),
16           (genReceive): receive pdata correctly
17         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
18         * src/SDCCicode.h: added isOperandInPagedSpace prototype
19
20 2005-10-27 Raphael Neider <rneider AT web.de>
21
22         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
23
24 2005-10-27 Raphael Neider <rneider AT web.de>
25
26         * .version: changed version to 2.5.4
27         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
28         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
29           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
30             arithmetics support routines
31         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
32         * device/lib/Makefile.in: also create installdir for pic
33
34         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
35           pic14 port as well
36         * src/pic/device.c (dump_sfr): rewritten to delegate register
37           placement to the linker (use `extern sym' rather than sym EQU addr),
38           (validAddress): fixed to check last specified address
39         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
40           (popGetLit): truncate literal value to 8 bit,
41           (popGet): moved assert to more appropriate place
42           (popGetExternal): create pCode operand from and mark the according
43             symbol as being `extern'
44           (popGetAddr): added sanity check on immediate's offset, provide
45             GPOINTER tag on demand
46           (aopPut): fixed for immediates,
47           (mov2w_op): move operand's address or contents to WREG (depending on
48             operand type), safer variant of mov2w,
49           (movwf,call_libraryfunc): NEW, handy abbreviations,
50           (get_argument_pcop,get_return_val_pcop,pass_argument,
51           get_returnvalue): interface for accessing function parameters and
52             return values,
53           (assignResultValuei,genRet): use new parameter/return value interface
54           (pic14_getDataSize): back to old version handling generic pointers,
55           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
56             provided implementation and/or fixed old one,
57           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
58             calls, removed legacy 8051 reference code
59           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
60           (loadSignToC): NEW, move the operands sign bit to CARRY,
61           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
62             genRightShiftSigned, accepts negative shift counts,
63           (setup_fsr): load FSR and adjust IRP (indirect memory access),
64           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
65             generic pointers, __data pointers and __code pointers,
66           (genUnpackBits,genPackBits): rewritten to work with generic pointers
67             and signed bitfields, limit bitfields to 8 bit,
68           (genDataPointerGet): fixed number of bytes read,
69           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
70           (genPointerGet,genPointerSet): fixed handling of __code pointers,
71             pointers to constant data are no longer assumed to point to __code
72             space, removed invalid pointer types,
73           (bitpatternFromVal): retrieve the PICs representation of an integer
74             or float literal,
75           (genDataPointerSet): fixed assigning to po_immediate operands,
76           (genGenPointerSet): implemented as library call,
77           (genIfx): fixed incorrect condition,
78           (genAddrOf): limit generic pointers' addresses to 2 bytes,
79             provide GPOINTER tag according to destination's storage class,
80           (genCast): added code to handle casting to generic pointers, added
81             sign-/zero extension of the result
82           (aop_isLitLike,op_isLitLike): fixed handling of immediates
83         * src/pic/gen.h: added macros to access IRP bit in STATUS register
84         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
85           extend the result
86         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
87           address/register resides in the shared banks
88           (emitSymbolToFile): improved to handle global and `pinned' symbols,
89             put all variables into separate sections (have the linker arrange
90             them)
91           (picglue): put init code and interrupt handlers in separate sections
92         * src/pic/main.c: added port specific options table, modified to PORT
93           structure to make GPOINTERs 3 byte, added pic14_options
94           (_pic14_do_link): private linking routine (update paths to libraries,
95             add libsdcc.lib by default)
96         * src/pic/main.h: declare pic14_options
97         * src/pic/pcode.c: fixed instructions i/o relations,
98           (RegCond): reverted to correct version,
99           (newpCodeOpLit): truncate literals to 8 bit,
100           (genericPrint): added debug output,
101           (getRegFromInstruction): fixed for various operand types, simplified
102           (BuildFlow): fixed broken handling of isntructions with labels
103           (LinkFlow): start at last instruction in flow (skip trailing comments),
104             pass the flow on to the next instruction after CALL
105           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
106           (insertPCodeInstruction): fixed inserting after a skip instruction,
107           (DoBankSelect): fixed for labeled instructions
108           (OptimizepBlock): honor --nopeep switch
109           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
110         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
111         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
112           (pCodeOptime2pCodes): allow disabling this optimization via
113             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
114             but is still buggy), started implementation of a dataflow based
115             pCode optimization (CSE + dead code elimination)
116           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
117         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
118           names are independant of the stack location and therefore portable across
119           devices
120
121 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
122
123         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
124           (selectSpil): fixed bug 1337835 by not spilling bit variables
125         * support/regression/tests/bug1337835.c: added test for this bug
126         * src/mcs51/peeph.def: restart after rule 3.c,
127           addded rules 263.x to optimize loading constants
128
129 2005-10-26 Raphael Neider <rneider AT web.de>
130
131         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
132         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
133           (genAssign): emit warning when casting literals to generic pointer
134             type, also applies when taking the address of a fixed variable,
135           (genCast): improved casting to generic pointers
136         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
137           extern variables, added verbose error message
138         * device/include/pic16/{string.h,errno.h}: added #pragma library c
139
140 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
141
142         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
143         carry must be complemented too
144         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
145         could be emitted by genMinus
146         * src/SDCCval.c (constVal): fixed bug 1305065
147
148 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
149
150         * src/SDCCast.c (addCast): added promotion for bit variables
151         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
152         promotion casts + optimisation
153         (optimizeGetWord): fix warning 'i' might be used uninitialized
154         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
155         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
156
157 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
158
159         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
160         all chars are promoted to int; promotion should be handled in SDCCast.c
161
162 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
163
164         * device/lib/_strcmp.c: Fixed bug 1326457
165
166 2005-10-11 Raphael Neider <rneider AT web.de>
167
168         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
169         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
170
171 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
172
173         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
174         * support/regression/tests/sfr16.c: added test for the sfr32 bug
175
176 2005-10-04 Raphael Neider <rneider AT web.de>
177
178         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
179           device/lib/pic16/pics.all: added pic18f1320
180         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
181
182 2005-09-30 Raphael Neider <rneider AT web.de>
183
184         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
185         * src/pic16/devices.inc: NEW, provides device descriptions
186         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
187
188 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
189
190         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
191           GETHBIT
192
193 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
194
195         * doc/sdccman.lyx: updated Highest Order Bit documentation,
196           documented Any Order Bit, Higher Order Byte and Higher Order Word
197         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
198         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
199           (optimizeGetAbit): new, to get any bit, not only the high bit,
200           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
201           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
202           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
203           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
204             RIGHT_OP: also try GETBYTE, GETWORD optimization,
205             GETABIT, GETBYTE, GETWORD: decorate them,
206           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
207           (ast_print): added GETABIT, GETBYTE, GETWORD
208         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
209         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
210           (geniCodeBinary): new generic binary icode,
211           (ast2iCode): added GETABIT, GETBYTE, GETWORD
212         * src/port.h: updated comment for PORT.hasExtBitOp
213         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
214           (genGetByte): new, to get a single byte,
215           (genGetWord): new, to get a word from a long,
216           (gen51Code): added GETABIT, GETBYTE, GETWORD
217         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
218
219 2005-09-23 Raphael Neider <rneider AT web.de>
220
221         * configure.in, configure: have device/lib/pic configured
222         * device/lib/Makefile.in: added model-pic14
223         * device/lib/clean.mk: added pic/ to clean rule
224         * device/lib/pic: added rudimentary pic14 library providing support
225           functions for multiplication/division/generic pointer access
226         * src/SDCCopt.c (convilong): mark support functions as extern
227           for pic14 port as well
228         * src/pic/gen.c (genMult): added assertions,
229           (genpic14Code): emit warning on unhandled iCodes
230         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
231         * src/pic/pcode.c (pCodeOpCopy),
232         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
233           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
234           SFR_REGISTER}), made safe for future extensions
235         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
236           instructions even if preceeded by SKIP instructions (also remove
237           them); removed unused code
238         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
239           prevents leaving parts of the structure uninitialized after copying
240
241 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
242
243         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
244           ago by me
245         * support/regression/tests/addsub.c: added test for the bug
246
247 2005-09-21 Raphael Neider <rneider AT web.de>
248
249         * device/include/pic16/pic18f1220.h,
250           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
251         * device/lib/pic16/Makefile.rules: added missing opening paren
252         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
253           are provided in genutils.c,
254           (genUminusFloat,genUminus,genCmpEq): added asserts on different
255           operand/result sizes,
256           (genCmp): assert on NULL pointers first, then check deref'ed values
257         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
258           result size
259
260 2005-09-18 Raphael Neider <rneider AT web.de>
261
262         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
263           as these are now unused,
264           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
265         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
266           local, avoids uninitialized pointer dereference on r->name
267         * src/pic16/ralloc.c (newReg): fixed indentation
268
269 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
270
271         * src/SDCCval.c (constVal): fixed bug 730366
272         * support/Util/SDCCerr.c,
273         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
274
275 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
276
277         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
278
279 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
280
281         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
282
283 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
284
285         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
286           (hex2dec): made hex_digit unsigned char, removed ascii dependance
287         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
288           (hex2dec): made hex_digit unsigned char, removed ascii dependance
289         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
290         * packihx/packihx.c (hexDigit): made c unsigned char
291         * as/mcs51/lklibr.c (fndsym),
292         * link/z80/lkgb.c (gb),
293         * link/z80/lklibr.c (fndsym),
294         * link/z80/lkrloc.c (relr),
295         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
296         * src/SDCC.lex (checkCurrFile, process_pragma),
297         * src/SDCCglue.c (spacesToUnderscores),
298         * src/SDCCmain.c (setParseWithComma, processFile),
299         * src/asm.c (tvsprintf, printCLine),
300         * src/avr/gen.c (emitcode, aopPut),
301         * src/ds390/gen.c (emitcode),
302         * src/hc08/gen.c (emitcode, emitinline),
303         * src/mcs51/gen.c (emitcode, genInline),
304         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
305           tokenizeLineNode),
306         * src/pic/ralloc.c (debugLog),
307         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
308           tokenizeLineNode),
309         * src/pic16/ralloc.c (debugLog),
310         * src/z80/main.c (_process_pragma):
311            made all ctype.h function calls safe
312         * src/SDCCopt.c: include math.h for fabs
313         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
314           and used them throughout the code to make ctype.h function calls safe
315         * src/ds390/main.c (asmLineNodeFromLineNode),
316         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
317         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
318            unsigned char*
319         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
320           (newpCodeAsmDir): made ctype.h function calls safe
321         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
322           pic16_emitcode):  made lbp unsigned char*
323         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
324           (pic16_newpCodeAsmDir): made ctype.h function calls safe
325         * src/xa51/gen.c (emitcode),
326         * src/z80/gen.c (_emit2): made lbp unsigned char*
327         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
328            char*
329
330 2005-09-05 Raphael Neider <rneider AT web.de>
331
332         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
333           access bank splitpoint
334
335 2005-09-05 Raphael Neider <rneider AT web.de>
336
337         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
338
339 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
340
341         * .version: changed to version 2.5.3
342         * doc/sdccman.lyx: changed version to 2.5.3,
343           documented --codeseg and --constseg and pragma codeseg and constseg,
344           documented bit parameters (reentrant) and bit returning
345         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
346            currFunc->recvSize, but is this ok for all ports?
347           (ast2iCode): result of ~ on unsigned char must be cast to int for
348            bool to work
349         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
350           function pointers in bit space
351         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
352           (processFuncArgs): call port.reg_parm() with reentrancy info
353         * src/port.h,
354         * src/avr/main.c,
355         * src/ds390/main.c,
356         * src/hc08/main.c,
357         * src/pic/main.c,
358         * src/pic16/main.c,
359         * src/xa51/main.c,
360         * src/z80/main.c: port.reg_parm prototype extended with
361           "bool reentrant" parameter
362         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
363           options.stackAuto for allocating bit register parameters
364         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
365           (genSend): set BitBankUsed if it is,
366           (selectRegBank): factored out of genCall for use in genPcall,
367           (genCall): removed redundant dtype assignmen, use selectRegBank,
368           (genPcall): handle returning in Carry properly, save in F0 if needed,
369           (genReceive): handle bit register parameters
370         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
371           (mcs51_assignRegisters): enable bit registers for all reentrant
372            functions and don't set BitBankUsed unconditionally
373         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
374         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
375         * support/regression/tests/funptrs.c: added tests for BOOL and for return
376
377 2005-08-27 Borut Razem <borut.razem AT siol.net>
378
379         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
380         ppc-osx (Darwin) does not support -u option. It seems that it is
381         supported only on Linux - GNU cp
382
383 2005-08-25 Borut Razem <borut.razem AT siol.net>
384
385         * sim/ucsim/gui.src/serio.src/Makefile.in,
386           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
387           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
388           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
389           install and strip, since the strip at /usr/ccs/bin should be used
390           on solaris
391
392 2005-08-24 Borut Razem <borut.razem AT siol.net>
393
394         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
395
396 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
397
398         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
399         ffffffffu
400
401 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
402
403         * as/mcs51/aslink.h: completed lkrloc.c prototypes
404         * as/mcs51/lkmain.c (link_main): fixed warning
405         * device/include/stdbool.h: ds390 has no advanced bit support yet
406         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
407         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
408         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
409           and updated their macros
410         * src/SDCCval.c (constVal): updated comment for renamed b_long
411
412 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
413
414         * as/mcs51/asdata.c: changed ctype['['] to BINOP
415         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
416           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
417           (oprio): set priority for '['
418         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
419            and adb_24_bit
420         * as/mcs51/asm.h: added defines R_BIT and S_BIT
421         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
422         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
423         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
424           added overlayable BIT_BANK area
425         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
426           (summary2): explain 'T' in legenda
427         * as/mcs51/lkrloc.c: replaced old K&R style,
428           (relr): added R_BIT processing,
429           (errmsg): added "Bit-addressable relocation error",
430           (adb_bit): added for converting from byte- to bit-addressable space,
431           (adb_24_bit): added for converting from byte- to bit-addressable space
432         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
433            used in reentrant functions now even as return value
434         * device/lib/_gptrput.c (_gptrput): removed obsolete code
435         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
436           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
437         * src/SDCCglobl.h: added indicator BitBankUsed
438         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
439            the bit registers b0-b7
440         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
441           (geniCodeCast): fixed bug 1263853,
442           (geniCodeLogicAndOr): put result in bool or char,
443           (geniCodeReceive): added parameter func for accessing the return type,
444           (geniCodeFunctionBody): pass func to geniCodeReceive
445         * src/SDCCmain.c: added indicator BitBankUsed
446         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
447         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
448           (checkSClass): don't put automatic bool/bit on stack,
449           (checkFunction): removed check on function cannot return bit
450         * src/SDCCsymt.h: added newBoolLink prototype
451         * src/mcs51/gen.c (rb1regs): added bit registers,
452           (movc): created for assigning to carry,
453           (pushReg, popReg): created for pushing registers,
454           (sameRegs): check both AOP_REG and AOP_CRY types,
455           (aopOp): handle bit registers,
456           (aopPut): optimization no self-assign,
457           (saveRegisters): push reg->base (bits) only once for bit registers,
458            and use pushReg,
459           (unsaveRegisters): pop reg->base only once and use popReg,
460           (assignResultValue): added parameter func and return in carry for bits,
461           (genIpush): optimization no reload in A if not changed,
462           (genSend): bit parameters in reentrant functions are passed in bit
463            registers by first assigning to bits in B, then save registers and
464            copy B to bits,
465           (genCall): handle returning in Carry properly, save it in F0 if needed,
466           (genPcall): updated assignResultValue call, this is not safe yet for bit
467            returning function !!!
468           (genFunction): don't generate equ's for bit registers and use pushReg,
469           (genEndFunction): take care of bit returning functions and use popReg,
470           (genRet): return bit in Carry,
471           (genIfx): optimize bit registers and other directly addressable bits,
472           (genReceive): updated assignResultValue call
473         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
474           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
475            registers when using stack-auto
476         * src/mcs51/ralloc.c (_G): added allBitregs,
477           (regs8051): added the bit registers,
478           (createStackSpil): use macro IS_BIT,
479           (getRegBit): added to allocate a bit register, else spill,
480           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
481           (updateRegUsage): factored out to ease stepping while debugging,
482           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
483            also allocate bit registers,
484           (fillGaps): handle bit registers,
485           (findAllBitregs): added to create bit vector with all bit registers,
486           (mcs51_allBitregs): returns this bit vector,
487           (mcs51_assignRegisters): when using stack-auto use bit registers for
488            passing parameters and creating local variables
489         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
490
491 2005-08-22 Borut Razem <borut.razem AT siol.net>
492
493         * device/lib/Makefile.in: replaced find option -or with -o
494           to make it run on solaris
495
496 2005-08-22 Raphael Neider <rneider AT web.de>
497
498         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
499           fixes #1265442 (crash on Solaris)
500
501 2005-08-20 Borut Razem <borut.razem AT siol.net>
502
503         * configure, configure.in: added tests for libsocket and libnsl libraries,
504           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
505           from support/regression/Makefile.in
506         * support/regression/Makefile.in: added
507         * device/lib/pic16/Makefile.common.in: force make to use bash shell
508         * sim/ucsim/libtool: regenerated on sparc-solaris
509         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
510           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
511           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
512           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
513           sparc-solaris, which doesn't use GNU ld linker
514         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
515         * as/Makefile: find on sparc-solaris does not support -maxdepth option
516
517 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
518
519         * src/mcs51/peeph.def: updated comments
520
521 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
522
523         * device/lib/_gptrget.c,
524         * device/lib/_gptrput.c: slightly shorter
525         * doc/sdccman.lyx: incremented version
526         * src/mcs51/peeph.def: moved peephole comments to the line of first
527           change to better keep line correlation, reanimated 186.e
528         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
529
530 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
531
532         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
533           David Saxton with quotes around file name.
534
535 2005-08-15 Borut Razem <borut.razem AT siol.net>
536
537         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
538           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
539           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
540           make tests run on x86_64 platform
541
542 2005-08-13 Raphael Neider <rneider AT web.de>
543
544         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
545           as it might be executed DURING a build (parallel make is wonderful)
546
547 2005-08-13 Raphael Neider <rneider AT web.de>
548
549         * device/lib/Makefile.in (port-specific-objects-pic16):
550           revert to cp $(PORT)/bin/*.* $(PORTDIR)
551         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
552           dependency
553         * device/lib/pic16/Makefile.rules: build subdirs before creating
554           the library, removed builddir rule, create $(builddir) early in
555           recurse rule, use empty recurse rule for leaf directories
556         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
557           mkdir errors (race condition), removed duplicate suffix "hex"
558           from clean rules
559         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
560         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
561           prevents mkdir -p from aborting on Alpha
562
563 2005-08-12 Raphael Neider <rneider AT web.de>
564
565         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
566           db-statements in order to allow for arrays of pointers in code
567           sections to be placed without interspersed 0-padding, fixes
568           bug #1256215
569         * (emitStatistics): fixed division by zero for pic18f1220
570         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
571           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
572         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
573         * (pic16_pCodeConstString): keep track of already emitted string
574           literals to prevent "duplicate definitions of symbol _str_NR"
575         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
576           debug message
577         * device/lib/Makefile.in: ignore failing PIC16 library builds
578         * device/lib/pic16/Makefile: do not build if gputils are missing
579         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
580
581 2005-08-10 Raphael Neider <rneider AT web.de>
582
583         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
584           my last commit)
585
586 2005-08-10 Raphael Neider <rneider AT web.de>
587
588         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
589           Rokas' patch to add the new fixed point type "__fixed16x16"
590         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
591           functions for __fixed16x16 arithmetics
592         * device/lib/pic16: reimplemented the build system to support
593           a separate build directory, better handling of libio (create
594           the library in a separate subdir for each architecture) and
595           easier configuration (centralized in Makefile.common)
596
597 2005-08-07 Raphael Neider <rneider AT web.de>
598
599         * src/pic16/gen.c (genrshTwo): fixed sign extension
600         * src/pic16/device.c: added pic18f2320, 4220 and 4320
601         * device/include/pic16/pic18f2220.h: changed some bit definitions,
602           added T0CONbits
603         * device/include/pic16/pic18f4220.h: NEW, header for
604           pic18f4220 and pic18f4320
605         * device/include/pic16/pic18fregs.h: added new devices,
606           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
607         * device/include/pic16/signal.h: resolved name clashes
608           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
609           to also allow testing for interrupt enable bits, added
610           comments on how to use the macros
611         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
612         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
613           register definitions for the devices
614         * device/lib/pic16/pics.all: added new devices
615         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
616           allocated memory
617         * device/lib/pic16/libc/stdlib/memfree: do not count
618           the block header as free memory
619         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
620           simplified and added missing end-of-blocklist-marker
621           (reported by Peter Onion, fixes #1252814)
622         * (_mergeHeapBlock): fixed loop condition
623         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
624           len==0, restructured code
625         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
626           up a bit, reduced bitfield accesses, prevent endless loops
627           in case of heap corruption
628         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
629           "unreferenced arguments/must return a value" warnings
630         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
631           replaced BAUDREG with SPBRG
632         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
633           device/lib/pic16/debug/gstack/gstack.c: replaced
634           _naked, _asm, _endasm with __naked, __asm, __endasm
635
636 2005-08-05 Raphael Neider <rneider AT web.de>
637
638         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
639           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
640
641 2005-08-05 Borut Razem <borut.razem AT siol.net>
642
643         * device/lib/Makefile.in: added missing ';'
644         * configure: removed ^M characters
645
646 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
647
648         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
649           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
650           License
651
652 2005-08-04 Borut Razem <borut.razem AT siol.net>
653
654         * configure.in: pic16 libraries build 2nd try - enable running
655           configure in device/lib/pic16
656         * configure: regenerated from configure.in
657         * device/lib/Makefile.in: create $(PORT)/bin directory
658
659 2005-08-03 Raphael Neider <rneider AT web.de>
660
661         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
662           to get/set values via pointers
663         * (genUnpackBits,genPackBits): changed detection of
664           ptr->bitfield vs. sym.bitfield, fixed access via generic
665           pointers, removed dead (wrong) code for multibyte bitfields
666         * (genNearPointerGet, genGenPointerGet): removed useless code,
667           fixed bitfield detection, fixes #1250594
668         * (genNearPointerSet): removed useless code
669         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
670           and introduced macro pic16_emitpcode that conditionally emits
671           the origin of the following pCode (useful for debugging SDCC)
672         * src/pic16/pcode.c: changed (and disabled) some debug outputs
673         * (createDefmap): fixed handling of LFSR for --optimize-df
674
675 2005-08-02 Borut Razem <borut.razem AT siol.net>
676
677         * device/lib/Makefile.in: pic16 libraries build enabled since
678           gputils-0.13.2 are now localy installed at sourceforge's compile farm
679
680 2005-08-02 Raphael Neider <rneider AT web.de>
681
682         * src/pic16/gen.c (genPackBits): removed deprecated warning
683         * (genGenPointerSet): fixed bitfield detection
684
685 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
686
687         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
688
689 2005-07-31 Raphael Neider <rneider AT web.de>
690
691         * device/lib/pic16/libdev/pic18f458.c,
692           device/include/pic16/pic18f458.h: added missing T0CONbits
693
694 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
695
696         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
697
698 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
699
700         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
701
702 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
703
704         * device/include/mcs51/at89c51ed2.h: added.
705
706 2005-07-23 Raphael Neider <rneider AT web.de>
707
708         * src/pic/gen.h: added emitpcode macro for debugging
709         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
710           and replace by macro adding debug information on demand
711         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
712         * (gencjne): tried to fix; replaced with correct (slower) code
713         * (gen{Unp,P}ackBits): fixed single bit access
714         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
715         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
716           previous instruction
717         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
718           register has to be handled with care (forbidding movement
719           of assignments/uses, removing assignments completely, ...)
720         * (pCodeOptime2pCodes): make use of regIsSpecial
721         * added lots of debugging output (commented out)
722         * src/pic/rallloc.c (deassignLRs): prevent operand registers
723           from being reused as result UNLESS it is known to work
724
725 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
726
727         * support/Util/dbuf.h: include <stddef.h> for size_t
728         * .version: changed to version 2.5.2
729
730 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
731
732         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
733
734 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
735
736         * src/hc08/gen.c (genMinus): fixed bug #1241835,
737           (genModOneByte): removed needless psha/pula
738
739 2005-07-22 Raphael Neider <rneider AT web.de>
740
741         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
742           have PIC14 handled like PIC16, fixes broken pic14 linker calls
743         * src/pic/gen.c (resolveIfx): do not "invent" labels
744         * (genSkipc): changed to positive logic
745         * (genSkipCond): removed as no longer needed
746         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
747           backport from PIC16
748         * (genLeftShift): check operands are in different registers
749         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
750           INCF does not update CARRY...
751         * src/pic/main.c: fixed _linkCmd
752         * src/pic/pcode.c (unlinkpCode): added inactive code
753         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
754           alive (do not assign result and operand overlapping registers)
755
756 2005-07-22 Raphael Neider <rneider AT web.de>
757
758         * src/pic/device.c (dump_sfr): replaced register declaration with
759           call to emitSymbolToFile() to avoid duplicate symbols
760         * (assignRelocatableRegisters): do not declare external symbols
761         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
762           right (take size of type, not etype)
763         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
764         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
765         * (packRegsForAccUse): disabled assignment of WREG as
766           the result reg to prevent occurence of just fixed #1235003,
767           fixes #1242954
768         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
769           symbols (avoids duplicate symbols in .asm file)
770         * (pic14emitRegularMap): use emitSymbolToFile()
771         * src/pic/gen.c (aopOp): fixed spillLocation handling
772         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
773         * (genDataPointerSet): removed unneccessary variables/output
774
775 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
776
777         * as/mcs51/lkarea.c: enlarged codemap for banked memory
778         * device/lib/mcs51/crtbank.asm: added # to 0x0F
779
780 2005-07-21 Raphael Neider <rneider AT web.de>
781
782         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
783           architecture cannot handle them efficiently, fixes bug #1235003
784         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
785           check for empty sets before using them (fixes bug #1232190)
786
787 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
788
789         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
790           (lnksect2): generate warnings for memory overlap
791         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
792           constseg to set the name of these segments so you can instruct the linker
793           to place them in banks
794         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
795         * src/SDCCglobl.h: added MODEL_HUGE to enum,
796           added code_seg and const_seg to options
797         * src/SDCCglue.c (emitMaps): use options.const_seg,
798           (createInterruptVect): put interrupt vectors in segment HOME,
799           (glue): put HOME before static segment and put the main glue in HOME,
800           (glue): use options.code_seg
801         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
802         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
803           these segments so you can instruct the linker to place them in banks
804           (linkEdit): use code_loc for HOME segment which should be the first
805           segment in code memory now
806         * src/SDCCmem.c: fixed more stuff like bug 1238386
807         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
808           (changePointer): don't change function pointers to code pointers for
809           banked functions,
810           (compareType): added exceptional check for banked function pointers
811         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
812         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
813           after static in code memory
814         * src/mcs51/gen.c: added aopLiteralLong prototype,
815           (aopForSym): use getSize for functions,
816           (genCall): generate banked calls over one trampoline __sdcc_banked_call
817           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
818           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
819           the segment,
820           (genPcall): use call for literal function pointers and generate banked
821           calls over the one trampoline so there's only one place for the user to
822           modify according to his/hers hardware,
823           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
824           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
825         * src/mcs51/main.c: added keyword banked,
826           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
827         * support/Util/SDCCerr.c,
828         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
829           needed for passing the bank and address to the trampoline
830         * device/lib/mcs51/crtbank.asm: added for bankswitching
831         * device/lib/mcs51/Makefile: added crtbank
832
833 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
834
835         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
836           for fields at offset 0 of a struct or union as reported
837           on 2005-07-07 in the developer mailing list.
838
839 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
840
841         * src/SDCCmem.c: fixed bug 1238386
842
843 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
844
845         * src/mcs51/peeph.def: added labelrefcounting for peepholes
846           (patch #1144962), added peephole 300, enabled 259.x
847         * doc/sdccman.lyx: removed screenshot and provided link instead
848
849 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
850
851         * doc/sdccman.lyx: added section about debugging with ddd
852         * doc/figures/ddd_example.eps: screenshot of debugging session
853
854 2005-07-04 Raphael Neider <rneider AT web.de>
855
856         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
857           like CODE pointers, fixes #1115683
858         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
859           call, fixes bugs #1232211, #1228110,
860           fixed wrong casts to pCodeFlow from pCodeInstructions
861
862 2005-07-04 Raphael Neider <rneider AT web.de>
863
864         * src/pic/gen.c (popGet): changed assert to allow for
865           bit operands
866         * (popGetAddr): changed signature to provide
867           an additional index, patched all call sites
868         * (genCmpEq): handle literal-like operands correctly
869         * (genAddrOf): added sanity checks on __code/__data pointers
870         * (genAssign): added handling of symbols from __code section
871         * (gencjne): do not generate code for comparisons whose result
872           is neither stored nor used, fixes bug #1171114
873         * (AccLsh, AccRsh): operate on operand instead of WREG
874         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
875           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
876           by known count
877         * rewrote complete shift-by-literal logic, commented unused
878           functions out
879         * (genConstPointerGet): get multiple bytes (if result size > 1),
880           fixed handling of non-immediate addresses
881         * (genPointerGet): handle CODE pointers like CONST pointers
882         * (genpic14Code): insert C-SRC lines as Cource-pCodes
883         * ({aop,op}_isLitLike): NEW, single place to decide whether an
884           operand is to be treated as a literal or not
885         * (mov2w,genPcall,genCmpEq),
886           src/pic/genarith.c: use aop_isLitLike() to decide between
887           literal/register contents
888         * (addSign): added missing offset
889         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
890           only emit comment in debug-mode,
891           use {aop,op}_isLitLike throughout the file
892         * src/pic/glue.c: fix initializers for pointers (work in progress)
893         * src/pic/pcode.c (get_op): honor index on _const symbols
894         * ({reset,dump}pCodeStatistics): NEW, estimate code size
895         * (dumppBlock): added pCode size estimation
896         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
897           check for IS_SYMOP before OP_SYMBOL'ing
898         * fixed indentation, compacted switch-statements
899         * (allocReg): find free register and allocate it instead of
900           allocating new registers all the time
901         * (deassignLRs): prevent POINTER_GET's from being assigned the same
902           registers as its operands (necessary only for multibyte GETs)
903
904 2005-07-01 Raphael Neider <rneider AT web.de>
905
906         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
907           debugging .asm-output macros FENTRY + FEXIT
908         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
909           way... I wonder...
910         * (emitpComment): NEW, printf to pCode
911         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
912           offset handling
913         * (popGetAddr): NEW, variant of popGet to access an immediates
914           high(er) bytes instead of the n'th byte of memory they reference,
915           replaced popGet with popGetAddr where neccessary
916         * (genDataPointerGet): reactivated and fixed implementation
917         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
918           accesses
919         * (genDataPointerSet): fixed multibyte assignments
920         * (genpic14Code): fixed --i-code-in-asm handling
921         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
922         * (genPlus): fixed index-out-of-bounds error
923         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
924         * src/pic/ralloc.c: added debugging output macro FENTRY2
925         * (spillThis): fixed indentation, enbraced for-body for clarity
926         * (rematStr): commented out as now unused
927         * (regTypeNum): commented out special spill case (overwrites
928           arbitrary values)
929         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
930
931 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
932
933         * doc/sdccman.lyx: documented sfr16/sfr32,
934           added example for using storage class with function pointers
935         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
936
937 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
938
939         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
940         * device/lib/_itoa.c,
941         * device/lib/_ltoa.c: optimized codesize
942         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
943           but don't know how to suppress the double warning.
944         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
945         * support/Util/SDCCerr.c,
946         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
947
948 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
949
950         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
951           fixed old K&R prototypes
952         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
953         * device/lib/_gptrget.c,
954         * device/lib/_gptrgetc.c,
955         * device/lib/_gptrput.c: changed versions for new memory indicator values,
956           also new versions for small generic pointers and banked generic pointers
957         * src/port.h: added const_name
958         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
959         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
960         * src/SDCCcse.c (findPrevIc): check all associative operators
961         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
962         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
963         * src/SDCCmem.c: updated comments,
964           set far-space to 0 for pdata, results in optimized code
965         * src/SDCCmem.h: added macro CONST_NAME
966         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
967           moving the info into the highest bits, see also gptrget/gptrput
968         * src/src.dsp: added sdcc.ico to project files
969         * src/avr/gen.c (genCast): fixed bug 0x%d
970         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
971         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
972           relation between ptr_type and DCL_TYPE,
973           (genCast): fixed bug 0x%d
974         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
975           (CODE)" for const_name
976         * src/hc08/gen.c (genCast): fixed bug 0x%d
977         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
978           (hc08_port): added "CONST (CODE)" for const_name
979         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
980           (aopForRemat, adjustArithmeticResult): disconnected direct relation
981           between ptr_type and DCL_TYPE,
982           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
983           operand* and took AOP() inside function so sfr-ness can be checked,
984           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
985           new prototype,
986           (genFunction, genEndFunction): optimized stack setup,
987           (genMinus): optimized for literals with ending zeroes (in bytes),
988           (genCast): fixed bug 0x%d
989         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
990           (mcs51_port): added "CONST (CODE)" for const_name
991         * src/mcs51/peeph.def: made rule 226 more generic
992         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
993         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
994         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
995         * src/z80/main.c (z80_port): added NULL for const_name,
996           (gbz80_port): added NULL for const_name
997         * support/regression/tests/bug663539.c,
998         * support/regression/tests/sfr16.c: new tests
999
1000 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1001
1002         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1003
1004 2005-06-24 Raphael Neider <rneider AT web.de>
1005
1006         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1007           corrected typos...
1008         * device/include/pic16/signal.h: added USBIF
1009           and SIG_USB
1010
1011 2005-06-24 Raphael Neider <rneider AT web.de>
1012
1013         * device/lib/pic16/libdev/pic18f2455.c,
1014           device/include/pic16/pic18f2455.h: NEW
1015         * device/include/pic16/pic18fregs.h,
1016           device/lib/pic16/pics.all,
1017           src/pic16/device.c: added 18f2455
1018         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1019           device/include/pic16/{pic18f[68][567].h,usart.h}:
1020           replaced MULTIPLE_USARTS define with more relaible
1021           compatibility sfrs (for USART access)
1022
1023 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1024
1025         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1026           and the output asm file line is printed on two lines.
1027
1028 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1029
1030         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1031           BGT, BLE, BHI, and BLS instructions
1032         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1033           genCmpEq): removed
1034         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1035           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1036           fixes bug #1216342
1037         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1038
1039 2005-06-15 Raphael Neider <rneider AT web.de>
1040
1041         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1042         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1043         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1044           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1045           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1046
1047 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1048
1049         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1050           Marcel Telka in bug #1215704
1051
1052 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1053
1054         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1055           located in shared memory bank.
1056
1057 2005-05-31 Raphael Neider <rneider AT web.de>
1058
1059         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1060           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1061           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1062
1063 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1064
1065         * device/lib/_strncpy.c: fixed the fix
1066
1067 2005-05-26 Raphael Neider <rneider AT web.de>
1068
1069         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1070           initializers with \0, bug #1208187
1071         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1072           intializers with \0, bug #1208187
1073
1074 2005-05-26 Raphael Neider <rneider AT web.de>
1075
1076         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1077           initializers with \0, bug #1208187
1078         * src/pic16/main.c (_process_pragma): added sanity checks
1079           for stack position and size, emit warnings when appropriate
1080
1081 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * device/lib/_strncpy.c: fixed not filling with \0
1084
1085 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1086
1087         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1088           createFunction),
1089         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1090           compound_statement),
1091         * src/SDCCsymt.h,
1092         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1093
1094 2005-05-24 Raphael Neider <rneider AT web.de>
1095
1096         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1097
1098 2005-05-24 Raphael Neider <rneider AT web.de>
1099
1100         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1101           TRISE definitions, closes bug #1162453
1102
1103 2005-05-22 Raphael Neider <rneider AT web.de>
1104
1105         * src/pic16/main.c (_process_pragma): check for missing
1106           arguments to pragmas code and udata
1107         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1108           consistency fixes to match other headers (thanks to Jim Paris)
1109         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1110
1111 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1112
1113         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1114
1115 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1116
1117         * support/regression/tests/bug1198642.c: new test
1118         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1119         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1120         * support/scripts/resource.h,
1121         * support/scripts/resource.rc,
1122         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1123         * support/scripts/sdcc.ico: added 32x32 icon
1124
1125 2005-05-18 Raphael Neider <rneider AT web.de>
1126
1127         * device/lib/pic16/libdev/pic18f*.c,
1128         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1129           keywords to "__sfr" and "__at (X)"
1130         * device/include/pic16/pic18fregs.h: added pic18f4520
1131         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1132           #1203088 (MPLAB compatibility)
1133
1134 2005-05-17 Raphael Neider <rneider AT web.de>
1135
1136         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1137         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1138         * device/lib/pic16/pics.all: added new devices
1139         * src/pic16/device.c: added support for pic18f4520
1140
1141 2005-05-16 Raphael Neider <rneider AT web.de>
1142         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1143         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1144         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1145           convenience function for bit access
1146
1147 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1148
1149         * device/lib/printf_large.c: fixed bug 1193299
1150         * support/regression/tests/bug1057979.c: added test %3.3s
1151
1152 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1153
1154         * device/include/mcs51/8051.h,
1155         * device/include/mcs51/8052.h: made parseable with lint
1156         * device/include/mcs51/lint.h: added include file for (sp)lint
1157         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1158         * doc/cdbfileformat.lyx,
1159         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1160
1161 2005-05-14 Raphael Neider <rneider AT web.de>
1162
1163         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1164         * device/lib/pic16/libc/stdlib/itoa.c (new)
1165         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1166         * device/lib/pic16/libio/Makefile: exclude subdir according to
1167           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1168         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1169         * src/pic16/gen.c (genFunction): prevent annoying warning
1170         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1171           nameclashes on BeOS
1172         * support/cpp2/cppmain.c (cpp_output_string): new
1173         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1174           fixes bug 1116802
1175
1176 2005-05-13 Borut Razem <borut.razem AT siol.net>
1177
1178         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1179
1180 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1181
1182         * .version: changed to version 2.5.1; back to bleeding edge development
1183
1184 2005-05-11 Borut Razem <borut.razem AT siol.net>
1185
1186         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1187           generate PDF version 1.3 documents
1188
1189 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1190
1191         * .version: changed to version 2.5.0
1192
1193 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1194
1195         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1196
1197 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1198
1199         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1200         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1201         well as many smaller updates.
1202         * .version: changed to version 2.5.0-pre1
1203
1204 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1205
1206         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1207
1208 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * support/regression/tests/bug1185672.c: added
1211         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1212           bug 1185672
1213         * src/mcs51/gen.c (genCall): added comments, made it look safer
1214         * src/mcs51/gen.c (genEndFunction): simplified
1215
1216 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1217
1218         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1219
1220 2005-04-14 Borut Razem <borut.razem AT siol.net>
1221
1222         * fixed bug 1045046 - SIGSEGV with really simple code?:
1223           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1224           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1225
1226 2005-04-14 Borut Razem <borut.razem AT siol.net>
1227
1228         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1229           src/pic16/device.h: temporarily disabled experimental #inline pragma
1230           for 2.5.0 release
1231
1232 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * device/include/z80/stdio.h,
1235         * device/include/z80/string.h: removed these highly incomplete files so
1236           SDCC can use the default ones in device/include/
1237
1238 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1239
1240         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1241         gcc warning.
1242         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1243         fix sdcpp warnings.
1244
1245 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1246
1247         * device/include/malloc.h: removed redundant __reentrant prototypes
1248         * device/lib/_mullong.c: added working xstack variant in asm (C version
1249           doesn't pass regression tests)
1250         * device/lib/bpx.c: used __data and made bpx char for mcs51
1251         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1252           (createFunction): fixed bug with xstackPtr
1253         * src/SDCCcse.c: corrected comments
1254         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1255           (killDeadCode, eBBlockFromiCode): removed unused code
1256         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1257           corrected comments
1258         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1259           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1260           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1261           (genModOneByte): fixed warning in MSVC
1262         * src/mcs51/main.c (): added comments
1263         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1264
1265 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1266
1267         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1268
1269 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1270
1271         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1272
1273 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1274
1275         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1276         characters arrays of larger size than the declared one.
1277
1278 2005-04-10 Borut Razem <borut.razem AT siol.net>
1279
1280         * src/pic/gen.c (genInline),
1281           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1282           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1283           (findNextInstruction), (findPrevInstruction),
1284           (findInstructionUsingLabel),
1285           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1286         * src/pic/pcode.c (findLabel): added missing '\n'
1287         * src/src.dsp: added SDCCdwarf2.c to the project
1288
1289 2005-04-09 Borut Razem <borut.razem AT siol.net>
1290
1291         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1292
1293 2005-04-08 Raphael Neider <rneider AT web.de>
1294
1295         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1296           into the chain after a given one) and mergeDefmapSymbols (combine
1297           defmap entries for each symbol per pcode)
1298         * (createDefmap): have defmap entries merged in the end
1299         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1300           a symbol before replacing one access type's symbol, merge symbols in
1301           the end (replacement symbol might already have an entry)
1302         * (assignValnums): keep reference to written WREG intact
1303
1304 2005-04-08 Raphael Neider <rneider AT web.de>
1305
1306         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1307           Alpha)
1308
1309 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1310
1311         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1312         bytes
1313
1314 2005-04-07 Raphael Neider <rneider AT web.de>
1315
1316         * device/include/pic16/usart.h: added compatibility defines for
1317           devices with more than one USART
1318         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1319
1320 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1321
1322         * device/lib/Makefile.in: updated for port specific include
1323
1324 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1325
1326         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1327
1328 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1329
1330         * device/include/8051.h,
1331         * device/include/8052.h,
1332         * device/include/at89S8252.h,
1333         * device/include/at89c55.h,
1334         * device/include/at89x051.h,
1335         * device/include/at89x51.h,
1336         * device/include/at89x52.h,
1337         * device/include/mcs51reg.h,
1338         * device/include/reg51.h,
1339         * device/include/reg764.h,
1340         * device/include/regc515c.h,
1341         * device/include/sab80515.h: (re)moved these 12 files
1342         * device/include/mcs51/8051.h,
1343         * device/include/mcs51/8052.h,
1344         * device/include/mcs51/at89S8252.h,
1345         * device/include/mcs51/at89c55.h,
1346         * device/include/mcs51/at89x051.h,
1347         * device/include/mcs51/at89x51.h,
1348         * device/include/mcs51/at89x52.h,
1349         * device/include/mcs51/mcs51reg.h,
1350         * device/include/mcs51/reg51.h,
1351         * device/include/mcs51/reg764.h,
1352         * device/include/mcs51/regc515c.h,
1353         * device/include/mcs51/sab80515.h: and added them here
1354
1355 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1356
1357         * device/include/stdarg.h: changed SDCC specific keywords to double
1358           underlined form.
1359         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1360           mcs51 and ds390.
1361         * device/include/hc08/mc68hc908gp32.h,
1362         * device/include/hc08/mc68hc908jb8.h,
1363         * device/include/hc08/mc68hc908jkjl.h,
1364         * device/include/hc08/mc68hc908qy.h: fixed comments
1365         * device/include/mcs51/README: updated
1366         * device/include/mcs51/c8051f120.h: added PINRSF
1367         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1368         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1369           amidst code. Also inline is not supported.
1370
1371 2005-04-06 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1374         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1375           callers stack/frame pointers
1376
1377 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1378
1379         * device/include/pic16/usart.h: added, missing in previous commit,
1380         * device/include/pic16/adc.h: fixed typo,
1381         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1382         commit,
1383         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1384         <p18fxxx.inc>
1385         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1386         uninitialized because a bug appears with gplink
1387         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1388         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1389         complains for unrecognised option
1390
1391 2005-04-05 Raphael Neider <rneider AT web.de>
1392
1393         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1394           structs as well (using memcpy)
1395         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1396           on ISRs (GOTO has no label)
1397         * src/pic16/device.h: added OF_OPTIMIZE_DF
1398         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1399           new data flow analysis/optimization
1400         * src/pic16/pcode.c: added (prototypes for and implementation of)
1401           dataflow analysis functions, fixed pCodeInstructions' inCond and
1402           outCond values, made RCALL a branch instruction
1403         * (pic16_unlinkpCode): keep C line if possible
1404         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1405           C line moved if possible
1406         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1407         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1408           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1409         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1410           new flow)
1411         * (pic16_getJumptabpCode): NEW, needed in...
1412         * (LinkFlow): fixed handling of jumptables, calls and conditional
1413           branches
1414         * (pic16_InsertCommentAfter): NEW
1415         * (pic16_pCodeReplace): made verbose and flow preserving
1416         * (AnalyzeFlow): added call to data flow analysis
1417         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1418         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1419         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1420
1421 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1422
1423         * src/SDCCast.c (decorateType): fixed bug #1105626
1424
1425 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1426
1427         * device/include/asm/pic16/features.h,
1428         * pic18f*.h headers,
1429         * device/include/pic16/adc.h,
1430         * device/include/pic16/delay.h,
1431         * device/include/pic16/i2c.h,
1432         * device/include/pic16/malloc.h,
1433         * device/include/pic16/stdio.h,
1434         * device/include/pic16/stdlib.h,
1435         * device/include/pic16/string.h,
1436         * device/lib/pic16/libc/stdio/printf_tiny.c,
1437         * device/lib/pic16/libc/stdio/printf_small.c,
1438         * device/lib/pic16/libc/stdio/strmgpsim.c,
1439         * device/lib/pic16/libc/stdio/strmmssp.c,
1440         * device/lib/pic16/libc/stdio/strmusart.c,
1441         * device/lib/pic16/libc/stdio/vfprintf.c,
1442         * device/lib/pic16/libc/stdlib/ltoa.c,
1443         * device/lib/pic16/libc/stdlib/putchar.c,
1444         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1445         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1446         * device/lib/pic16/libc/stdlib/memchrram.c,
1447         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1448         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1449         * device/lib/pic16/libio/adc/adcbusy.c,
1450         * device/lib/pic16/libio/adc/adcread.c,
1451         * device/lib/pic16/libio/adc/adcsetch.c,
1452         * device/lib/pic16/libio/usart/ubaud.c,
1453         * device/lib/pic16/libio/usart/ubusy.c,
1454         * device/lib/pic16/libio/usart/udrdy.c,
1455         * device/lib/pic16/libio/usart/uopen.c,
1456         * device/lib/pic16/libio/usart/uputc.c,
1457         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1458         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1459         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1460         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1461         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1462         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1463         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1464         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1465         specific keywords to double underlined form,
1466         * device/lib/pic16/libc/Makefile.rules,
1467         * device/lib/pic16/libsdcc/Makefile.rules,
1468         * device/lib/pic16/libm/Makefile,
1469         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1470         to compile with C standard set in Makefile.common
1471         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1472         rand.c and crc.c in compilation process,
1473         * device/lib/pic16/libsdcc/int/divuint.c,
1474         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1475         `c' from signed to unsigned,
1476         * device/lib/pic16/startup/crt0.c,
1477         * device/lib/pic16/startup/crt0i.c,
1478         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1479         keywords to double underlined form, bug fixes in _do_cinit function
1480         which prevented the correct initialization of the .idata segment,
1481         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1482         core to enter a infinite loop
1483         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1484
1485 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1486
1487         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1488
1489 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1490
1491         * device/include/Makefile.in: add support for hc08 subdirectory
1492         * device/include/hc08/: new subdirectory
1493         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1494         Lucas Loizaga, thanks!
1495         * device/include/hc08/mc68hc908qy.h,
1496         * device/include/hc08/mc68hc908gp32.h,
1497         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1498         their own directory. Changed internal macro names to use the compiler
1499         reserved namespace. Changed SDCC specific keywords to double
1500         underlined form.
1501         * device/include/math.h,
1502         * device/include/malloc.h,
1503         * device/include/stdarg.h,
1504         * device/include/stdbool.h
1505         * device/include/string.h,
1506         * device/include/tinibios.h,
1507         * device/include/ds400rom.h,
1508         * device/include/8051.h,
1509         * device/include/8052.h,
1510         * device/include/80c51xa.h,
1511         * device/include/at89c55.h,
1512         * device/include/at89S8252.h,
1513         * device/include/at89x51.h,
1514         * device/include/at89x52.h,
1515         * device/include/ds80c390.h,
1516         * device/include/reg764.h,
1517         * device/include/regc515c.h,
1518         * device/include/sab80515.h,
1519         * device/include/mcs51/c8051f000.h,
1520         * device/include/mcs51/c8051f018.h,
1521         * device/include/mcs51/c8051f020.h,
1522         * device/include/mcs51/c8051f040.h,
1523         * device/include/mcs51/c8051f060.h,
1524         * device/include/mcs51/c8051f120.h,
1525         * device/include/mcs51/c8051f300.h,
1526         * device/include/mcs51/c8051f310.h,
1527         * device/include/mcs51/c8051f320.h,
1528         * device/include/mcs51/c8051f330.h,
1529         * device/include/mcs51/c8051f350.h,
1530         * device/include/z180.h: Changed SDCC specific keywords to double
1531         underlined form.
1532
1533 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1534
1535         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1536         18F4455,
1537         * (pic16_assignConfigWordValue): disable testing of configuration
1538         register value with config mask,
1539         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1540         function with port->fun_prefix,
1541         * (genFunction): when generating a naked interrupt function never
1542         create an absolute segment placed in interrupt vector address, place
1543         the actual interrupt function at IVA instead, when an interrupt
1544         function is generated with unspecified interrupt then do not create
1545         the absolute section,
1546         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1547         code for generating a call to generic pointer get/put function with
1548         a call to function pic16_callGenericPointer(),
1549         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1550         the call to the generic pointer get/put functions with prefixing the
1551         function name with port->fun_prefix,
1552         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1553         * src/pic16/main.c (_process_pragma): prefix function with
1554         port->fun_prefix,
1555         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1556         calling assembler, old 18Fxxxx macro is deprecated,
1557         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1558         PC_ASMDIR in while condition,
1559         * (findInstruction): add PC_ASMDIR in while condition,
1560         * (buildCallTree): prefix main with port->fun_prefix,
1561         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1562         identifier for variable with banked access in instructions BTFSS,
1563         BTFSC, BCF, BSF, BTG
1564         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1565         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1566         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1567         perform optimization when enviroment variable NO_REG_OPT is set,
1568         * (insideLRBlock): NEW, return 1 if register is inside an
1569         INF_LOCALREGS block,
1570         * (RemoveRegFromLRBlock): remove a register that is completely
1571         eliminated by register optimization, but it is still left in local
1572         register store/restore in/from stack block,
1573         * (Remove2pcodes): after removing register, check to see if it
1574         should be removed from local register store/restore in/from stack
1575         block,
1576         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1577         DUMMY_READ_VOLATILE,
1578
1579         * device/include/pic16/adc.h: minor prototype modifications and
1580         update,
1581         * device/include/pic16/malloc.h: added GPL notice various
1582         modifications,
1583         * device/include/pic16/stdint.h: NEW, standard header for ints
1584         * device/include/pic16/delay.h: NEW, header for delay functions,
1585         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1586         delay1mtcy,
1587         * device/include/pic16/signal.h: NEW, header providing helper macros
1588         for implementing signal handlers,
1589         * device/include/pic16/stdio.h: added prototypes for functions,
1590         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1591         prototypes for stdin and stdout, added macro PUTCHAR to
1592         automatically implement putchar function prototype,
1593         * device/include/pic16/usart.h: modified and updated USART library,
1594         * device/lib/pic16/libio/adc/,
1595         * device/lib/pic16/libio/i2c: some modifications to improve library
1596         performance,
1597         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1598         family of functions,
1599         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1600         family of functions and other sources,
1601         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1602         of the PIC18Fxx[28] devices,
1603         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1604         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1605         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1606         _do_cinit function, because the previous failed when local variables
1607         where not placed in the same memory bank,
1608         * device/lib/pic16/libsdcc/char/: various modifications to improve
1609         library performance,
1610         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1611         information on the new functions of the c library and more...
1612
1613 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1614
1615         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1616
1617 2005-03-26 Raphael Neider <rneider AT web.de>
1618
1619         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1620           if condition == CARRY)
1621         * (genCmp): adapted to new genSkipc semantics
1622         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1623           on rIfx (genCmp was broken)
1624
1625 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1626
1627         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1628         * src/z80/main.c (_keywords[]),
1629         * src/SDCCglobal.h (struct options),
1630         * src/SDCC.y,
1631         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1632         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1633         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1634         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1635         always available in leading double underscore form. The C99 support is
1636         mostly missing, but it's a start.
1637         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1638         reserved identifier "__data".
1639
1640 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1641
1642         * src/mcs51/peeph.def: fixed bug 1170013
1643
1644 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1645
1646         * device/include/mcs51reg.h: fixed bug 842007
1647
1648 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1649
1650         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1651         last time.
1652
1653 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1654
1655         * src/port.h (struct PORT),
1656         * src/avr/ralloc.c (avr_assignRegisters),
1657         * src/avr/main.c,
1658         * src/ds390/ralloc.c (ds390_assignRegisters),
1659         * src/ds390/main.c,
1660         * src/hc08/ralloc.c (hc08_assignRegisters),
1661         * src/hc08/main.c,
1662         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1663         * src/mcs51/main.c,
1664         * src/pic/ralloc.c (pic14_assignRegisters),
1665         * src/pic/main.c,
1666         * src/pic16/ralloc.c (pic16_assignRegisters),
1667         * src/pic16/main.c,
1668         * src/xa51/ralloc.c (xa51_assignRegisters),
1669         * src/xa51/main.c,
1670         * src/z80/ralloc.c (z80_assignRegisters),
1671         * src/z80/ralloc.h,
1672         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1673         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1674         * src/SDCCcse.h,
1675         * src/SDCCdflow.c (computeDataFlow),
1676         * src/SDCCdflow.h,
1677         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1678         * src/SDCCloop.h,
1679         * src/SDCCcflow.c (*),
1680         * src/SDCCcflow.h,
1681         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1682         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1683         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1684         immedDom() returning wrong block; probably fixes bug #1160833)
1685
1686 2005-03-20 Borut Razem <borut.razem AT siol.net>
1687
1688         * support/scripts/inc2h.pl: WIN32 port
1689
1690 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1691
1692         * device/lib/makefile.in: added abs.c and labs.c
1693
1694 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1695
1696         * device/include/stdint.h: added
1697         * device/lib/abs.c: added
1698         * device/lib/labs.c: added
1699         * device/include/stdlib.h: added abs() and labs() prototypes
1700         * device/lib/libsdcc.lib: added abs and labs
1701         * device/include/float.h,
1702         * device/lib/_fsmul.c,
1703         * device/lib/printf_fast.c,
1704         * device/lib/printf_tiny.c: updated comments
1705
1706 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1707
1708         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1709         bug #1164313
1710
1711 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1712
1713         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1714         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1715
1716 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1717
1718         * device/lib/printf_large.c: removed inline assembly for portability and
1719           readability. Use printf_fast if speed or size are more important.
1720         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1721         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1722
1723 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1724
1725         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1726         prevent compiler warning
1727
1728 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1729
1730         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1731         moved to level 0 and declared as static. Also they are explicit
1732         placed in access bank. This was necessery because some times they
1733         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1734         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1735         optimizations. Currently only compare to unsigned char is implemented,
1736         * src/pic16/gen.c: added fReturnIdx array,
1737         * (struct resolvedIfx) is moved to gen.h and made public,
1738         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1739         * (aopForSym): added an optimization to directly store in stack of
1740         the operand of a SEND iCode,
1741         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1742         but as registers instead (AOP_REG) using the fReturnIdx array,
1743         * (pic16_freeAsmop): remove the freed register from the
1744         _G.sregsAlloc field,
1745         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1746         a compare of 'WREG',
1747         * (pic16_popGetTempRegCond): changed function prototype, now
1748         function takes also a bitVector argument v which holds the current
1749         set of registers that are allocated for stack access by aopForSym,
1750         registers allocated in aopForSym for accessing stack symbols are not
1751         any more part of the functions usedRegs field,
1752         * (genCall): some times aopOp is called for a stack variable to be
1753         send, aopForSym might perform the push, if this is true make sure
1754         that genCall doesn't push the variable twice by testing _G.resDirect,
1755         * (genFunction): changed testing for unspecified interrupt number
1756         from 256 to INTNO_UNSPEC,
1757         * modified selection scheme of frame pointer generation. Previously
1758         if function did use local registers a frame pointer was generated,
1759         now a frame pointer is generated only if function has arguments
1760         (that need PLUSW2 register access), or has stack arguments, or the
1761         compiler is not instructed to omit the frame pointer,
1762         * (genEndFunction): before restoring local registers that were saved
1763         in the function preamble, also restore the registers that *might*
1764         have been allocated for stack access,
1765         * (genRet): removed some old comments,
1766         * (genCmp, the active (RN's) version): added a call to the
1767         pic16_genCmp_special function to perform the compare with a more
1768         robust and optimized way,
1769         * (genInline): a feature has been added in inline code generation,
1770         which allows a wildcard variable substitution when writing inline
1771         assembly. Code is incomplete and experimental therefore undocumented,
1772         * (genCast): changed order of aopOp for result and right to allow
1773         aopForSym to directly load the result if possible,
1774         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1775         perform an optimized compare on some selected special occasions,
1776         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1777         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1778         generate an IVT any more,
1779         * src/pic16/main.c (pic16_optionsTable): added command line option
1780         --optimize-cmp,
1781         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1782         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1783         macros,
1784         * src/pic16/NOTES: Raphael Neider added in list of active developers
1785         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1786         jumptable_end to prevent bug #,
1787         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1788         inCond and outCond fields,
1789         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1790         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1791         turn off register spilling,
1792         * (packRegsForOneUse): synced with other ports' versions although it
1793         is not used currently,
1794         * (pic16_packRegisters): added an optimization while reading
1795         structure bitfields, some registers may be saved (malloc code is
1796         decreased by 80 bytes)
1797
1798 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1799
1800         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1801         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1802         this can be optimized more?
1803
1804 2005-03-10 Raphael Neider <rneider AT web.de>
1805
1806         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1807           genNearPointerGet): (hopefully) fixed access to bitfields via
1808           pointers (p->bitN = x; and x = p->bitN; failed)
1809
1810 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1811
1812         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1813
1814 2005-03-09 Raphael Neider <rneider AT web.de>
1815
1816         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1817
1818 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1819
1820         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1821         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1822           (regTypeNum): set REG_BIT type if necessary
1823         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1824         * support/regression/tests/critical.c: check bug 1144613
1825
1826 2005-03-02 Raphael Neider <rneider AT web.de>
1827
1828         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1829
1830 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1831
1832         * src/avr/ralloc.c (serialRegAssign),
1833         * src/ds390/ralloc.c (serialRegAssign),
1834         * src/hc08/ralloc.c (serialRegAssign),
1835         * src/mcs51/ralloc.c (serialRegAssign),
1836         * src/pic/ralloc.c (serialRegAssign),
1837         * src/pic16/ralloc.c (serialRegAssign),
1838         * src/xa51/ralloc.c (serialRegAssign),
1839         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1840
1841 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1842
1843         * src/SDCCast.c (decorateType): fixed bug 1124787
1844
1845 2005-02-20 Hubert Sack <sack AT digiplan.de>
1846         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1847
1848         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1849         patch #1121755
1850
1851 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1852
1853         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1854         to keep the correct label reference count when adding/removing references
1855         to labels. A peephole file using this is appended to patch #1144962.
1856
1857 2005-02-14 Raphael Neider <rneider AT web.de>
1858
1859         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1860         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1861         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1862           retrievals of result operand's value on assignment
1863
1864 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1865
1866         * device/include/pic16/string.h: modified prototype for memccpy()
1867         to memccpy(void *, void *, char, size_t)
1868         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1869         check whether to omit frame pointer or not,
1870         * (genInline): convert all occurences of "\n" to LF in inline
1871         assembler blocks, this helps formatting the inline text,
1872         * (pic16_loadFSR0): modified prototype,
1873         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1874         removed some 8051 legacy code,
1875         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1876         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1877         before allocating temporary registers in functions,
1878
1879 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1880
1881         * support/regression/tests/bitvars.c: corrected the "fix"
1882
1883 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1884
1885         * support/regression/tests/bitvars.c,
1886         * support/regression/tests/bitwise.c,
1887         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1888
1889 2005-02-10 Raphael Neider <rneider AT web.de>
1890
1891         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1892           different size for Alpha
1893         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1894
1895 2005-02-09 Raphael Neider <rneider AT web.de>
1896
1897         * src/SDCC.lex(doPragma) : save and restore warning options as well
1898           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1899         * have #pragma less_pedantic set the errorlevel to WARNING
1900           (fixes #1117001)
1901         * (cloneOptimize) : fixed wrong malloc's size
1902         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1903           facilitate correct handling of #pragma (save|restore)
1904
1905 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1906
1907         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1908
1909 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1910
1911         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1912
1913 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1914
1915         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1916
1917 2005-02-02 Raphael Neider <rneider AT web.de>
1918
1919         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1920         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1921         * (pic16_storeForReturn): fixed to allow returning function pointers
1922         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1923         * device/include/pic16/{stddef.h,stdbool.h}: added
1924
1925 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1926
1927         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1928
1929 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1930
1931         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1932         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1933          appeared to be required
1934
1935 2005-01-31 Borut Razem <borut.razem AT siol.net>
1936
1937         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1938           include/mcs51 and include/z80 directories to the package
1939
1940 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1941
1942         * src/hc08/gen.c (genFunction): fixed bug #1112752
1943
1944 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1945
1946         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1947
1948 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1949
1950         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1951
1952 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1953
1954         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1955
1956 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1957
1958         * device/include/c8051fxxx.h: removed these 6 files
1959         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1960
1961 2005-01-26 Raphael Neider <rneider AT web.de>
1962
1963         * src/pic16/gen.c (genAssign): fixed assignment from longs
1964           in codespace (were cut to three bytes)
1965         * (genDummyRead): implemented (except for CODESPACE...),
1966           fixed bug #1108575
1967         * src/pic16/glue.c (emitStatistics): beautified
1968         * device/lib/pic16/libm/Makefile: added include path
1969
1970 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1971
1972         * src/z80/gen.c (aopPut): fixed bug #1103902
1973
1974 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1975
1976         * device/lib/expf.c: fixed bug #1095792
1977
1978 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1979
1980         * device/lib/pic16/libm: added Math library sources
1981
1982 2005-01-24 Raphael Neider <rneider AT web.de>
1983
1984         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1985           to enable upcast to pCodeOpReg2 (there is no type tag to
1986           differenciate the two and pic16_popGet2p cast into PCOR2)
1987         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1988           (sizeof(sectNames) changed to sizeof(sectName))
1989           Both patches fix segfaults under MinGW.
1990
1991 2005-01-23 Raphael Neider <rneider AT web.de>
1992
1993         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1994           Safe_[mc]?alloc()'ed variables
1995         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1996           of (byte sized) temporaries (assign them to WREG for now)
1997         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1998           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1999           this might fix SIGSEGVs on MinGW...
2000         * src/SDCCopt.c (killDeadCode): restored original behaviour
2001           (volatile operands might get thrown away though)
2002
2003 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2004
2005         * src/pic16/gen.c: fixed bug #1106975,
2006         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2007         pointer update, INTCON is saved, global interrupts are disabled and
2008         restored after updateing TOS.
2009         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2010         * added function attribute 'shadowregs' to take advantage of shadow
2011         registers,
2012         * added function attribute 'wparam' as an alternative to the wparam
2013         pragma,
2014         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2015         user declares a non-ISR function as 'shadowregs',
2016         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2017
2018 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2019
2020         * .version: bumped version number to 2.4.8
2021         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2022         pic16 port,
2023         * device/lib/pic16/libio/i2c/: I2C module support library,
2024         * device/include/pic16/i2c.h: I2C support library header,
2025         * device/lib/pic16/libc/stdio/: standard IO support sources,
2026         * (printf_small.c): printf_small() source, supports float print,
2027         * (printf_tiny.c): printf_tiny() source, does not support floats,
2028         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2029         enable global optimizations for entire library source, other
2030         Makefiles in the source tree are also modified to reflect this,
2031         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2032         function,
2033         * doc/sdccman.lyx: updated to reflect new changes,
2034         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2035         sym->onStack if-case,
2036         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2037         sbit, idata, _idata, xdata, _xdata,
2038         * added pragma library, to link an external library, (see doc),
2039         * removed command line options, --pomit-config-words, --pomit-ivt,
2040         --pleave-reset-vector,
2041         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2042         when calling assembler to reflect memory model used, also define
2043         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2044         reflect stack model used,
2045         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2046         on stack return NULL,
2047
2048 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2049
2050         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2051           of the operands is volatile. Fixes #1020220
2052
2053 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2054
2055         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2056         * (OptimizeRegUsage): make sure that there is really no other flow where
2057           the first pCode is used
2058
2059 2005-01-22 Raphael Neider <rneider AT web.de>
2060
2061         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2062           to fix #1106967 (pCode->seq are not set up correctly)
2063
2064 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2065
2066         * src/SDCCglue.c (glue): make sure code area is declared before the
2067         static initialization area.
2068
2069 2005-01-21 Raphael Neider <rneider AT web.de>
2070
2071         * device/lib/Makefile.in: fixed test for pic16 install dir
2072         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2073           optimizations
2074         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2075           added --optimize-goto compiler switch and pragma wparam documentation
2076         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2077         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2078           and PRODH closing bug #1071770 (peephole optimizer)
2079
2080 2005-01-19 Raphael Neider <rneider AT web.de>
2081
2082         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2083           cmdLine buffers (used when calling sdcpp...) are large enough
2084           (MAX_PATH=256 truncates arguments leading to system halts when
2085           used in MinGW...)
2086         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2087         * (genUminus): rewritten to for efficiency
2088         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2089           used uninitialized in some cases)
2090         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2091           copy the third byte from the int -- now assumes 0x80 (data memory)
2092         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2093           operands (genAddLit expects the iCode's operands to swapped as
2094           well), fixed leftover bytes (crashed for short left operands)
2095         * (pic16_genMinusDec): performance improvements, removed false
2096           PIC14 emitSKPNCs
2097         * (pic16_genMinus): fixed to cope with differently sized operands
2098         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2099           for --obanksel > 1
2100         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2101         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2102           new banksel optimization
2103         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2104           analysis for temporary registers (segfaults...)
2105         * src/pic16/peeph.def: added rule
2106
2107 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2108
2109         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2110         which converts a float number to its ASCII representation
2111         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2112         functions to convert the fractional and integer part of a float to ASCII,
2113         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2114         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2115         ram
2116         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2117         _STATMEM macros,
2118         * device/include/pic16/adc.h: added GPL info,
2119         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2120         a pCodeOp as tested operand,
2121         * (genNearPointerGet): optimized bit testing, does not use
2122         intermediate register for bit value, test directly instead with
2123         BTFSS, BTFSC, works only for single bits,
2124         * (genpic16Code): dump the name of the iCode in the asm,
2125         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2126         renamed to pic16_decodeOp,
2127         * (serialRegAssign): do not allocate a temporary register for iCode
2128         sequences that test a single bit for 1/0
2129
2130 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2131
2132         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2133         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2134         access stack and frame pointers. They are initially assigned to
2135         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2136         accessing SFRs. Updated all occurences of modification of stack or
2137         frame pointer in gen.c and pcode.c,
2138         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2139         assigning of a literal value to pointers,
2140         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2141         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2142         selected
2143
2144 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2145
2146         * doc/sdccman.lyx: update documentation about stack pragma, added
2147         some info for stack memory models
2148
2149 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2150
2151         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2152
2153 2005-01-08 Raphael Neider <rneider AT web.de>
2154
2155         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2156           udata sections to fix bug #1097823
2157
2158 2005-01-05 Raphael Neider <rneider AT web.de>
2159
2160         * src/pic16/gen.c (genGenericShift): added handling of differently
2161           sized left operand and result
2162
2163 2005-01-04 Raphael Neider <rneider AT web.de>
2164
2165         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2166         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2167           to hold the condition bit)
2168         * added new version of genCmp (old code available via #define)
2169         * added new version of genShiftLeft/genShiftRight in a generic
2170           way, now supports shifting by negative values
2171         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2172           shiftCount (expected by genGenericShift)
2173         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2174         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2175           dump
2176         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2177           is an invalid literal too...)
2178
2179 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2180
2181         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2182         from Raphael Neider,
2183         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2184         for 8-bit literals. This fixes some literal operands which are sign
2185         extended to 16-bits ints when instruction needs only 8-bits.
2186
2187 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2188
2189         * device/lib/logf.c: added mcs51 assembly version
2190         * device/lib/expf.c: added mcs51 assembly version
2191         * device/lib/_logexpf.c: new shared asm code for expf and logf
2192         * device/include/math.h: add defines for assembly math library
2193         * device/lib/Makefile.in: build new _logexpf.c
2194         * device/lib/libfloat.lib: use new _logexpf.c
2195
2196 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2197
2198         * src/pic/device.c
2199         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2200           device types which have less than 0x7f registers.
2201
2202 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2203
2204         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2205
2206 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2207
2208         * device/lib/printf_fast.c: only build on supported arch.
2209         * device/lib/printf_tiny.c: only build on supported arch.
2210         * device/lib/printf_fast_f.c: only build if asm float lib
2211         * device/lib/_fsget1arg.c: only build if asm float lib
2212         * device/lib/_fsget2args.c: only build if asm float lib
2213         * device/lib/_fsnormalize.c: only build if asm float lib
2214         * device/lib/_fsreturnval.c: only build if asm float lib
2215         * device/lib/_fsrshift.c: only build if asm float lib
2216         * device/lib/_fsswapargs.c: only build if asm float lib
2217         * device/include/stdio.h: don't provide print_fast,
2218           print_fast_f, print_tiny prototypes if --xstack used
2219
2220 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2221
2222         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2223         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2224           to the SOURCES
2225
2226 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2227
2228         * device/lib/printf_fast_f.c: same as printf_fast, but
2229           with floating point enabled
2230         * device/lib/printf_fast.c: minor tweaks
2231         * device/include/stdio.h: add printf_fast_f
2232
2233 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2234
2235         * src/SDCCmain.c: make --float-reent default for mcs51
2236         * device/lib/_fsadd.c: added mcs51 assembly version
2237         * device/lib/_fssub.c: added mcs51 assembly version
2238         * device/lib/_fsmul.c: added mcs51 assembly version
2239         * device/lib/_fsdiv.c: added mcs51 assembly version
2240         * device/lib/_fseq.c: added mcs51 assembly version
2241         * device/lib/_fsneq.c: added mcs51 assembly version
2242         * device/lib/_fsgt.c: added mcs51 assembly version
2243         * device/lib/_fslt.c: added mcs51 assembly version
2244         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2245         * device/lib/Makefile.in: add _fscmp to build
2246         * device/lib/libfloat.lib: add _fscmp to build
2247
2248 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2249
2250         * device/lib/_fs2slong.c: added mcs51 assembly version
2251         * device/lib/_fs2sint.c: added mcs51 assembly version
2252         * device/lib/_fs2schar.c: added mcs51 assembly version
2253         * device/lib/_fs2ulong.c: added mcs51 assembly version
2254         * device/lib/_fs2uint.c: added mcs51 assembly version
2255         * device/lib/_fs2uchar.c: added mcs51 assembly version
2256         * device/lib/_slong2fs.c: added mcs51 assembly version
2257         * device/lib/_sint2fs.c: added mcs51 assembly version
2258         * device/lib/_schar2fs.c: added mcs51 assembly version
2259         * device/lib/_ulong2fs.c: added mcs51 assembly version
2260         * device/lib/_uint2fs.c: added mcs51 assembly version
2261         * device/lib/_uchar2fs.c: added mcs51 assembly version
2262         * device/include/float.h: added #define to select asm vs c
2263
2264 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2265
2266         * device/lib/printf_fast.c: improvements to float output
2267         * device/include/float.h: add defines for assembly float library
2268         * device/lib/_fsget1arg.c: receive 1 float arg
2269         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2270         * device/lib/_fsnormalize.c: normalize a float
2271         * device/lib/_fsreturnval.c: return float, various helper routines
2272         * device/lib/_fsrshift.c: right shift a float's mantissa
2273         * device/lib/_fsswapargs.c: swap 2 floats
2274         * device/lib/Makefile.in: build these 6 new files for mcs51
2275         * device/lib/libfloat.lib: add these 6 files to the library
2276
2277 2004-12-26 Borut Razem <borut.razem AT siol.net>
2278
2279         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2280           built by gcc 3.4.2
2281
2282 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2283
2284         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2285           and fully reentrant and register bank neutral.
2286         * device/lib/printf_fast.c: added float (not enabled by default),
2287           added compact/slower integer (also not enabled by default),
2288           improved size/speed of fast integer code, other minor changes
2289         * device/include/stdio.h, device/lib/Makefile.in,
2290           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2291
2292 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2293
2294         * src/pic16/pcode.c: declaring variables other than at the start of a
2295           block is not supported in C by VC6.
2296
2297 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2298
2299         * applied a previous patch from Raphael Neider that wasn't included
2300         in the previous commits, which fixes infinite loops within jumptable
2301         improvements,
2302         * made some fixes that previous patches introduced
2303
2304 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2305
2306         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2307         that fixes an issue with AOP_PCODE asmop's offset,
2308         * (pic16_popCopyReg): update instance field too,
2309         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2310         function of pic port,
2311         * (genCmp, genAnd, genAssign),
2312         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2313
2314 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2315
2316         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2317         variables initial values to idata section,
2318         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2319         variables in some functions. This utilizes parmBytes field of iCode
2320         structure to hold the offset of the variable in stack. (might be
2321         able to use the stack field too?)
2322         * applied patch from Raphael Neider # ### , # ###
2323         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2324         variable initial values in idata section,
2325         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2326         for static variables with initial value
2327         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2328         applied fix in while loop from Raphael Neider.
2329
2330 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2331
2332         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2333         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2334         * src/ds390/ralloc.c (serialRegAssign): spill bits
2335         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2336         * support/Util/SDCCerr.c,
2337         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2338         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2339         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2340
2341 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2342
2343         * device/include/sdcc-lib.h: inserted LGPL, added includes
2344           asm/ds390/features.h and asm/mcs51/features.h
2345         * device/include/asm/default/features.h,
2346         * device/include/asm/gbz80/features.h,
2347         * device/include/asm/z80/features.h: added empty _AUTOMEM
2348           and _STATMEM
2349         * device/include/asm/ds390/features.h,
2350         * device/include/asm/mcs51/features.h: added files with defines for
2351           _AUTOMEM and _STATMEM indicating automatic and static storage class
2352         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2353         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2354         * src/SDCCicode.c (geniCodeCast),
2355         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2356         * src/SDCCloop.c (loopInduction): removed unused variable lr
2357         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2358           to convertToFcall to include char modulo (RFE 1065037), added check
2359           if left operand is unsigned and use abs of literal value
2360         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2361           as it doesn't work after conversion from peephole.def to peephole.rul
2362         * src/mcs51/gen.c (toBoolean): added check for size,
2363           (genModOneByte): optimized code for signed char modulo a literal
2364           power of 2 (thanks to Hubert Sack),
2365           (genRRC): removed unnecessary "clr c",
2366           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2367         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2368           jump optimization,
2369           swapped rules 256.c and 256.d,
2370           extended 256.d by using new multiple checks (thanks Erik),
2371           added rules 256.e and 256.f,
2372           updated rule 261.a and 261.b to new generated code
2373         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2374
2375 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2376
2377         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2378           induction related bugs, including first part of bug #1074377
2379
2380 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2381
2382         * applied patch from bug-report #1076292,
2383         * applied patches for genAnd and Goto-optimizations for Raphael
2384         Neider,
2385         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2386         dump a less iCode information,
2387         * src/pic16/device.h (pic16_options_t): added field debgen,
2388         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2389         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2390         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2391         puclic,
2392         * (various functions): added macros FENTRY and FENTRY2 to functions,
2393         to emit function prologue,
2394         * (various functions): fixed indentation,
2395         * (genNearPointerGet): fixed loading of FSR0,
2396         * (genPackBits): applied patch from Raphael Neider to fix updating
2397         of FSR0 and touching only the modified bits,
2398         * src/pic16/genarith.c (various functions): added macros FENTRY to
2399         emit function prologue in comments,
2400         * src/pic16/pcode.h: added functions debugf2, debugf3,
2401         * src/pic16/ralloc.c: partial fix for packForPush caused
2402         segmentation fault,
2403
2404 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2405
2406         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2407           <stsp AT users.sourceforge.net> with reversed byte order
2408         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2409
2410 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2411
2412         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2413           bug #1074377
2414         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2415         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2416
2417 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2418
2419         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2420
2421 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2422
2423         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2424           conditions,
2425           (setFromConditionArgs): friendly operand parser for peephole rules,
2426           (operandBaseName, operandsNotRelated): new peephole condition
2427           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2428           architecture specific register naming into account, handles n-way
2429           comparisons, and supports quoted literals
2430         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2431
2432 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2433
2434         * src/mcs51/peeph.def: fixed bug #1076940
2435
2436 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2437
2438         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2439
2440 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2441
2442         Adding support for replacing ljmps with sjmps in jumptables
2443         generated for switch statements. For now you need to set the
2444         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2445         Now 4 algorithms for mcs51 jumptable generation are used:
2446         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2447         addresses loaded pc-relative for up to 112 cases and stack-pushing
2448         target addresses loaded with offset from dptr for up to 256 cases.
2449
2450         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2451         * src/mcs51/main.c: adapted constants for switch table generation
2452         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2453
2454 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2455
2456         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2457         * support/regression/tests/bug1057979.c: added test for bug 1073386
2458
2459 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2460
2461         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2462         compilers
2463
2464 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2465
2466         * src/pic16/device.h,
2467         * src/pic16/genarith.c,
2468         * src/pic16/glue.c,
2469         * src/pic16/main.c,
2470         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2471
2472 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2473
2474         Large cummulative patch for pic16 port.
2475         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2476         to call when a stack overflow occurs,
2477         * (malloc.h): added CVS Id tag,
2478         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2479         variable,
2480         * added libc directory. The current version of LibC contains string
2481         functions, ctype functions and macros and some functions of the
2482         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2483         be extensively tested in the future. Standard disclaimer here.
2484         Library is not automatically build yet. But one can build it by
2485         invoking 'make' inside the libc directory.
2486         * added ADC library under libio. Preliminary version yet.
2487
2488         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2489         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2490         aopForRemat() now and not by pic16_aopOp(),
2491         * (pic16_popGetTempReg): removed warning messgae when allocating
2492         temporary registers, its a buggy feature and will be removed,
2493         * (pic16_popGet): set register instance field in AOP_CRY,
2494         * (pic16_outBitC): fixed for results in size greater than 1,
2495         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2496         * (pic16_storeForReturn): optimized return of 0,
2497         * (genCmp): experimental code for new genCmp which uses PIC18's
2498         special compare&skip instructions. Initial tests fail some times
2499         with variables grater than 1 byte in size, so new code is disabled,
2500         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2501         a single bit,
2502         * (genCast): began a fix to optimize the casting of a bit to another
2503         bit, now assigning a bitfield to another bitfield will fail, sorry,
2504         * src/pic16/main.c: disabled the use of lr-support feature,
2505         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2506         * added some function prototypes, added function _debugf prototype,
2507         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2508         bits with offset (case PO_GPR_BIT),
2509         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2510         command line,
2511         * (isBankInstruction): modified to return 0 for no banking instruction,
2512         and 1 for banking instruction,
2513         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2514         caused stop processing pCodes after a inline assembly block,
2515         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2516         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2517         registers when it shouldn't,
2518         * src/pic16/ralloc.c (allocReg): add preliminary support for
2519         supporting a limited set of temporary registers,
2520
2521 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2522
2523         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2524           genDataPointerSet): ensure assignments always copy in MSB to LSB
2525           order,
2526           (loadRegFromAop): recognize CLRH optimization,
2527           (genFunction): optimize RECEIVE iCodes in reentrant functions
2528
2529 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2530
2531         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2532           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2533           selected.
2534         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2535         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2536           contiguous with data
2537
2538 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2539
2540         * device/lib/_gptrget.c (_gptrget),
2541         * device/lib/_gptrgetc.c (_gptrgetc),
2542         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2543           instead of sjmp to ret
2544         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2545           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2546
2547 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2548
2549         * .version: bumped version to 2.4.7
2550         * device/lib/_gptrget.c (_gptrget): is now _naked
2551         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2552         * device/lib/_gptrput.c (_gptrput): is now _naked
2553         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2554           (createFunction): fixed xstack
2555         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2556         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2557           or bit either,
2558           (geniCodeCritical): store original interrupt state in an iTemp bit
2559           var unless stack-auto
2560         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2561         * src/SDCCmain.c (setIncludePath): added include/target to search path
2562         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2563         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2564           prototype,
2565           (processFuncArgs): put bit vars in bit area
2566         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2567           unsaveRBank): fixed xstack,
2568           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2569           (genFunction, genEndFunction): fixed xstack,
2570           (genAssign): optimization don't walk backwards through mem
2571         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2572         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2573         * support/regression/Makefile: also make library (for stack-auto) when
2574           making "all" and added "test-mcs51-xstack-auto"
2575         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2576         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2577         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2578         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2579         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2580           make-library by MAKE_LIBRARY
2581         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2582           regression tests for xstack
2583         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2584         * support/regression/tests/critical.c: test for critical on mcs51
2585
2586 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2587
2588         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2589           built version of sdcc instead of installed version
2590
2591 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2592
2593         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2594         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2595           vprintf.c now
2596         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2597         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2598           WARNING: remove device/lib/build/z80/printf.o by hand when
2599           updating from previous build!
2600         * device/lib/z80/printf.c: updated comment
2601         * support/regression/tests/bug1057979.c: test all ports now
2602         * support/regression/tests/bug1065458.c: file added
2603
2604 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2605
2606         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2607           *_start and *_end symbols for static functions
2608
2609 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2610
2611         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2612           and search crt0.o in all library paths,
2613           (setIncludePath): proper handling of --nostdinc,
2614           (setLibPath): proper handling of --nostdlib
2615         * support/regression/Makefile,
2616         * support/regression/ports/ds390/spec.mk,
2617         * support/regression/ports/gbz80/spec.mk,
2618         * support/regression/ports/hc08/spec.mk,
2619         * support/regression/ports/mcs51/spec.mk,
2620         * support/regression/ports/mcs51-large/spec.mk,
2621         * support/regression/ports/mcs51-stack-auto/spec.mk,
2622         * support/regression/ports/z80/spec.mk: use include and lib files from
2623           built version of sdcc instead of installed version
2624         * doc/sdccman.lyx: fixed typo in --nostdinc
2625
2626 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2627
2628         * src/pic/pcode.c,
2629         * src/pic/device.c,
2630         * src/pic/ralloc.c,
2631         * src/pic/gen.c : added support to generate code for struct bit fields.
2632
2633 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2634
2635         * as/xa51/xa_version.h,
2636         * device/include/errno.h,
2637         * device/include/regc515c.h,
2638         * device/lib/_itoa.c,
2639         * device/lib/_ltoa.c,
2640         * device/lib/ser_ir_cts_rts.c,
2641         * sim/ucsim/xa.src/glob.cc,
2642         * sim/ucsim/xa.src/inst_gen.cc,
2643         * sim/ucsim/xa.src/xa_bit.cc,
2644         * sim/ucsim/xa.src/xa_sfr.cc,
2645         * sim/ucsim/z80.src/inst_dd.cc,
2646         * sim/ucsim/z80.src/inst_fdcb.cc,
2647         * support/scripts/keil2sdcc.pl,
2648         * src/pic16/pic16.dsp,
2649         * src/pic16/pic16a.dsp: corrected cvs line endings
2650         * device/lib/printf_large.c: fixed bug 1057979
2651         * src/pic16/gen.c: fixed non-C standard code
2652         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2653         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2654         * support/regression/ports/mcs51/support.c: reload T1 asap
2655         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2656           pdata use and clear idata startup behaviour
2657         * support/regression/tests/bug1057979.c: added
2658
2659 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2660
2661         * device/examples/ds390/ow390/ad26.h,
2662         * device/examples/ds390/ow390/cnt1d.h,
2663         * device/examples/ds390/ow390/crcutil.c,
2664         * device/examples/ds390/ow390/ownet.h,
2665         * device/examples/ds390/ow390/owsesu.c,
2666         * device/examples/ds390/ow390/swt12.h,
2667         * device/examples/ds390/ow390/swtoper.c,
2668         * device/examples/ds390/ow390/temp10.h,
2669         * device/examples/ds390/ow390/thermodl.c,
2670         * device/examples/ds390/tinitalk/tinitalk.dsp,
2671         * device/examples/ds390/tinitalk/tinitalk.dsw,
2672         * device/examples/mcs51/clock/hw.h,
2673         * device/examples/mcs51/simple2/go.bat,
2674         * device/examples/serialcomm/windows/serial.h,
2675         * device/examples/xa51/dummy.c,
2676         * device/examples/xa51/hello.c,
2677         * device/include/80c51xa.h,
2678         * device/include/at89x051.h: corrected cvs line endings
2679
2680 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2681
2682         * src/pic16/main.c (options): added command line --gstack, to trace
2683         stack over/under flows,
2684         * added pragma 'wparam' to allow passing first byte of function
2685         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2686         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2687         call to __gstack_test function and sets up the symbol as extern,
2688         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2689         * popaop): added call to pic16_testStackOverflow,
2690         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2691         wparamList list,
2692         * (genCall, genPcall): now all parameters are passed via stack
2693         except in functions that are pass to wparam pragma in which WREG is
2694         used too,
2695         * (genPcall): REENTRANT flag is checked to see if variable prototype
2696         contains reentrant keyword, don't call a non-reentrant function, via
2697         a reentrant function pointer or vice versa, functions are never
2698         passed via WREG,
2699         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2700         D.Winkler,
2701         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2702         SIGSEGV when accessing a NULL register stucture,
2703         * (pic16_printGPointerType): modified to handle UPPER modifier for
2704         function initializers, changed prototype of function to simpler one,
2705         * (pic16_printIvalFuncPtr): check to see if function is already
2706         added in externs list,
2707         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2708         optimized a move from W to SFR with a move to the same register
2709         later after a CALL,
2710         * device/lib/pic16/debug: NEW directory, contains debug features
2711         which are enabled when linking with libdebug.lib, currently command
2712         line option --gstack enables stack pointer tracing for over/under
2713         flow, corresponding sources are in debug/gstack
2714
2715 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2716
2717         * doc/sdccman.lyx: updated SDCC version,
2718         * (PIC16 port): update list of command line options,
2719         * src/pic16/device.h (structure pic16_options_t): added field gstack
2720         to enable stack overflow tracing on push/pops,
2721         * src/pic16/device.c (statistics structure): added statistics
2722         structure,
2723         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2724         pic16_dump_int_registers): increase statistics counters for each
2725         * variable which is encountered
2726         * (pic16_dump_usection): emit each .udata variable to its own udata
2727         section,
2728         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2729         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2730         parameters via stack, otherwise use old scheme,
2731         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2732         assembler output file,
2733         * src/pic16/main.c: added command line options --gstack to enable
2734         push/pop tracing for stack overflow,
2735         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2736         instructions): added size of each instruction,
2737         * (pic16_countInstruction): estimate size of instructions in
2738         the_pFile list, inline assembly blocks are not counted,
2739         * (pic16_FixRegisterBanking): trace previous register usage, when
2740         banksel optimizations is greater than 0, don't emit a redudant
2741         banksel directive,
2742
2743 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2744
2745         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2746         * src/pic16/ralloc.c : applied same fix for pic16.
2747         * src/pic/gen.c : tidied it up a little.
2748
2749 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2750
2751         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2752         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2753
2754 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2755
2756         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2757
2758 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2759
2760         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2761         non-reentrant function __modsint in the interrupt function (thus
2762         corrupting math operations during serial I/O)
2763         * device/lib/ser_ir.c: as above, changed buffersize
2764         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2765         256.c,d for zeroing
2766         * doc/Makefile: added option -t for rsync
2767
2768 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2769
2770         * src/SDCCast.h (struct ast),
2771         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2772
2773 2004-10-20 Borut Razem <borut.razem AT siol.net>
2774
2775         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2776         package
2777
2778 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2779
2780         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2781         makefile targets,
2782         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2783         support functions to replace long sequences of MOVFF's from access
2784         bank registers to stack and vice versa,
2785         * src/pic16/device.h: added new field opt_flags, where optimization
2786         flags can be set to enable certain features,
2787         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2788         * pBlock, (genFunction, genEndFunction): surroung loop for
2789         saving/loading used registers in stack with PC_INFO pCodes,
2790         INF_LREGS. Code in between can then be optimized by pCode optimizer
2791         to support function calls,
2792         * (genDataPointerSet): fixed bug which loaded float fields in
2793         structures with corrupt data,
2794         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2795         in a standard way debug info on stderr. Feature used for developing
2796         and debugging only,
2797         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2798         obsolete chunks of code,
2799         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2800         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2801         * pic16/src/pcode.c (pic16_newpCodeInfo,
2802         * (pic16_newpCodeOpLocalRegs),
2803         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2804         feature,
2805         * (pic16_pCodeConstString): printing of the initial value of a
2806         symbol as a comment is inhibited since parsing was already done by
2807         copyStr and output is corrupt,
2808         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2809
2810 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2811
2812         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2813
2814 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * as/mcs51/lkarea.c: removed old K&R style,
2817           (lnksect): changed check on boundary error,
2818           (lnksect2): changed check on boundary error,
2819           (lnksect2): extend XSTK to end of page if size = 1
2820         * as/mcs51/lkmain.c: removed old K&R style,
2821           (Areas51): create l_IRAM symbol
2822         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2823         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2824           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2825         * device/lib/_mullong.c: added version to be compiled with xstack
2826         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2827         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2828         * device/lib/mcs51/crtxstack.asm: fixed comment
2829         * src/SDCCglue.c: maxInterrupts defaults to 0,
2830           (emitMaps): added pdata,
2831           (createInterruptVect): (re)moved default,
2832           (glue): added pdata,
2833           (glue): moved __start__xstack to XSTK with default size 1
2834         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2835           and options.float_rent when options.stackAuto is set,
2836           (linkEdit): only write XDATA_NAME if provided on command line
2837         * src/SDCCmem.h,
2838         * src/SDCCmem.c: added pdata
2839         * src/port.h: added pdata_name to PORT
2840         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2841           (saveRegisters, unsaveRegisters): removed usage of B,
2842           (genMinus): fixed accumulator clash,
2843           (genJumpTab): added comment, this needs another look
2844         * src/mcs51/gen.c: added check for "B in use" paranoia,
2845           added pushB() and popB()
2846         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2847           chance
2848         * src/avr/main.c,
2849         * src/ds390/main.c,
2850         * src/hc08/main.c,
2851         * src/mcs51/main.c,
2852         * src/pic/main.c,
2853         * src/pic16/main.c,
2854         * src/xa51/main.c,
2855         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2856           added PSEG (PAG,XDATA) or NULL to port specifier
2857         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2858         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2859           (_mcs51_genInitStartup): removed __start__xstack equ,
2860           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2861         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2862         * src/z80/gen.c (_rleAppend): fixed warnings
2863         * support/regression/tests/zeropad.c: added pdata test
2864         * .version: bumped to 2.4.6
2865
2866 2004-10-17 Borut Razem <borut.razem AT siol.net>
2867
2868         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2869         as a part of nightly build
2870
2871 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2872
2873         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2874         WREG holds the first byte function parameters,
2875         * (aopForSym): take special case for symbols which are in FARSPACE
2876         but in CODESPACE too,
2877         * (assignResultValue): modified to take into account _G.useWreg,
2878         * (genCall): don't use wreg for parameter passing when function is
2879         declared as reentrant, too, added optimization INCF to stack
2880         pointer when stack parameter count is 1,
2881         * (genFunction, genEndFunction): refurnished and fixed to not using
2882         wreg for passing parameters when function has varargs or is
2883         reentrant, fixed bug with symbol name compare for generating
2884         functions in absolute address,
2885         * (pic16_storeForReturn): refurnished,
2886         * (genCmp): began writing a new version of the function, not ready
2887         yet, therefore it is disabled,
2888         * (genAssign): do not read code memory when assigning a function to
2889         a pointer function,
2890         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2891         array of characters, not pointer,
2892         * (pic16initialComments): in debug mode emit an .ident directive for
2893         the assembler,
2894         * (_process_pragma): emit a new warning type (internal to pic16)
2895         when setting stack to default length, emit a similar warning when
2896         placing a function at absolute address and address is not word aligned
2897         * (_pic16_parseOptions): added 'return TRUE' statement,
2898         * (_pic16_linkEdit): if compiling a source, then add the source's
2899         file object, first in the list of objects to link,
2900
2901 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2902
2903         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2904         * src/pic/main.c : removed VC warning.
2905         * src/pic/gen.c : changed comment.
2906
2907 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2908
2909         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2910         reference to a deprecated symbol _GPTRREG was causing failure to
2911         link. Thanks G. M. Gallant for the info.
2912
2913 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2914
2915         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2916         comments for Bugs item #954788.
2917
2918 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2919
2920         * src/pic16/device.c (pic16_dump_gsection,
2921         * pic16_groupRegistersInSection): handle symbols declared to be in
2922         access bank differently,
2923         * src/pic16/gen.c (struct _G): added field resDirect,
2924         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2925         send values read from stack directly to result and don't allocate
2926         temporary values,
2927         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2928         same registers,
2929         * (pic16_sameRegsOfs): NEW,
2930         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2931         free because they were not allocated from temporary pool,
2932         * pic16_popRegFromString): workaround to fix a problem with
2933         allocating variables twice or never,
2934         * (genGenPointerGet): using PRODL instead of FSR0H,
2935         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2936         instead of FSR0H,
2937         * (genAssign): take advantage of the _G.resDirect flag,
2938         * (genCast): around line 11844, use mov2f instead of directly
2939         MOVFF'ing between operands to account for literal values,
2940         * src/pic16/genutils.c: some new debug functions for gpsim have been
2941         added,
2942         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2943         float with integer part only,
2944         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2945         place variables in access bank
2946         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2947         updated sources to reflect recent changes in gen.c
2948
2949 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2950
2951         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2952         sources that searched for headers in installation path, now the
2953         device/include/pic16 is used,
2954         * src/pic16/glue.c (pic16glue),
2955         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2956         .line directives if not in debug mode, this suppresses assembler's
2957         warnings for ignored directives
2958
2959 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2960
2961         * src/port.h: made reset_regparms prototype void parameter explicit.
2962         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2963         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2964         * doc/sdccman.lyx: documented warning disabling and how to use
2965           printf_large to make it print floats.
2966         * device/include/stdbool.h: NEW
2967         * device/lib/_atof.c,
2968         * device/lib/_divuint.c,
2969         * device/lib/_divulong.c,
2970         * device/lib/expf.c,
2971         * device/lib/printf_large.c,
2972         * device/lib/sincosf.c,
2973         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2974         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2975           a completely reentrant lib.
2976
2977 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2978
2979         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2980         * device/include/pic16/stdio.h: fixed bug with colon
2981
2982 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2983
2984         * device/include/pic16/stdio.h,
2985         * device/include/pic16/stdlib.h,
2986         * device/include/pic16/math.h: NEW
2987         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2988         declared as _naked to reduce overhead
2989         * device/lib/Makefile.in (target port-specific-objects-pic16):
2990         changed * to *.* so to ignore the CVS directory,
2991         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2992         stacked variables back in stack,
2993         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2994         corruption
2995
2996 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2997
2998         * .version: bumped version number to 2.4.5
2999         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3000         * support/Util/SDCCerr.c (messages structure): added entry for
3001         W_POSSBUG2
3002
3003         Large cumulative patch for pic16 port and libraries.
3004         * device/include/pic16/sdcc-lib.h,
3005         * device/include/pic16/stdarg.h,
3006         * device/include/asm/pic16/features.h,
3007         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3008         * device/include/pic16/float.h: changes reentrant keyword with
3009         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3010         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3011         updated target build-libraries to include objects from gptr,
3012         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3013         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3014         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3015         all function headings,
3016         * src/SDCCmain.c: added global parameter userIncDirsSet,
3017         * (parseCmdLine): when option -I is encountered add directory to
3018         userIncDirsSet too,
3019         * src/version.awk: added space between control and long,
3020         * src/pic16/NOTES: added some notes for the port,
3021         * src/pic16/gen.c: added prototype for mov2fp function,
3022         * (fReturnpic16[]): properly named return value registers,
3023         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3024         * (aopForSym): added code to handle symbols with onStack flag set,
3025         symbols onStack are allocated PTRSIZE bytes,
3026         * (aopFreeAsmop): handles special case where asmops are stack objects,
3027         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3028         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3029         added argument lock to trace flaws in allocating temporary registers
3030         when developing port,
3031         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3032         * (pic16_popRegFromString): reenabled allocating a direct register
3033         from string,
3034         * (assignResultValue): various beautifications,
3035         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3036         referenced function argument,
3037         * (genIpush): reenabled to allow stacked arguments, handles only
3038         ic->parmPush iCodes,
3039         * (genCall, genPcall): major changes to allow for variable argument
3040         functions, fixed a bug with falsely restoring stack pointer after
3041         returning from call,
3042         * (genFunction): pending code for critical function,
3043         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3044         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3045         * (genNearPointerGet): fixed bug with indirect reading, was always
3046         reading from INDF0
3047         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3048         pointers,
3049         * (genAddrOf): rewrote code to take address of a stacked function parameter
3050         * (genCast): fixed casting to generic pointer type,
3051         * src/pic16/gen.h: added AOP_STA,
3052         * (struct asmop): added field stk,
3053         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3054         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3055         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3056         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3057         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3058         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3059         generic pointers,
3060         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3061         and library paths,
3062         * (pic16_port structure): generic pointer size is set to 3,
3063         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3064         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3065         compiler warning,
3066         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3067         operand is an iTemp,
3068
3069 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3070
3071         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3072         * debugger/mcs51/simi.c: addapt new syntax of s51
3073
3074 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3075
3076         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3077         * src/pic16/pcode.c: commented out some calls to free() in order to
3078         fix bug #989576,
3079
3080 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3081
3082         * src/SDCCicode.h,
3083         * src/SDCCicode.c (isiCodeInFunctionCall),
3084         * src/avr/ralloc.c (selectSpil),
3085         * src/pic/ralloc.c (selectSpil),
3086         * src/pic16/ralloc.c (selectSpil),
3087         * src/ds390/ralloc.c (selectSpil),
3088         * src/hc08/ralloc.c (selectSpil),
3089         * src/xa51/ralloc.c (selectSpil),
3090         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3091         stack in the middle of a function call sequence (fixes bug #1020268)
3092         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3093         costs associated with the minimum switch case.
3094
3095 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3096
3097         * src/SDCC.lex: fixed bug #1030549
3098
3099 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3100
3101         * src/SDCCcse.h (struct cseDef),
3102         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3103         over a function call if the CSE is derived from a symbol whose
3104         address has been taken (fixes bug #1029883)
3105         * support/regression/tests/bug-1029883: a new regression test for
3106         this bug
3107
3108 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3109
3110         * src/hc08/gen.c (emitinline): fixed bug #1029778
3111         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3112         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3113         and starts toward RFE #905167)
3114
3115 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3116
3117         * src/pic16/gen.c (mov2f): New function to move an operand to
3118         another without considering if it is a literal or a register,
3119         * (pic16_sameRegs): don't check if they are both AOP_REG,
3120         * (AccRsh): removed andmask=0 lines,
3121         * (genLeftShift): duplicated to be improved in future versions,
3122         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3123         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3124         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3125         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3126         * (insertBankSwitch): fixed inserting banksel directives algorithm
3127         for instructions that follow a skip instruction, this fixes a report
3128         for broken subtraction code generation,
3129         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3130         iCode is a left op, just in case result and right share the same
3131         registers
3132
3133 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3134
3135         * src/hc08/main.c,
3136         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3137         preservation of HX
3138         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3139         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3140         on 2004-09-12; it was buggy
3141
3142 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3143
3144         * src/SDCCsymt.h: removed RESULT_CHECK
3145         * src/SDCCast.c,
3146         * src/SDCCglue.c,
3147         * src/SDCCval.c,
3148         * src/pic/glue.c,
3149         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3150
3151 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3152
3153         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3154         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3155         configuration values no more rejected by compiler, they are assigned
3156         to configuration registers with a warning message instead,
3157         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3158         the for-loop so last conf register is emitted too,
3159         * (_pic16_initPaths): link library libsdcc.lib by default,
3160         * (_hasNativeMulFor): modified test for multiplication according to
3161         Raphael Neider's remarks. Integer multiplication is also done with
3162         support functions,
3163         * device/include/pic16/pic18fregs.h: corrected type error in while
3164         testing and including 18f6720 header file
3165
3166 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3167
3168         * src/pic16/device.h (pic16_options): removed field use_crt,
3169         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3170         until an optimization to handle single bits is added,
3171         * (pic16_loadFSR0): moved before genUnpackBits,
3172         * (genAnd): some white lines removed,
3173         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3174         leave_reset flags in pic16_options when using crt modules,
3175
3176 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3177
3178         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3179           for bugs 898889 & 979599. Also used some safer print instructions.
3180
3181 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3182
3183         * src/pic16/device.h (pic16_options_t): added field use_crt,
3184         crt_name, no_crt,
3185         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3186         catch a probable future bug,
3187         * src/pic16/gen.c: aopIdx function commented out,
3188         * (genAssign): commented out old code which used aopIdx,
3189         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3190         code, added if conditionals to take into account the --use-crt
3191         command line options,
3192         * src/pic16/main.c (pic16_optionsTable): added new command line
3193         options, --use-crt= and --no-crt,
3194         * (_pic16_linkEdit): now the proper crt object is added in the
3195         linker command line except than when --no-crt is specified,
3196         * src/pic16/pcode.c,
3197         * src/pic16/pcode.h: added some structures and functions for a new
3198         optimization scheme to compansate for instruction overhead between
3199         same iCodes, this scheme is currently under development and is not
3200         working in any way,
3201         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3202         to && operator,
3203         * device/lib/pic16/startup/crt0i.c,
3204         * device/lib/pic16/startup/crt0iz.c: added global char variable
3205         __uflags to force the generation of an idata section
3206
3207 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3208
3209         * doc/Makefile,
3210         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3211         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3212
3213 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3214
3215         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3216         Frieder) and clarified the default code optimization mode
3217
3218 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3219
3220         * src/SDCC.lex (doPragma, process_pragma),
3221         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3222         "opt_code_size", and "opt_code_balanced"
3223         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3224         regrouped options by category, added support for category headers
3225         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3226         and "--opt-code-size"
3227         * doc/sdccman.lyx: documented these new options and pragmas
3228         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3229         preference into account
3230
3231 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3232
3233         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3234           geniCodePreDec): Fixed bug 904237 by generating a warning
3235         * src/SDCCerr.h,
3236         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3237
3238 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3239
3240         * src/pic/device.c : When no max ram set validate full memory range.
3241         * src/pic/pcode.c,
3242         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3243
3244 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3245
3246         * device/lib/_gptrget.c,
3247         * device/lib/_gptrput.c: updated comment
3248         * device/lib/calloc.c,
3249         * device/lib/free.c,
3250         * device/lib/malloc.c,
3251         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3252         * src/SDCCcse.c (cseBBlock),
3253         * src/SDCCicode.c (printOperand, geniCodeArray),
3254         * src/SDCCicode.h (struct operand): fixed bug 868103
3255         * support/regression/tests/bug-868103.c: added
3256         * src/SDCCast.c (searchLitOp),
3257         * src/SDCCcse.h (struct cseDef),
3258         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3259         * src/SDCCicode.h (struct operand),
3260         * src/SDCCsymt.h (struct sym_link),
3261         * src/avr/gen.c (hasInc),
3262         * src/ds390/gen.c (hasInc),
3263         * src/hc08/gen.c (genPlusIncr, hasInc),
3264         * src/mcs51/gen.c (hasInc),
3265         * src/pic16/glue.c (pic16_printIvalChar),
3266         * src/pic16/ralloc.c (regWithIdx),
3267         * src/xa51/gen.c (hasInc) : removed warnings
3268         * src/SDCCast.c (createBlock): added comment ???
3269         * src/hc08/ralloc.c: updated comments
3270
3271 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3272
3273         * doc/sdccman.lyx: updated section on switch statements, added
3274         section about semaphore locking
3275         * doc/Makefile: added option -info for latex2html
3276         * device/lib/_gptrget.c,
3277         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3278
3279 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3280
3281         * src/pic/device.h,
3282         * src/pic/device.c,
3283         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3284          maxram is less than 0x100.
3285
3286 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3287
3288         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3289
3290 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3291
3292         * src/port.h,
3293         * src/mcs51/main.c,
3294         * src/ds390/main.c,
3295         * src/z80/main.c,
3296         * src/hc08/main.c,
3297         * src/pic/main.c,
3298         * src/pic16/main.c,
3299         * src/avr/main.c,
3300         * src/xa51/main.c
3301         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3302         a jump table is the best form for a switch statement, including
3303         automatic insertion of missing cases to make the case range
3304         continuous. Developed in collaboration with Frieder Ferlemann.
3305
3306 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3309         accumulator result if it needs sign extension
3310
3311 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3312
3313         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3314
3315 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3316
3317         * device/lib/gbz80/printf.c,
3318         * device/lib/z80/printf.c: removed define for NULL
3319
3320 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3321
3322         * as/xa51/xa_link.c,
3323         * device/examples/ds390/ow390/ad26.c,
3324         * device/examples/ds390/ow390/cnt1d.c,
3325         * device/examples/ds390/ow390/counter.c,
3326         * device/examples/ds390/ow390/ds2480.h,
3327         * device/examples/ds390/ow390/ds2480ut.c,
3328         * device/examples/ds390/ow390/findtype.c,
3329         * device/examples/ds390/ow390/gethumd.c,
3330         * device/examples/ds390/ow390/owllu.c,
3331         * device/examples/ds390/ow390/ownetu.c,
3332         * device/examples/ds390/ow390/swt12.c,
3333         * device/examples/ds390/ow390/swtloop.c,
3334         * device/examples/ds390/ow390/temp.c,
3335         * device/examples/ds390/ow390/temp10.c,
3336         * device/examples/ds390/ow390/thermo21.c,
3337         * device/examples/ds390/ow390/tinilnk.c,
3338         * device/examples/ds390/ow390/tstfind.c,
3339         * device/examples/serialcomm/windows/serial.cpp,
3340         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3341         * device/include/reg51.h: fixed line endings for cvs
3342
3343 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3344
3345         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3346         packRegsForAccUse, packRegisters): new accumulator register
3347         packing algorithm
3348         * support/regression/ports/hc08/support.c (_putchar): suppress
3349         warning of unused variable
3350         * src/SDCCicode.c: added SWAP entry to codeTable
3351
3352 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3353
3354         * device/lib/sprintf.c: forgot to add this file before previous commit
3355
3356 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3357
3358         * src/pic16/gen.c (genPackBits): added operand right in function
3359         parameters, load result directly if p_type is POINTER (that is
3360         called by genNearPointerSet)
3361         * (genUnPackBits): added operand left in function parameters,
3362         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3363         FSR0 if accessing bitfields,
3364
3365 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3366
3367         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3368           _print_format; updated printf, sprintf, vsprintf
3369         * device/include/asm/default/features.h: corrected comment/define
3370         * device/lib/Makefile.in: added sprintf.c
3371         * device/lib/libsdcc.lib: added sprintf module
3372         * device/lib/printf_large.c,
3373         * device/lib/vprintf.c,
3374         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3375           into these 3 files
3376         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3377         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3378         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3379           hc08 test
3380         * support/regression/tests/zeropad.c: define idata as data for hc08
3381
3382 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3383
3384         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3385         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3386         labels are referenced at least once (even if a reference is not found)
3387         * src/hc08/gen.c (emitcode): set isComment flag for comments
3388         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3389         loads), rules 6a..6b (optimize jumps to return)
3390
3391 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3392
3393         * device/lib/acosf.c (acosf),
3394         * device/lib/asinf.c (asinf),
3395         * device/lib/atanf.c (atanf),
3396         * device/lib/ceilf.c (ceilf),
3397         * device/lib/cosf.c (cosf),
3398         * device/lib/coshf.c (coshf),
3399         * device/lib/cotf.c (cotf),
3400         * device/lib/fabsf.c (fabsf),
3401         * device/lib/floorf.c (floorf),
3402         * device/lib/log10f.c (log10f),
3403         * device/lib/logf.c (logf),
3404         * device/lib/sinf.c (sinf),
3405         * device/lib/sinhf.c (sinhf),
3406         * device/lib/sqrtf.c (sqrtf),
3407         * device/lib/tanf.c (tanf),
3408         * device/lib/tanhf.c (tanhf),
3409         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3410         replaced all instances of "reentrant" in the library functions
3411         defined in math.h with this macro.
3412         * support/regression/tests/float_trans.c: reenabled test for hc08
3413
3414 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3415
3416         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3417         erroneously deleted
3418
3419 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3420
3421         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3422         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3423         multi-byte volatile operands are used
3424         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3425         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3426         initialization to area GSINIT0 so that it would always precede
3427         any static initializers in GSINIT
3428         * support/regression/tests/zeropad.c: fixed idata define for hc08
3429         * support/regression/tests/bug-927659.c,
3430         * support/regression/tests/float_trans.c: disabled tests for hc08
3431         pending missing library routines
3432         * .version: increased version number to 2.4.4 - hc08 port now passes
3433         regression tests
3434
3435
3436 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3437
3438         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3439         * Makefile.common.in,
3440         * as/Makefile,
3441         * as/hc08/Makefile.in,
3442         * as/mcs51/Makefile.in,
3443         * as/z80/Makefile.in,
3444         * debugger/mcs51/Makefile.in,
3445         * device/include/Makefile.in,
3446         * device/lib/Makefile.in,
3447         * doc/Makefile,
3448         * link/Makefile,
3449         * link/z80/Makefile.in,
3450         * packihx/Makefile.in,
3451         * sim/ucsim/main_in.mk,
3452         * sim/ucsim/avr.src/Makefile.in,
3453         * sim/ucsim/doc/Makefile.in,
3454         * sim/ucsim/gui.src/serio.src/Makefile.in,
3455         * sim/ucsim/hc08.src/Makefile.in,
3456         * sim/ucsim/s51.src/Makefile.in,
3457         * sim/ucsim/xa.src/Makefile.in,
3458         * sim/ucsim/z80.src/Makefile.in,
3459         * src/Makefile.in,
3460         * support/cpp2/Makefile.in,
3461         * support/librarian/Makefile,
3462         * support/makebin/Makefile: added DESTDIR to the install path proposed
3463         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3464         * doc/sdccman.lyx: added DESTDIR documentation
3465
3466 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3467
3468         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3469         instruction for interrupt handlers, use fast returns when returning
3470         from high priority interrupts
3471
3472 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3473
3474         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3475         code generation
3476         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3477         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3478         bugs, ported much of Bernhard's code from mcs51
3479         * src/mcs51/gen.c (genSend),
3480         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3481         than one when calling a reentrant function
3482         * device/lib/_mullong.c: defined an alternate struct layout for big
3483         endian ports (hc08)
3484
3485 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3486
3487         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3488         test
3489
3490 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3491
3492         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3493         are sane and complete before asking the port its prefered parameter
3494         passing method (fixes bug #1017633)
3495         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3496         and _ret3
3497
3498 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3499
3500         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3501         problem in bitfields >= 8 bits.
3502
3503 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3504
3505         * src/SDCCsymt.c: undid changes that were not meant to be committed
3506
3507 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3508
3509         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3510
3511 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3512
3513         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3514           copied and wrong bit got inverted
3515
3516 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3519         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3520         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3521         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3522         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3523         assignments to bitfields at known addresses
3524         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3525         reads from bitfields at known addresses
3526         * src/hc08/ralloc.c (packRegisters),
3527         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3528         genhc08Code): optimize pointer get values used as conditionals
3529         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3530         and branch
3531
3532 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3533
3534         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3535         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3536         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3537         as conditionals
3538
3539 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3540
3541         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3542
3543 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3544
3545         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3546         related problems
3547
3548 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3549
3550         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3551
3552 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3553
3554         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3555         mcs51 port
3556
3557 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3558
3559         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3560
3561 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3562
3563         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3564         cases use more compact code.
3565
3566 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3567
3568         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3569
3570 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3571
3572         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3573
3574 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3575
3576         * src/SDCCsymt.h,
3577         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3578         parameter of changePointer() from symbol* to sym_link*
3579         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3580         * src/SDCCsymt.c (compareType): void* type is castable to other
3581         pointers, but not necesarily an exact match.
3582         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3583         is no longer blindly treated as an exact match.
3584         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3585
3586 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3587
3588         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3589
3590 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3591
3592         * src/pic/gen.c,
3593         * src/pic/pcode.c,
3594         * src/pic/ralloc.h,
3595         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3596
3597 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3598
3599         * src/pic/device.c,
3600         * src/pic/device.h,
3601         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3602
3603 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3604
3605         * src/mcs51/gen.c (emitcode): fixed bug #992819
3606
3607 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3608
3609         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3610           there's no need to make it worse
3611
3612 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3613
3614         * src/mcs51/ralloc.c (deassignLR),
3615         * src/ds390/ralloc.c (deassignLR),
3616         * src/hc08/ralloc.c (deassignLR),
3617         * src/z80/ralloc.c (deassignLR),
3618         * src/pic/ralloc.c (deassignLR),
3619         * src/pic16/ralloc.c (deassignLR),
3620         * src/avr/ralloc.c (deassignLR),
3621         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3622         rlivePoint): fixed another part of bug #971834
3623
3624 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3625
3626         * src/z80/main.c: enabled "critical" keyword
3627         * src/z80/mappings.i,
3628         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3629         functions (fixes bug #979646)
3630         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3631
3632 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3633
3634         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3635           such as c:\mydir.
3636
3637 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3638
3639         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3640           doesn't disable too much optimizations
3641
3642 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3643
3644         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3645
3646 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3647
3648         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3649
3650 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3651
3652         * src/pic/gen.c tidied up tabs
3653         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3654         * src/pic/main.c tidied up tabs
3655         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3656         * src/pic/pcoderegs.c tidied up tabs
3657         * src/pic/ralloc.c tidied up tabs
3658
3659 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3660
3661         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3662         to S_FIXED for pic16 port and when symbol is not in level 0,
3663         allocate for S_REGISTER storage class and pic16 port, too,
3664         * src/pic16/device.h: prototype for checkSym,
3665         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3666         * (pic16_assignConfigWordValue): test the value and the mask to
3667         validate that the value is suitable for the configuration word,
3668         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3669         collect extern declared symbols, don't emit symbol twice, check
3670         first if symbol is in publics set first,
3671         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3672         * added command line '--fstack' which enables an experimental
3673         feature for stack access, too buggy to be used yet...
3674         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3675         * (pic16_allocDirReg): when register has storage class S_REGISTER
3676         allocate in pic16_dynAccessRegs,
3677         * device/include/pic16/pic18f????.h: modified configuration word
3678         naming convention, words started as CONFIG0H but should be CONFIG1H
3679
3680 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3681
3682         * device/include/mcs51reg.h: fixed bug 970993
3683
3684 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3685
3686         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3687         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3688         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3689         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3690         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3691         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3692           error/warning numbers,
3693           added function setWarningDisabled()
3694         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3695         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3696           _memcmp.c _memmove.c calloc.c realloc.c free.c
3697         * support/regression/tests/malloc.c: added tests for new functionality
3698         * support/regression/tests/zeropad.c: added tests for truncated initializers
3699           and initialized char arrays starting with '\x0'
3700         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3701
3702 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3703
3704         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3705
3706 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3707
3708         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3709         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3710         peephole 177.e. Thanks to anonymous
3711
3712 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3713
3714         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3715         function isn't used in the source but referenced as a
3716         variable initializer then declare it as extern in .asm file
3717
3718 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3719
3720         * .version: increased version number to 2.4.3
3721
3722         Adding version extension according to ChangeLog CVS revision
3723         * src/Makefile.in (target all): added dependency 'version.h'
3724         * (rule version.h): added rule to create version.h from ChangeLog,
3725         * (rule dep): added dependency version.h,
3726         * src/version.awk: AWK script to create version.h
3727         * src/SDCCdwarf2.c (dwWriteModule),
3728         * src/SDCCglue.c (initialComments),
3729         * src/SDCCmain.c (printVersionInfo): modified to write after
3730         version string the version extension number,
3731         * src/SDCCutil.c: included "version.h"
3732         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3733         number,
3734         * src/SDCCutil.h: added prototype for getBuildNumber
3735
3736         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3737         includeDirsSet, too,
3738         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3739         const char [] is found in function prototype...
3740
3741         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3742         moving to WREG with source is already in WREG,
3743         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3744         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3745         * (aopForSym): stack'ed symbols are partially supported, added
3746         if-clause to support symbols in FARSPACE,
3747         * (sameRegs): added test for AOP_ACC to see if registers are same,
3748         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3749         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3750         * (pic16_popRegFromString): will not allocate a new register if it
3751         doesn't find one by name, bug may have introduced...
3752         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3753         * (genIpush): revived to use pic16 port's stack,
3754         * (genAddrOf): added incomplete case for stack'ed operand,
3755         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3756         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3757         can handle multibyte operands,
3758         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3759         * (pic16initialComments): added message for MPLAB compatibility
3760         mode enabled,
3761         * src/pic16/main.h: prototype for pic16_mplab_comp,
3762         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3763         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3764         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3765         because of increased complexity of procedure,
3766         * (_process_pragma): stack pragma changed to format 'stack pos len',
3767         emit symbol '_stack_end' to conform with gplink,
3768         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3769         to search for register,
3770         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3771         PO_GPR_REGISTER,
3772         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3773         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3774         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3775         case for PO_GPR_REGISTER,
3776         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3777         dies, the new era is ahead !...
3778         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3779         pic16_dynInternalRegs,
3780         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3781         * (pic16_allocDirReg): minor optimizations and bug fixes,
3782         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3783
3784         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3785         load stack and frame pointer with address of 'stack_end' symbol
3786
3787 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3788
3789         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3790         without source code but only variable initializers
3791
3792 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3795         external are not declared as extern to reduce overhead while linking
3796
3797 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3798
3799         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3800
3801 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3802
3803         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3804           Yee Keat for the patch
3805         * src/SDCCast.c (decorateType): fixed bug #979599
3806         * src/ds390/gen.h: removed local fReturnSizeDS390
3807         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3808         * src/ds390/gen.c (genAnd, genOr, genXor),
3809         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3810
3811 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3812
3813         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3814         add relFilesSet to $3, manipulate $2 to handle linking of object
3815         files without source files in command line,
3816         * device/include/pic16 (all headers): added ID location macros,
3817         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3818         entries for ID location bytes,
3819         * (pic16_assignIdByteValue): NEW,
3820         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3821         added field dumpcalltree to pic16_options_t,
3822         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3823         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3824         emitting rFalseIfx label after check_carry label,
3825         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3826         pic16_emitDIRegs), NEW
3827         * (pic16glue): dump .calltree file when option --calltree found,
3828         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3829         * (_pic16_genAssemblerPreamble): emit ID locations after
3830         configuration registers,
3831         * (pic16_linkCmd): modifications of the link command,
3832         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3833         * (pic16_pCodeInitRegisters): don't init stack registers,
3834         * (pic16_findPrevInstruction): fixed bug,
3835         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3836         bug with immediate registers,
3837         * (buildCallTree): traces stack push and pop,
3838         * (pct2): dump also stack usage for each function,
3839         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3840         * (pic16_allocDirReg): various modifications,
3841         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3842         fixed to 1,
3843
3844 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3845
3846         * src/pic16/pcode.c: removed buggy double colon
3847
3848 2004-07-01 Borut Razem <borut.razem AT siol.net>
3849
3850         * support/scripts/sdcc.nsi: added include/pic16 to setup
3851
3852 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3853
3854         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3855         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3856         target 'clean',
3857         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3858         specific command line arguments. Also added sample lkr script
3859         for placing a variable at a specific memory bank.
3860         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3861         at a specific memory bank,
3862         * (pic16_dump_isection): fixed bug which caused string literals to
3863         be omitted when dumping idata section,
3864         * (pic16_groupRegistersInSection): added code to handle registers
3865         in specific memory banks,
3866         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3867         public, all references are renamed too,
3868         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3869         AOP_DPTR2,
3870         * (pic16_storeForReturn): added case to handle when dest is WREG,
3871         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3872         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3873         pic16_rel_udata, check to see if that register is marked as being
3874         a member of a specific memory bank,
3875         * (pic16_printIvalCharPtr): added code to add string literals either
3876         to code or the idata sections,
3877         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3878         also accept the 'udata' pragma,
3879         * src/pic16/main.h: new structure types sectName and sectSym
3880         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3881         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3882         * (pic16_findPrevInstruction): fixed, it returned nothing,
3883         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3884         instruction combinations,
3885         * (pic16_FixRegisterBanking): heavily reorganised,
3886         * (pic16_AnalyzeBanking): if generating banksel directives is
3887         disabled, then don't call FixRegisterBanking at all,
3888         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3889         completely removed,
3890         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3891
3892 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3893
3894         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3895         Phuah Yee Keat <yk.phuah AT nestac.com>
3896
3897 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3898
3899         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3900         correctly the IVT even if it is relocated to some other location
3901
3902 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3903
3904         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3905         * device/include/pic16/pic18f2220.h: NEW,
3906         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3907         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3908         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3909         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3910         nodefaultlibs, ivt_loc is the location of the interrupt vector
3911         table, and nodefaultlibs signs that default libraries should not be
3912         linked in link stage,
3913         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3914         according to --ivt-loc argument,
3915         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3916         when pragma stack is found,
3917
3918 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3919
3920         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3921         256 (range check), 257 (do while), 258.a-f (bit banging
3922         f.e. on 3-wire SPI bus)
3923
3924 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3925
3926         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3927         variables used exclusively within a loop
3928
3929 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3930
3931         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3932
3933 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3934
3935         * src/SDCClrange.c (computeClash): fixed bug #971834
3936
3937 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3938
3939         * src/mcs51/gen.c (genCmp): fixed bug #975903
3940         * src/hc08/gen.c (operandsEqu),
3941         * src/ds390/gen.c (operandsEqu),
3942         * src/z80/gen.c (operandsEqu),
3943         * src/pic/gen.c (operandsEqu),
3944         * src/pic16/gen.c (operandsEqu),
3945         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3946         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3947
3948 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3949
3950         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3951
3952 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3953
3954         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3955         default case in switch statement,
3956         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3957         to eliminate problem with initialisation of pointers, but problem
3958         still exists,
3959         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3960         * (emitStaticSegment): removed various lines emitting debug info,
3961         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3962         added processor registers for utilizing EEPROM,
3963         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3964         configurable and set 8
3965
3966 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3967
3968         * .version: increased version number to 2.4.2,
3969
3970         Cumulative patch for pic16 port
3971         * src/pic16/device.c: changed scheme to dump initial values for
3972         variables in idata segment, all print_idata* functions were removed,
3973         now the pic16_printIval* will be called,
3974         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3975         * _pic16_printPointerType, pic16_printPointerType,
3976         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3977         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3978         NEW, similar to the respective functions in SDCCglue.c,
3979         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3980         way, emitting hex bytes,
3981         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3982
3983 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * src/avr/ralloc.c (serialRegAssign),
3986         * src/xa51/ralloc.c (serialRegAssign),
3987         * src/pic/ralloc.c (serialRegAssign),
3988         * src/pic16/ralloc.c (serialRegAssign),
3989         * src/hc08/ralloc.c (serialRegAssign),
3990         * src/z80/ralloc.c (serialRegAssign),
3991         * src/ds390/ralloc.c (serialRegAssign),
3992         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3993
3994 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3997         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3998
3999 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4000
4001         Cumulative patch for pic16 port:
4002         * src/pic16/device.h (typedef PIC16_device) modified fields for
4003         defining microcontrollers,
4004         * src/pic16/device.c: added new info for all devices in Pics16 array,
4005         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4006         to be optimised out by the pCode optimiser,
4007         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4008         specially, bug reported by G.M. Gallant,
4009         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4010         as force'd so that cannot be optimised out by pCode optimiser,
4011         * src/pic16/pcode.c,
4012         * src/pic16/pcodepeeph.c,
4013         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4014         they are disabled by default, but can be enabled explicit with
4015         command argument --denable-peeps, for testing,
4016         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4017         --pomit-ivt in COMPILE_FLAGS
4018
4019 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4020
4021         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4022           compilation on MSVC
4023
4024 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4025
4026         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4027
4028 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4029
4030         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4031         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4032
4033 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4034
4035         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4036         would only assign 0x300001 register.
4037
4038 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4039
4040         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4041         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4042
4043 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4044
4045         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4046         for ds80c400
4047         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4048         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4049         added peephole 254 (left shift), 255 (jump table)
4050
4051 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4052
4053         * device/lib/Makefile.in: removed comment line with model-pic16,
4054         * (target port-specific-objects-pic16): the libraries and objects
4055         are copied to the build directory form the device/lib/pic16/bin
4056         directory
4057
4058         Cumulative patch concerning pic16 port:
4059         * library directory has been re-organized,
4060         * added support for PIC18F1220,
4061         * added headers and library sources for chips 18f1220,18f6520,
4062         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4063
4064         * configuration registers setting has changed, now each supported
4065         device has a complete description of the registers it uses,
4066         * all initialisations are moved to idata sections, these section
4067         can be absolute or relocatable,
4068         * fixed initialisation of codespace variables,
4069         * fixed warning about PCLATU and gpsim,
4070         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4071         * (genAssign): use table reads when assigning from variables in codespace,
4072         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4073         char/int variables placed in codespace,
4074         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4075         registers set in .asm file, no need for --pomit-config-words anymore,
4076         * (pic16glue): some 8051 legacy segments are commented out
4077         (to be removed completely),
4078         * added support for alternative assembler and linker with --asm=
4079         and --link= command line arguments,
4080         * peepholes are disabled automatically in the port, no need to
4081         specify on command line,
4082         * port supports natively char/int/long multiplication, but converts
4083         all divisions to support functions,
4084         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4085         to the file set in variable $2,
4086         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4087         strings in ASCII format and not in hex,
4088         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4089         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4090         allocate proper register if iCodes aren't temporary,
4091
4092 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4093
4094         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4095
4096 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4097
4098         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4099         is commented out
4100
4101 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4102
4103         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4104         computed address is reused
4105         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4106         multi-byte bitfields
4107
4108 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4109
4110         * src/z80/gen.c: (genArrayInit): must check for pointers too
4111
4112 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4113
4114         * support/regression/tests/zeropad.c: never meant to commit the
4115           nestedstruct test: removed, added check for GCC version
4116
4117 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4118
4119         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4120         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4121         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4122           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4123           bugs 928906 and 954082 half-empty initializers
4124         * src/SDCCsymt.h,
4125         * src/SDCCsymt.c (getAllocSize): added for above fix
4126         * src/z80/gen.c (genArrayInit): fixed bug 741044
4127         * support/regression/tests/zeropad.c: added tests
4128
4129 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4130
4131         * src/pic16/device.c (pic16_dump_section): corrected bug which
4132         caused some symbols of the libraries to be misplaced
4133
4134 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4135
4136         * src/pic16/glue.c,
4137         * src/pic16/ralloc.h,
4138         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4139         to fix conflict with pic port
4140
4141 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4142
4143         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4144         externs configuration variables,
4145         * src/pic16/ralloc.h,
4146         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4147         prototype in header, commented out some debug messages
4148
4149 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4150
4151         * src/pic16/glue.c,
4152         * src/pic16/main.c,
4153         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4154         for gpasm COFF object generation. Thanks to D. Hawkins for
4155         his patch info
4156
4157 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4158
4159         * src/ds390/main.c,
4160         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4161         Brock for spotting this)
4162         * src/ds390/gen.c (genEndFunction),
4163         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4164         interrupt handler and critical. Disable push/pop optimizations when
4165         peephole optimizations disabled.
4166
4167 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4168
4169         Updated pic16 library sources and headers.
4170         * device/lib/pic16/pic18f*/ ,
4171         * device/include/pic16/*.h: modified to handle structured SFR
4172         definitions
4173
4174 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4175
4176         * src/port.h (PORT structure): added hook initPaths, now each
4177         port can declare its own default search paths,
4178         which can been seen with the --print-search-dirs option,
4179         see pic16 port for example,
4180         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4181         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4182         * (doPrintSearchDirs): NEW, replaces in a central manner the
4183         printing of search dirs which was split in set*Paths functions,
4184         * (main): added call to port->initPaths and doPrintSearchDirs,
4185         * src/avr/main.c,
4186         * src/ds390/main.c,
4187         * src/hc08/main.c,
4188         * src/izt/i186.c,
4189         * src/izt/tlcs900h.c,
4190         * src/mcs51/main.c,
4191         * src/pic/main.c,
4192         * src/pic16/main.c: modified port structures to reflect addition of
4193         initPaths hook,
4194
4195         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4196         * (pic16_dump_section): for registers in same address reserve memory once,
4197         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4198         to no_banksel,
4199         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4200         result is greater in size than right or left,
4201         * (pic16_genUMult8X8_8): there are some cases where the result can
4202         be 16 bits size, so handle these,
4203         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4204         * (pic16_outBitC): modified to emit pcodes,
4205         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4206         or not,
4207         * (genDivOneByte): implemented algorithm to divide 8-bits,
4208         * (genCmp): uncommented goto, but issues still exist,
4209         * (genAnd): fixed a bug with variables >8bits,
4210         * (genPackBits): optimization added that uses BCF/BSF to change a
4211         single bit,
4212         * (genAssign): fixed bug when assigning floating point literals,
4213         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4214         __sdcc_gsinit_startup label,
4215         * src/pic16/main.c (_pic16_init): removed search directory
4216         initialisations,
4217         * (_pic16_initPaths): NEW, used to initialise search directories,
4218         * (_hasNativeMulFor): support functions for all except char/int
4219         multiplication, and char division,
4220         * (PIC16_port struct): modified entry for native mul support,
4221         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4222         no_banksel option,
4223         * (buildCallTree): call to register_usage is ifdef'ed out,
4224
4225 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4226
4227         * device/include/string.h: applied Stas Sergeev's patch to make this
4228         header file compatible with the preprocessor -Wundef option
4229         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4230         failure (fixes bug #941458)
4231
4232 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4233
4234         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4235         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4236         that the variable, not the function, should be static
4237         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4238         to be consistent with non-literal case
4239
4240 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4241
4242         * src/SDCCast.c (isConformingBody): fixed bug #949967
4243         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4244         convilong): fixed bug #952086
4245
4246 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4247
4248         * src/SDCCmem.c (allocVariables): fixed bug #955321
4249
4250 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4251
4252         * src/hc08/main.c (_hc08_genAssemblerEnd),
4253         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4254         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4255         completely eliminated the use of a temporary file
4256         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4257         when more than one file linked
4258         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4259
4260 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4263         which fixes bug #543481
4264         * support/regression/tests/bug-751703.c: fixed comments left from a
4265         cut and paste error
4266         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4267         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4268         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4269         scopes
4270         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4271         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4272         are now changed to underscores in moduleName
4273
4274 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4275
4276         * as/mcs51/lkmem.c: better fix for bug #954173
4277
4278 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4279         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4280
4281         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4282         * device/include/c8051f000.h,
4283         * device/include/c8051f120.h,
4284         * device/include/c8051f300.h,
4285         * device/include/c8051f310.h,
4286         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4287         PWM16) and detab'ed
4288
4289 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4290
4291         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4292         and mailing lists, doc'ed --no-peep-comments, removed reference
4293         to knoppix (newest version has no LyX/LaTeX), other minor changes
4294         * src/SDCCglue.c (glue): save 2 bytes stack space with
4295         option --main-return. The ljmp could probably be avoided too
4296
4297 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4298
4299         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4300
4301 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4302
4303         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4304         * src/SDCCopt.c (isLocalWithoutDef),
4305         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4306         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4307         (credit to Maarten Brock for patch #949363, on which this is based)
4308         * support/regression/tests/bug-751703.c: some test cases of extern used
4309         within inner scopes.
4310
4311 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4312
4313         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4314         SPEC_STRUCT
4315         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4316         struct definitions
4317         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4318         dwWriteLabel): fix to create valid debugger symbols even when
4319         the module name has non-alphanumeric symbols in it
4320         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4321         when a variable's allocation has been optimized away
4322
4323
4324 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4325
4326         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4327         * src/hc08/main.c,
4328         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4329         * src/mcs51/main.c,
4330         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4331         * src/ds390/main.c,
4332         * src/z80/gen.c (z80_emitDebuggerSymbol),
4333         * src/z80/main.c,
4334         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4335         * src/pic/main.c,
4336         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4337         * src/pic16/main.c,
4338         * src/avr/gen.c (avr_emitDebuggerSymbol),
4339         * src/avr/main.c,
4340         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4341         * src/xa51/main.c,
4342         * src/SDCCdebug.c (emitDebuggerSymbol),
4343         * src/SDCCdebug.h,
4344         * src/port.h: added a debugger struct to the port struct. Added a
4345         callback for defining debugger symbols
4346
4347         * src/SDCCast.c (createLabel),
4348         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4349         with isitmp = 1
4350         * src/SDCCicode.h,
4351         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4352         iCode back to the ast for the function
4353
4354         * src/hc08/ralloc.c (hc08_assignRegisters),
4355         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4356         unneeded fields from the regs struct.
4357         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4358         pushReg() & pullReg() functions instead of emitcode()
4359
4360         * src/hc08/gen.c (genLabel, genhc08Code),
4361         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4362
4363         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4364         debugger hooks
4365
4366         * src/hc08/gen.c (genEndFunction, genhc08Code),
4367         * src/hc08/gen.h,
4368         * src/mcs51/gen.c (genEndFunction, gen51Code),
4369         * src/mcs51/gen.h,
4370         * src/ds390/gen.c (genEndFunction, gen390Code),
4371         * src/ds390/gen.h,
4372         * src/z80/gen.c (genEndFunction, genZ80Code),
4373         * src/z80/gen.h,
4374         * src/z80/z80.h,
4375         * src/pic/gen.c (genEndFunction, genpic14Code),
4376         * src/pic/gen.h,
4377         * src/pic16/gen.c (genEndFunction, genpic16Code),
4378         * src/pic16/gen.h,
4379         * src/avr/gen.c (genEndFunction, genAVRCode),
4380         * src/avr/gen.h,
4381         * src/xa51/gen.c (genEndFunction, genXA51Code),
4382         * src/xa51/gen.h,
4383         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4384         specific code to cdbFile.c and out of the backend code generators
4385
4386         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4387         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4388         starting address is now 0
4389
4390         * as/hc08/asm.h,
4391         * as/hc08/m08pst.c,
4392         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4393         assembler directive for DWARF support
4394         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4395
4396         * src/src.dsp,
4397         * src/Makefile.in,
4398         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4399
4400 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4401
4402         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4403         and inappropriate peephole optimization in jump tables
4404
4405 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4406
4407         * as/hc08/m08pst.c,
4408         * src/SDCCglue.c: sdccopt works for the hc08 port now
4409
4410 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4411
4412         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4413
4414 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4415
4416         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4417
4418 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4421         rules
4422         * src/SDCCmain.c,
4423         * src/SDCCglobl.h,
4424         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4425         comments from the peephole optimizer replacement rules
4426         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4427         symbols
4428         * src/SDCCcse.c (updateSpillLocation),
4429         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4430         equivalents
4431         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4432         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4433         objects far pointers
4434
4435 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4436
4437         * src/SDCCsymt.h: a missing part of my last change
4438         * src/pic/ralloc.c (regTypeNum),
4439         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4440
4441 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4442
4443         * src/SDCCicode.h,
4444         * src/SDCCicode.c (aggrToPtrDclType),
4445         * src/SDCCptropt.h,
4446         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4447         ptrPseudoSymConvert),
4448         * src/pic/ralloc.c (regTypeNum),
4449         * src/pic16/ralloc.c (regTypeNum),
4450         * src/hc08/ralloc.c (regTypeNum),
4451         * src/ds390/ralloc.c (regTypeNum),
4452         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4453         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4454
4455 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4456
4457         * link/z80/lkmain.c (afile),
4458         * as/hc08/lkmain.c (afile),
4459         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4460         prevent a pointer problem when a filename has no directory and
4461         no extension specified.
4462
4463 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4464
4465         * link/z80/lkmain.c (afile): allow periods in directory names
4466         * link/z80/lkmain.c (afile),
4467         * as/mcs51/lkmain.c (afile),
4468         * as/hc08/lkmain.c (afile): allow linker script file to have an
4469         extension other than ".lnk"
4470         * link/z80/lklex.c (getfid),
4471         * link/z80/lkmain.c (parse),
4472         * as/mcs51/lklex.c (getfid),
4473         * as/mcs51/lkmain.c (parse),
4474         * as/hc08/lklex.c (getfid),
4475         * as/hc08/lkmain.c (parse): Support comments in the linker script
4476         file on lines by themselves and after filenames
4477
4478 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4479
4480         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4481
4482 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4483
4484         * src/z80/peeph-z80.def: removed some peephole rules that don't
4485         work with multibyte arithmetic (fixed bug #937126)
4486         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4487         to registers and not global variables
4488         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4489         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4490         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4491         checking for assignments not internally generated (fixed bug #931895)
4492         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4493         structure member (fixed bug #930072)
4494
4495 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4496
4497         * src/SDCCmain.c (linkEdit),
4498         * src/hc08/main.c (_hc08_parseOptions),
4499         * as/hc08/Makefile.in,
4500         * as/hc08/aslink.h,
4501         * as/hc08/asm.h,
4502         * as/hc08/m08pst.c,
4503         * as/hc08/lkrloc.c (relr, rele),
4504         * as/hc08/lkarea.c (lnkarea)
4505         * as/hc08/lkmain.c (afile, parse),
4506         * as/hc08/lkelf.c: support for ELF output
4507         * as/hc08/lks19.c (s19),
4508         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4509
4510 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4511
4512         * as/mcs51/lkihx.c: Fixed bug #899105.
4513
4514 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4515
4516         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4517         .dsp files from Unix to DOS.
4518
4519 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4520
4521         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4522         function pointers; we have been compliant for several months now.
4523         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4524         change that was accidently commented out
4525         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4526         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4527         bug #922319
4528
4529 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4530
4531         * src/hc08/gen.c: output of all of the internal debugging information
4532         is now controlled by the D() macro; it is disabled by default
4533
4534 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4535
4536         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4537         harder to keep the same registers during a CAST iCode
4538         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4539         long via int can be done in a single cast, if the signedness is
4540         correct.
4541         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4542         putchar() in tinibios.c in ds390's library
4543
4544 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4545
4546         * src/SDCCast.c (decorateType): fixed bug #898889,
4547         cast result of a literal complement too
4548         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4549         fixed check for bitfields
4550
4551 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4552
4553         * src/SDCCicode.c (geniCodeLogic): made it static,
4554         (geniCodeLogicAndOr): added in order to fix bug #905492,
4555         (ast2iCode): fixed bug #905492
4556         * support/regression/tests/bug-905492.c: added
4557         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4558         (processParms): fixed bug #927659: don't copy parms, this will clear
4559         decorated flag
4560         * support/regression/tests/bug-927659.c: added
4561
4562 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4563
4564         * src/SDCCast.c (addCast): don't cast float to char
4565         * device/lib/libsdcc.lib: added _memmove
4566
4567 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4568
4569         * device/lib/large/Makefile: fixed parallel execution by
4570         replacing `make` by `$(MAKE)`
4571
4572 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4573
4574         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4575         offsets (fixes bug #923936)
4576
4577 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4578
4579         * device/lib/small/Makefile: fixed parallel execution by
4580         replacing `make` by `$(MAKE)`
4581
4582 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4583
4584         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4585
4586 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4587
4588         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4589         * src/regression/Makefile: Regression test was not running.
4590
4591 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4592
4593         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4594         complement if possible
4595         * src/SDCCval.c (valComplement),
4596         * src/SDCCicode.c (operandOperation): fixed complement of literal
4597         * support/regression/tests/onebyte.c (testComplement): added
4598
4599 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4600
4601         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4602         return an optimized tree; actually replace actParm with the new tree
4603         * src/SDCCast.h: added some parantheses to remove side effects
4604         * support/regression/tests/bug-920866.c
4605
4606 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4607         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4608         Bit operands were not being handled properly in the pic14 port.
4609         (now src/regression/add.c passes again).
4610
4611 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4612
4613         * src/SDCC.y (labeled_statement): case and default no longer require
4614         a following statement (RFE #893037)
4615
4616 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4617
4618         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4619         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4620         disabled (fixes bug #916294)
4621         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4622         "mov a,acc"; patch provided by Lenny Story
4623         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4624
4625 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4626
4627         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4628         functions
4629         * src/ds390/gen.c (genFunction, genEndFunction),
4630         * src/ds390/ralloc.c (ds390_assignRegisters),
4631         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4632         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4633         pushed if there are parameters passed on the stack. Also, a cleaner
4634         way to decide if r0/r1 should be pushed/popped. (Together they fix
4635         bug #918693)
4636
4637 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4638
4639         * doc/sdccman.lyx,
4640         * device/lib/mcs51/crtpagesfr.asm,
4641         * device/lib/mcs51/crtxinit.asm,
4642         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4643         to avoid confusion with Si Lab's SFRPAGE register.
4644
4645 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4646
4647         * src/SDCCglue.c (emitMaps): allow public sfr variables
4648         * src/SDCCglue.c (initialComments): include compiler build date
4649         with compiler version and put the timestamp of the generated
4650         assembly file on a serperate line to be less confusing.
4651         * src/port.h: added genInitStartup hook
4652         * src/avr/main.c,
4653         * src/ds390/main.c,
4654         * src/hc08/main.c,
4655         * src/pic/main.c,
4656         * src/pic16/main.c,
4657         * src/xa51/main.c,
4658         * src/z80/main.c: genInitStartup initialize as NULL (default to
4659         historical behaviour)
4660         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4661         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4662         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4663         library instead of hard coding it into the compiler.
4664         * support/regression/ports/mcs51-stack-auto/spec.mk,
4665         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4666         * device/lib/mcs51/Makefile,
4667         * device/lib/small/Makefile,
4668         * device/lib/large/Makefile,
4669         * device/lib/mcs51/crtpagesfr.asm,
4670         * device/lib/mcs51/crtstart.asm,
4671         * device/lib/mcs51/crtxclear.asm,
4672         * device/lib/mcs51/crtxinit.asm,
4673         * device/lib/mcs51/crtclear.asm,
4674         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4675         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4676         and into user configurable files.
4677         * device/lib/clean.mk: clean mcs51 directory too
4678         * support/regression/tests/longlit.c: added static to T1 declaration
4679         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4680         accesses in the initialization code
4681
4682 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4683
4684         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4685         OSCTRIMVAL as noted in bug #916008
4686
4687 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4688
4689         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4690         in loops with multiple exits (reported as incorrect registers
4691         used by Martin Helmling in Sdcc-user list)
4692
4693 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4694
4695         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4696         made ds390 register extensions look less like error messages
4697
4698 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4701         reported by Adam Wozniak in Sdcc-user list
4702
4703 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4704
4705         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4706         arithmetic optimizations, added debug output
4707
4708 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4709
4710         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4711         * sdcc.spec: updated and split sdcc into 3 rpms
4712         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4713         needed for literals of LEFT_OP and '+'
4714         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4715         introduced RESULT_TYPE_NOPROM
4716         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4717         left shift
4718         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4719         limited promotion to int only for '*'
4720         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4721
4722 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4723
4724         * src/pic16/gen.c (genSkip),
4725         (genc16bit2lit), (gencjneshort): commented out
4726         (is_LitOp): new helper function, checks operand type
4727         (genCmpEq): rewritten
4728
4729 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4730
4731         * support/regression/tests/bug-908454.c: added
4732
4733 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4734
4735         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4736         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4737         (geniCodeCast): cosmetic, don't preserve bit storage class
4738         (geniCodeLeftShift): added promotion
4739         (geniCodeLogic): fixed regression
4740         * src/SDCCsymt.c (computeTypeOr): accept bits too
4741         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4742
4743 2004-03-07  Borut Razem <borut.razem AT siol.net>
4744
4745         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4746
4747 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4748
4749         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4750         version of pic16_genPackRegisters which does not check if ic is a
4751         CAST operator,
4752         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4753         function cause string1.c regression test fails
4754
4755 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4756
4757         * sim/ucsim/configure.in,
4758         * sim/ucsim/configure,
4759         * sim/ucsim/doc/Makefile.in: use docdir
4760         * src/SDCC.y: fixed sbit atrributes
4761         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4762         * src/SDCCast.c (decorateType): |^& need special promotion handling
4763         * src/SDCCast.h,
4764         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4765         * src/SDCCsymt.h (computeType),
4766         * src/SDCCicode.c: computeType() needs op
4767         * src/SDCCsymt.c (checkTypeSanity),
4768         * doc/sddman.lyx: "plain" bitfields are unsigned
4769         * src/SDCCsymt.c (computeTypeOr): added
4770         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4771         |^& ops
4772         * src/SDCCval.c (val*): computeType() needs op
4773         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4774         * support/regression/tests/onebyte.c: added tests for |^&
4775
4776 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4777
4778         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4779         for writing icode into asm output.
4780
4781 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4782
4783         * src/pic16/device.c: added some debug lines enabled
4784         with macro DEBUG_CHECK,
4785         * src/pic16/genarith.c: more debug in genPlus,
4786         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4787         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4788         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4789         * (aopForSym): onStack symbols are re-placed in data memspace,
4790         and onStack flag is cleared,
4791         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4792         copy temporary pcodeop,
4793         * (genPcall): added warning for not updating PCLATU,
4794         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4795         always true for pic16 port,
4796         * (genMultOneWord): NEW, supports integer multiplication,
4797         * (genMult): modified to call genMultOneWord,
4798         * (ifxForOp): added warning when return NULL,
4799         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4800         flag is set before call to operandFromSymbol for implicit
4801         added structures,
4802         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4803         options.intlong_rent are set by default,
4804         * (_hasNativeMulFor): modified to allow port generation of integer
4805         multiplication,
4806         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4807         set regtype to REG_SFR for all registers, restricting seting the
4808         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4809
4810 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4811
4812         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4813         more than 500 times in the regression tests
4814
4815 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4816
4817         * support/Util/SDCCerr.h,
4818         * support/Util/SDCCerr.c,
4819         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4820         enumerator_list),
4821         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4822         for symbol conflicts.
4823         * support/valdiags/tests/enum.c,
4824         * support/valdiags/tests/tentdecl.c,
4825         * support/valdiags/tests/struct.c: expect possible error messages
4826         referring to original symbol definitions.
4827         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4828         * src/SDCCsymt.h,
4829         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4830
4831 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4832
4833         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4834
4835 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4836
4837         * src/pic16/ralloc.c (newReg): fixed bug #908929
4838
4839 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4840
4841         * src/ds390/gen.c: added missing #include "main.h"
4842
4843 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4844
4845         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4846         checking if symbol is already in set,
4847         * src/pic16/device.h: prototype for checkAddSym,
4848         * src/pic16/gen.c: (_G): added entry interruptvector,
4849         * (assignResultValue): removed some commented out lines,
4850         * (genFunction): check for ISR via sym->type, absolute section for
4851         interrupt code is created via a new pBlock, the goto instruction is
4852         placed now correctly at the interrupt vector position, changed all
4853         references from ivec to _G.interruptvector,
4854         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4855         is the interrupt is a high priority one, same for return from ISR,
4856         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4857         externs to calls of checkAddSym,
4858         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4859         pic16_pcode_verbose flag is set,
4860         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4861         * src/pic16/pcoderegs.c: message about how many registers are saved
4862         will only be emitted if pic16_pcode_verbose flag is set,
4863
4864 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4865
4866         * src/ds390/ralloc.h,
4867         * src/ds390/ralloc.c (ds390_regWithIdx),
4868         * src/ds390/gen.c (emitcode),
4869         * src/ds390/main.h,
4870         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4871         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4872         ds390operandCompare, getRegsRead, getRegsWritten,
4873         initializeAsmLineNode): customized instruction size calculation for
4874         ds390, started basis for some register optimizations
4875         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4876         corresponding assembly output
4877         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4878         missing push/pop of r0/r1. Optimized push/pops
4879
4880 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4881
4882         * src/mcs51/main.c (instructionSize): fixed ACALL size
4883         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4884
4885 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4886
4887         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4888         the sorting of rlist with NULL elements
4889         * (print_idataType, print_idata): NEW to create idata sections
4890         * src/pic16/device.h: idataSymSet new variable
4891         * src/pic16/gen.c (genFunction): fixed some bugs in string
4892         comparing, improved the absolute section creation for ISRs,
4893         added FSR0L/FSR0H in registers that are saved in an ISR,
4894         * (genInline): fixed the processing of inline snippets,
4895         now they undergo no process by the peephole optimizer
4896         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4897         are placed in idataSymSet,
4898         * (pic16emitStaticSeg): extern symbols are added in externs,
4899         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4900         switching when aboslute variables are placed in access bank memory
4901         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4902         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4903         commented out with #if,
4904         * (pic16_packRegisters): reintroduce the check for CAST because some
4905         symbols are not correctly handled,
4906         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4907         pCodeInstruction instead of pCode,
4908         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4909         pCodeAsmDir definition,
4910         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4911         directive, then the argument directive is emitted without the leading
4912         tab, hack for inline labels which must be in the first column,
4913         * (compareLabel,pic16_findNextInstruction),
4914         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4915         * (insertBankSwitch): modified for the new pCodeAsmDir,
4916
4917 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4918         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4919
4920         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4921         instance,
4922         * (pushSide): commented out with #if,
4923         * (assignResultValue): fixed some typos in saving
4924         registers,
4925         * (genPcall): FIXED and sync'ed with genCall,
4926         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4927         * (genNearPointerGet): fixed to handle some more cases,
4928         implementation scheme via table reads,
4929         * (genConstPointerGet): modified to access code memory correct,
4930         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4931         and improved to handle some cases
4932         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4933         instead of "RETLW" for init data
4934         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4935         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4936         variables are placed in access bank memory (<0x80 and >=0xf80),
4937         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4938         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4939         TBLWT_POSTDEC,TBLWT_PREINC
4940         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4941         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4942         directives
4943         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4944         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4945         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4946         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4947
4948 2004-02-29  Borut Razem <borut.razem AT siol.net>
4949
4950         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4951         support/Util/findme.h, support/Util/system.h: enhance binary relative
4952         search for lib and include by using findProgramPath()
4953
4954 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/SDCCpeeph.h,
4957         * src/SDCCpeeph.c (pcDistance),
4958         * src/port.h,
4959         * src/mcs51/ralloc.h,
4960         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4961         * src/mcs51/main.h,
4962         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4963         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4964         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4965         size calculation port specific, started basis for some register
4966         optimizations
4967         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4968         missing push/pop of r0/r1. Optimized push/pops
4969         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4970         * device/lib/_modsint.c (_modsint),
4971         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4972         and stack version so regression tests pass
4973
4974 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4975
4976         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4977         * src/SDCCast.c (decorateType): catch another small optimization
4978         with '?' operator
4979         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4980         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4981         modified to finally use computeType() all over SDCC,
4982         see Feature Request #877103
4983         * src/SDCCval.h: cosmetic
4984         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4985         valCompare(); regression tested in muldiv.c
4986         * support/regression/tests/muldiv.c (testMod): mod sign follows
4987         dividend only
4988
4989 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4990
4991         * src/SDCCast.c (decorateType): fixed bug #902362
4992         * doc/INSTALL.txt: fixed install instructions for win32
4993
4994 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4995
4996         * device/include/Makefile.in (install): fixed by replacing spaces
4997         by tabs
4998         * doc/README.txt,
4999         * doc/INSTALL.txt: updated for release
5000         * doc/sdccman.lyx: added warning for --xstack being buggy
5001
5002 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5003
5004         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5005         to eliminate build warnings.
5006         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5007
5008 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5009            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5010
5011         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5012         removed -penable-stack, added comment for stack pragma, added
5013         warning for not initializing the stack/frame registers, removed
5014         comment at interrupts section
5015
5016         Stack is made permanent, there is no ability to disable stack usage.
5017         * src/pic16/device.h,
5018         * src/pic16/device.c: removed all references to USE_STACK macro,
5019         * src/pic16/device.c (pic16_dump_section): when no elements in
5020         rlist, free rlist before return,
5021         * (pic16_dump_int_registers): NEW, internal registers are a new set
5022         of general purpose registers reused by each function,
5023         * (checkAddReg): returns 1 if registers is added to set,
5024         * (pic16_groupRegistersInSection): when a registers is of type
5025         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5026         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5027         SRCASECMP macro is moved here from device.c
5028         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5029         PO_PCLATU, PO_PRODL, PO_PRODH,
5030         * (pic16_pCodeOpType, genMinus,
5031         changed compares to "a" register, with AOP_ACC,
5032         * (pic16_genPlus): fixed some bugs and indented properly,
5033         * (pic16_addSign): changed size to size+offset in the MOVWF
5034         instruction,
5035         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5036         multiply 8-bit operand by literal, result is 8-bit,
5037         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5038         multiply 2 8-bit operand, result is 8-bit,
5039         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5040         genUMult8X*_16,
5041         * src/pic16/gen.c: changed accUse to contain WREG only,
5042         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5043         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5044         true, do not use immediate addressing any more unless sym is a
5045         pointer in codespace,
5046         * (aopForRemat): do not use immediate addressing when symbol not in
5047         codespace and when symbol's address is requested,
5048         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5049         accUse size (= 1),
5050         * (aopGet): added case for AOP_ACC and don't return "accumulator
5051         bug" but WREG instead,
5052         * (popGetTempReg): pushes contents of temporary register in stack,
5053         * (popReleaseTempReg): pops contents of temporary register from
5054         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5055         * (pic16_popGet): separated case AOP_ACC to return register WREG
5056         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5057         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5058         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5059         the use of immediate pointers to certain cases only.
5060
5061         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5062         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5063         * (assignResultValue, genCall, genRet): modified to use the new
5064         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5065         genPcall is still broken,
5066         * (genFunction): added code to create 'A' type pBlocks when
5067         interrupt functions are generated, code not extensively tested yet,
5068         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5069         * (genEndFunction): modified so ISRs pop stored registers from stack,
5070         * (genMultOneByte): cleanup,
5071         * (AccRsh): added flag andmask, to and result with appropriate mask,
5072         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5073         * (genDataPointerGet): fixed and reenabled its use,
5074         * (genNearDataPointerGet): bugs fixed,
5075         * (genDataPointerSet): bugs fixed,
5076         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5077         pic16_DumpSymbol, pic16_DumpOp,
5078         * src/pic16/genutils.h: function prototypes for the above functions,
5079         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5080         pointers,
5081         * (pic16emitRegularMap): many many many improvements, but needs a
5082         major cleanup,
5083         * src/pic16/main.c: enable_stack in pic16_options is removed,
5084         * (_pic16_parseOptions): removed command line options -penable-stack,
5085         * (_process_pragma): emit stack symbol only when stack pragma is
5086         processed,
5087         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5088         redirected to FSR0L/FSR0H pair,
5089         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5090         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5091         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5092         for immediates,
5093         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5094         * (dumpPicOptype): NEW,
5095         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5096         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5097         with movff instruction,
5098         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5099         added pic16_int_regs, some packRegsFor* functions are commented out,
5100         because produce errors,
5101         * src/pic16/NOTES: minor modifications
5102
5103 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5104
5105         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5106         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5107         --pack-iram.
5108         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5109         * as/mcs51/lkaomf51.c: fixed bug #895763
5110
5111 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5112
5113         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5114
5115 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5116
5117         * doc/sdccman.lyx: added details about the HC08 storage classes and
5118         interrupts, fixed the register usage info for z80 & gbz80
5119
5120 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5121
5122         * doc/sdccman.lyx: added more pic16 port documentation
5123         * device/include/pic16/: added header pic18fregs.h
5124
5125 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5126
5127         * doc/sdccman.lyx: added Vangelis' contribution
5128
5129 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5130
5131         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5132         extend to the next CALL or PCALL, not just to the next CALL.
5133
5134 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5135
5136         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5137
5138 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5139
5140         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5141         bug #895752 and a better fix for bug #716790
5142
5143 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5144
5145         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5146
5147 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5148
5149         * doc/sdccman.lyx: minor changes, minor changed
5150
5151 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5152
5153         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5154         which can't handle SDCC_NEWONEBYTEOPS,
5155         (geniCodeMultiply): removed conversion from mult to shift for pic14
5156         and pic16
5157
5158 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5159
5160         * src/hc08/gen.h,
5161         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5162         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5163         thus fixing bug #895406
5164
5165 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5166
5167         * device/lib/_modsint.c,
5168         * device/lib/_modslong.c: sign follows divisor only
5169         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5170         signs or signedness can be ignored
5171         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5172         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5173         added optimization for IFX,
5174         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5175         arguments;
5176         reenabled optimization for IFX, which was removed on 2004-01-11
5177         * src/SDCCast.h: added return type IFX
5178         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5179         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5180         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5181         SDCC_OLDONEBYTEOPS selects the old behaviour
5182         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5183         changed again and commented promotion rule
5184         * src/SDCCval.c (valDiv): promotion no longer necessary
5185         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5186         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5187         rewritten
5188         * support/regression/tests/onebyte.c: added
5189
5190 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5191
5192         * gen.c (genInline): reverted to old code for assemnling inline
5193         code because of bug reported James Chadd
5194
5195 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5196
5197         * ralloc.h: missing declarations from previous patch,
5198         seems that patch for ralloc.h was never applied, fixed
5199
5200 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5201            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5202
5203         * pcode.c,
5204         * pcode.h,
5205         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5206         indirect addressing. Marked FSR0 as deprecated
5207         * gen.c (pointerCode): commented out, not needed now
5208         (pic16_popGet2p): new MOVFF helper function
5209         (genGenPointerGet),
5210         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5211         (shiftRLong): removed duplicate debugging info
5212
5213 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5214
5215         * src/ds390/gen.c (genNearPointerGet),
5216         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5217         optimization with bits, but not bitfields.
5218         * src/ds390/ralloc.c (packRegisters),
5219         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5220
5221 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5222
5223         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5224
5225 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5226
5227         * src/SDCCsymt.h,
5228         * src/SDCCicode.c (operandFromSymbol),
5229         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5230         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5231         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5232         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5233         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5234         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5235         bug #892038
5236         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5237         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5238         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5239         * src/SDCCsymt.c (newSymbol),
5240         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5241         enumerator_list),
5242         * src/SDCCval.h,
5243         * src/SDCCval.c (newiList): fixed bug #885705
5244
5245 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5246
5247         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5248         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5249
5250 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5251
5252         * device/include/c8051f120.h,
5253         * device/include/c8051f300.h,
5254         * device/include/c8051f310.h: added/updated header files for Silicon
5255         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5256         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5257         in new section Submitting patches
5258
5259 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5262         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5263         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5264         genGenPointerSet),
5265         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5266         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5267         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5268         genGenPointerSet),
5269         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5270         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5271         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5272         genGenPointerSet),
5273         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5274         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5275         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5276         genGenPointerSet): fixed bug #892400
5277         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5278         to eliminate build warnings.
5279         * src/SDCCast.c (processParms),
5280         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5281         fixed bug 751859
5282         * support/valdiag/valdiag.py: added GCC to the list of defines active
5283         when compiling with gcc
5284
5285 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5286
5287         * support/Util/SDCCerr.h,
5288         * support/Util/SDCCerr.c,
5289         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5290         with an incomplete type (fixed bug #883734)
5291         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5292
5293 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5294
5295         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5296
5297 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5298
5299         * src/SDCCast.c (decorateType),
5300         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5301         function pointer implementation
5302         * support/regression/tests/funptrs.c: added tests to verify both forms
5303         of function pointers work correctly. Added tests to verify parameters
5304         are passed in the correct order.
5305
5306 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5307
5308         * device.c (regCompare): registers are sorted by ascending
5309         address and increasing size,
5310         * main.c (_pic16_finaliseOptions): removed the declaration
5311         of compiler macro MCU. Now a macro of the format pic18fxxxx
5312         will be defined from the command line
5313
5314 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5315             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5316
5317         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5318         PCOP_RLCF was overwritten!
5319         * gen.c (genSkip): commented out calls to pic16_emitcode,
5320         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5321         * (genlshTwo),
5322         * (genRRC): added debugging info,
5323         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5324         overwritten while shifting,
5325         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5326         overwritten while shifting,
5327         * (AccLsh),
5328         * (AccRsh),
5329         * (shiftLLeftOrResult),
5330         * (shiftRLeftOrResult),
5331         * (shiftRLong),
5332         * (shiftLLong): Implemented with pic16_emitpcode
5333         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5334         * (genLeftShift): Fixed bug, operand for shift by variable always
5335         was "and"ed with 0x0f,
5336         * (genLeftShiftLiteral),
5337         * (genrshTwo),
5338         * (genRightShiftLiteral): added debugging info,
5339         * (genrshFour): added comment,
5340         * (genRightShift): determined signedness from operand "left"
5341         instead of "result"
5342
5343 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * src/SDCCicode.c (geniCodeParms),
5346         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5347         function pointers, fixed function pointer bugs #861242 and #861896
5348
5349 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5350
5351         * device/include/c8051f000.h,
5352         * device/include/c8051f120.h,
5353         * device/include/c8051f300.h: added header files for Silicon
5354         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5355
5356 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5357
5358         * src/SDCCast.c (processParams): added new type flow and restructured
5359         (gatherAutoInit): added new type flow
5360         (addCast): cosmetic changes
5361         (getLeftResultType): added new type flow for array indices, patch
5362         provided by Stas, see FR #877103
5363         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5364         array index patch by Stas
5365         * src/SDCCast.h: added prototype getResultTypeFromType()
5366         * src/SDCCval.h,
5367         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5368         * src/pic/glue.c (pic14emitStaticSeg),
5369         * src/pic16/glue.c (pic16emitStaticSeg),
5370         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5371         for initialization of symbols
5372         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5373         * support/Util/SDCCerr.h:
5374         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5375         * .version: bumped version number to 2.3.8
5376         * device/include/Makefile.in (install),
5377         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5378         avoid warnings
5379
5380 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5381
5382         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5383         Slade Rich fixed an optimization bug
5384         * src/pic/pcodepeep.c,
5385         * src/pic/pcoderegs.c
5386         * doc/Makefile (install): added test for directory
5387
5388 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5389
5390         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5391         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5392         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5393         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5394         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5395         * as/mcs51/asexpr.c (term),
5396         * as/hc08/asexpr.c (term): fixed bug #887146
5397
5398 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5399
5400         * src/z80/gen.c (genMult): handle single byte result product
5401         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5402         DUMMY_READ_VOLATILE (fixed bug #886367)
5403
5404 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5405
5406         * support/regression/tests/libmullong.c: fixed logic, on little endian
5407         hosts we ended without a mullong_wrapper()
5408
5409 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5410
5411         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5412         virus/worm forged address usage.
5413
5414 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5415
5416         Fixed promotion, it should be done on AST level:
5417         * src/SDCCast.c (addCast): added promotion to int
5418         (decorateType): updated call to upCast()
5419         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5420         usualUnaryConversions()
5421
5422 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5423
5424         * support/regression/tests/literalop.c (mulWrapper): Added a
5425         wrapper to remove integer overflow warnings.
5426
5427         * support/regression/tests/float_trans.c: Made work on host.
5428
5429         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5430         location of sz80.
5431
5432         * support/regression/generate-cases.py (main): Changed from inline
5433         to a main method.
5434
5435         * doc/Makefile (install): Changed to depth first to get rid of
5436         missing directory install warning.
5437
5438         * as/Makefile (install-doc): Made work on Mac.
5439
5440 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5441
5442         * src/SDCCast.c: added an additional type flow in decorateType() of
5443         opposite direction, see feature request #860006; it's enabled at runtime
5444         by setting the environment variable SDCC_NEWTYPEFLOW
5445         * src/SDCCast.h: changed prototype of decorateType()
5446         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5447         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5448         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5449         see feature request #877103
5450         * src/SDCCval.c: updated call of decorateType()
5451         (valBitwise): fixed bug #882876
5452         (valMinus): added promotion
5453         (valLogicAndOr): result is unsigned
5454         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5455         * src/SDCCsymt.c (computeType),
5456         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5457         must not cause an unsigned operation
5458         * src/pic/glue (pic14emitRegularMap),
5459         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5460
5461 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5462
5463         * src/pic/pcode.c (PCodeID): commented out left over debug code
5464
5465 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5466
5467         * support/valdiag/tests/overflow.c: added shift tests
5468         * src/pic/device.c,
5469         * src/pic/gen.c,
5470         * src/pic/gen.h,
5471         * src/pic/glue.c,
5472         * src/pic/main.c,
5473         * src/pic/pcode.c,
5474         * src/pic/pcode.h,
5475         * src/pic/pcodepeep.c,
5476         * src/pic/pcoderegs.c,
5477         * src/pic/ralloc.c,
5478         * src/pic/ralloc.h: applied patch from Slade Rich;
5479         added support for multiple code pages and multiple RAM banks on the
5480         PIC 14 port. The ASM files now no longer simply assume all the
5481         code / RAM are in the same page / bank. This means the linker can
5482         safely allocate code/RAM of separate ASM files to different pages/banks.
5483         * doc/sdccman.lyx: added Slade's tips
5484         * src/mcs51/peeph.def: fixed bug #880768
5485
5486 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5489         * src/SDCCast.c (decorateType): fixed bug #880197
5490
5491 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5492
5493         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5494         getopt.h.
5495
5496         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5497         strtof is not part of C89 and isn't included with Mac OS X.
5498
5499 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5502         shiftL2Left2Result): fixed bug #879326
5503         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5504         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5505         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5506         address fetch for clr instruction
5507         * device/lib/hc08/_mulint.c: created optimized assembly version
5508         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5509
5510 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5511
5512         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5513         proposed in FR #877103
5514
5515 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5516
5517         * src/SDCCval.c (cheapestVal): added missing checks
5518         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5519         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5520
5521 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5522
5523         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5524         equal operands
5525
5526 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5527
5528         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5529         loaded with the linker search paths (-L arguments) and the libraries
5530         to be linked with the current source (-l arguments). Changes
5531         currently will affect only the pic16 port.
5532         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5533         include path the port specific paths and port specific libraries,
5534         * gplink command now contains the $3 argument,
5535         * src/pic16/device.h,
5536         * src/pic16/device.c,: structure PIC_device is made public and
5537         renamed to PIC16_device, the same for variable Pics which is renamed
5538         to Pics16. Updated all references to them.
5539         * src/pic16/glue.c (pic16glue): corrected bug with code
5540         initialization which bypassed the variable initializations block.
5541
5542         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5543         COMPILE_FLAGS and added the --nostdinc option
5544
5545 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5546
5547         * device/include/mc68hc908jb8.h: Register defs for another member
5548         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5549
5550 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5551
5552         Documenting changes from previous commits.
5553         * configure.in (version 1.56),
5554         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5555         when generating output files to configure the pic16 library,
5556         but now I've commented it out, since gputils aren't installed in the
5557         SF compile farm, so library won't compile
5558
5559         * device/lib/Makefile.in (version 1.56): initially I've added in
5560         target 'all' the prerequestive 'model-pic16' so it compiled the
5561         pic16 library, but now I've commented it out for the same reasons
5562         above,
5563         * added targets 'model-pic16' and 'objects-pic16' to compile the
5564         library
5565         * added target 'port-specific-objects-pic16' to handle the
5566         generated libraries and copy them into the build/ directory
5567         * added target 'clean-intermediate-pic16' to clean intermediate
5568         files into pic16 directory
5569         * in target 'installdirs' added line to create directory pic16 in
5570         the installation path
5571
5572         * device/include/Makefile.in (version 1.11): in target 'install'
5573         added lines to copy all header files to installation path,
5574         * in target 'installdirs' added line create directory for pic16
5575         headers in the installation path
5576
5577 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5578
5579         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5580          a function call
5581
5582 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5583
5584         * configure,
5585         * device/lib/configure.in,
5586         * device/lib/configure: fixed for autoconf 2.57
5587
5588 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5589
5590         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5591         option so that it actually works. Made it specific to the z80, since
5592         the gbz80 doesn't have these kinds of I/O ports.
5593
5594 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5595
5596         * device/include/z180.h,
5597         * device/lib/_memcpy.c,
5598         * device/lib/_memmove.c,
5599         * device/lib/_mulint.c,
5600         * device/lib/ser_ir.c,
5601         * device/lib/ser_ir_cts_rts.c,
5602         * device/lib/_strcmp.c,
5603         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5604         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5605         portmode; added deprecation warning for bank= and protmode= forms.
5606         Also, guard against buffer overflow.
5607         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5608
5609 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5610
5611         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5612         changed interrupt vector table generation to only emit declared vectors.
5613         * device/include/Makefile.in: added missing backslash
5614         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5615
5616 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5617
5618         Mainly changes to support compilation of the device libraries
5619         * src/pic16/device.c: stack is allocated via symbol and not
5620         via literal number. The symbol is placed in the corresponding
5621         position of the data ram
5622         * (pic16_dump_section): relocatable and absolute uninitialized
5623         data are now emitted in sorted order to reduce section naming,
5624         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5625         weren't marked as being in the access bank,
5626
5627 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5628
5629         Added portion of GNU PIC Library under the directory
5630         device/include/pic16 and device/lib/pic16. These files
5631         contain the declarations of SFRs for the PIC18Fxx2 devices.
5632         The directory is initialized via configure from toplevel.
5633
5634 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5635
5636         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5637         the spilllocations to be compared correctly
5638
5639 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5640
5641         * src/SDCCast.c (decorateType): fixed bug introduced today
5642
5643 2004-01-12  Borut Razem <borut.razem AT siol.net>
5644
5645         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5646         doc/sdccman.lyx: upper case pragmas are deprecated
5647
5648 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5649
5650         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5651         in simpler and even better code
5652
5653 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5654
5655         * src/SDCCicode.c (operandOperation): fixed bug #874819
5656         * src/SDCCast.c (decorateType): fixed
5657         char foo (unsigned long ul) { return ul > 0; }
5658
5659 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5660
5661         * doc/sdccman.lyx: Moved and added some sections, small changes
5662         all over. Telling LaTeX to be less strict with word spacing
5663         to better keep the right margin. Changed some notes about
5664         maintainance of the ports in section 3.2.1 - is it OK like this?
5665
5666 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5667
5668         SDCC source changes:
5669         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5670         convilong): modified to inform the pic16 port that builtin functions
5671         are external
5672
5673         PIC16 PORT specific changes:
5674         * src/pic16/device.c pic16_dump_equates() added,
5675         processor registers declared internally by the port are emitted in
5676         the translation as equates,
5677         * src/pic16/gen.c: inline code is passed unprocessed to the
5678         translation,
5679         * (pic16_popGetLit2): fnuction modified to take second operand as
5680         pCodeOp pointer and not as literal,
5681         * (popRegFromIdx): prefixed with pic16_,
5682         * (pic16_popCombine2): modified to receive already allocated pCode
5683         operands,
5684         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5685         * (genFunction): initializes local stack frame and pushes on stack
5686         all the registers used by this function,
5687         * (genEndFunction): restores all registers from stack and restores
5688         stack frame,
5689         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5690         improvements,
5691         * (pic16glue): changed the program startup sequence,
5692         * added new dbName code 'A' for functions placed in absolute section
5693         * src/pic16/main.c: added function attribute _naked,
5694         * added pragma 'code' to place a fnuction at an absolute address,
5695         * added command line arguments --debug-ralloc and --pcode-verbose,
5696         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5697         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5698         * (pic16_newpCodeOpLit2): modified to take the second operand as
5699         pCodeOp pointer,
5700         * (pic16_printpBlock): modified to emit each function in a separate
5701         section,
5702         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5703         UPPER for immediate operands,
5704         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5705         instruction,
5706         * src/pic16/peeph.def: all peepholes with movff are commented out,
5707         because there is a problem in the pcode peep optimizer,
5708         * src/pic16/ralloc.c: the register allocator can now reuse local
5709         function symbols for another function. This saves register usage.
5710         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5711
5712         Added file src/pic16/NOTES with information about program writing on
5713         the current port version.
5714
5715 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5716
5717         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5718         and peephole 252 (array access)
5719
5720 2004-01-09  Borut Razem <borut.razem AT siol.net>
5721
5722         * src/SDCCmain.c : fixed #872250: -l command line defined library
5723           files are scanned before standard library files
5724
5725 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5726
5727         * src/SDCCast.c (decorateType): fixed bug #874046
5728
5729 2004-01-09  Borut Razem <borut.razem AT siol.net>
5730
5731         * support/scripts/sdcc.nsi: remove previous installation
5732
5733 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5734
5735         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5736         bytes for last interrupt vector (mcs51)
5737         * sdcc.spec: fixed typo
5738
5739 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5740
5741         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5742         gen51Code): more efficient parameter receive for --model-large
5743         ("bug" #845294)
5744
5745 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * src/ds390/main.c,
5748         * src/z80/main.c: added missed needLinkerScript flags (more than
5749         one port structure defined in these file)
5750         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5751         bug #795325
5752
5753 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5754
5755         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5756         * src/port.h: added flag needLinkerScript in port->linker
5757         structure to inform whether to create a .lnk file or not,
5758         * src/avr/main.c,
5759         * src/ds390/main.c,
5760         * src/hc08/main.c,
5761         * src/mcs51/main.c,
5762         * src/pic/main.c,
5763         * src/pic16/main.c,
5764         * src/xa51/main.c,
5765         * src/z80/main.c: changed appropriately to configure
5766         needLinkerScript flag
5767         * src/pic/gen.c,
5768         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5769         * src/pic/glue.c: added variable udata_section_name to
5770         override default uninitialized data segment definition for
5771         devices only with SHAREBANK memory (reported from Erik Epetrich)
5772         * (pic14emitOverlay): modified to emit a commented overlay segment
5773         directive when no overlay data exist
5774         * (picglue): modified to emit uninitialized data segment
5775         according to udata_section_name
5776         * src/pic/main.c (_pic14_parseOptions): added command line
5777         options --udata-section-name=[name] to override default
5778         udata definition name
5779         * modified _linkCmd and _asmCmd to include compiler passed
5780         arguments via -W option
5781         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5782         object file from '.rel' to '.o' in port->linker structure,
5783         changed size of fptr from 2 to 3 in port structure
5784
5785 2004-01-07  Borut Razem <borut.razem AT siol.net>
5786
5787         * support/scripts/sdcc.nsi: update PATH
5788         * support/scripts/sdcc.ico: craeted
5789
5790 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5791
5792         * device/include/Makefile.in: fix install
5793         * doc/Makefile: fix install
5794
5795 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5796
5797         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5798         in bug #860505
5799         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5800         how the function variable allocation summary is displayed; also
5801         include information about variables allocated to the overlay
5802         segment
5803
5804 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5805
5806         * as/mcs51/lkmain.c: Help about -Y option
5807         * as/mcs51/lkarea.c: Fixed gcc warnings
5808
5809 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5810
5811         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5812         fixed warning
5813         * support/valdiag/tests/overflow.c: added
5814         * src/SDCCast.c (decorateType),
5815         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5816         LEFT_OP (left shift)
5817
5818 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5819
5820         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5821         (default behaviour).
5822
5823 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5824
5825         A python script to validate compiler diagnostic messages. It can be
5826         used to verify that sdcc complains about bad c source code and
5827         gives a good location of the error.
5828         * support/valdiag/Makefile,
5829         * support/valdiag/valdiag.py,
5830         * support/valdiag/tests/*
5831
5832 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5833
5834         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5835         * src/SDCCsymt.c (newEnumType),
5836         * src/SDCCsymt.h
5837         * support/Util/SDCCerr.c,
5838         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5839         enum related bugs.
5840         * support/regression/tests/enum.c: added test for enum values that
5841         require at least 2 bytes of storage.
5842
5843 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5844
5845         * src/common.h: added ifndef/define/endif macros
5846         around the header file.
5847         Bug reported from Jesus Calvino-Fraga
5848
5849 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5850
5851         * sdcc.spec: updated
5852         * device/include/Makefile.in: don't install CVS directories
5853         * device/lib/Makefile.in: added removal of CVS directories after install
5854         * doc/Makefile: fixed install, added local_icons
5855         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5856         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5857         * src/ds390/gen.c (genRightShift): fixed bug #870788
5858         * src/SDCCast.c (decorateType): fixed bug #870781
5859
5860 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5861
5862         PIC16 port related changes:
5863         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5864         added variable stackPos,
5865
5866         * gen.c: genCall, assignResultValue: added support for
5867         pushing/retrieving function parameters to/from stack,
5868         genFunction,genEndFunction: setup stack frame for the
5869         generated function,
5870         genAddrOf: will be changed according to bug 863624
5871
5872         * added files genutils.c and genutils.h which contain gen*
5873         debugged and optimised functions extracted from gen.c
5874
5875         * glue.c: added variable 'externs' which holds extern symbols,
5876         pic16emitRegularMap: is modified to properly handle relocatable
5877          symbols under the new scheme,
5878         pic16createInterruptVect: is modified
5879         pic16printPublics: is modified to emit 'global' assembler directives,
5880         added pic16_printExterns to print extern symbols,
5881         pic16glue: initializes stack/frame pointer in the beginning of
5882         the assembly output. Temporary hack, will be corrected later,
5883         because gplink yet does not support stack and SDCC does not
5884         yet support a type of crt0.o object to create the final binary.
5885
5886         * Removed many lines that contain 8051 legacy code.
5887         * The code is finally placed under a 'code' directive.
5888         * Added port specific options.
5889
5890         * _process_pragma: simplified since now we do not need *special*
5891         include file to define SFR registers. But a separate header
5892         will be needed. This will be developed later.
5893         * _pic16_parseOptions: added, parses port specific options:
5894         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5895         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5896         --preplace-udata-with=
5897
5898         * _pic16_setDefaultOptions: modified to initialize section names,
5899         but hack is temporarly out of order since it needs improvement.
5900         * _pic16_genAssemblerPreamble: configuration words are emitted by
5901         their address instead of their name. This part is incomplete and
5902         supports only the 18Fxx2 devices. Other devices will emit an error
5903         during assembly since they do not contain the same set of config
5904         registers
5905         * _pic16_genIVT: is modified,
5906
5907         * pcode.c: added definitions for some hardware registers that are needed
5908         for stack support
5909         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5910         All PCI entries are updated. Now LFSR is supported.
5911         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5912         * added pic16_newpCodeOpLit2 to support instructions with
5913         two literal arguments
5914         * pic16_pCode2str: corrected code that emits assembler instructions
5915         with two literal operands and those that have an access bit modifier
5916         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5917         this fixes a bug which caused some labels to be lost, when an
5918         assembler directive was added, i.e. banksel,
5919         * pic16_FixRegisterBanking: improved logic that causes the insertion
5920         of bank switching,
5921         * InlineFunction: functions that are called once, are not any more
5922         inlined. This can be a port option in the future,
5923
5924         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5925
5926         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5927         hold the corresponding uninitialized symbols,
5928         * pic16_allocProcessorRegister: registers have explicit marked the
5929         accessBank field,
5930         * pic16_allocInternalRegister: registers are explicit marked as
5931         not used,
5932         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5933         processing list, so bit registers were lost,
5934         *
5935
5936         * ralloc.h: added field 'accessBank' and original symbol operand
5937         in register definition,
5938         * removed the field isMapped from register definition,
5939
5940         ** Several functions have been removed from various sources:
5941         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5942         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5943         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5944         pic16_assignRelocatableRegisters
5945
5946         ** others have been introduced:
5947         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5948         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5949
5950 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5951
5952         * support/scripts/inc2h.pl: changed definition of BIT_AT
5953         to emit 'sbit at' instead of 'bit at'. This was a request.
5954
5955         PIC16 port related preliminary changes:
5956         * gen.c: prefixed function popRegFromString with
5957         pic16_ and all references to it corrected
5958         * pcode.c: all pic16_pc_* hardware registers prefixed
5959         with underscore (_),
5960         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5961         * ralloc.c: newReg(): when register is REG_SFR then
5962         set address to rIdx,
5963         pic16_allocProcessorRegister(): marks register wasUsed=0
5964         pic16_writeUsedRegs(): added a call to assign processor
5965         registers via pic16_assignFixedRegisters
5966
5967 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5968
5969         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5970         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5971         variables in unused register banks.  Also the SSEG is placed
5972         wherever there is enough space for it, and IDATA can be anywhere
5973         in internal RAM.  For now compile using -Wl-Y[stack_size].
5974         The mem file is different for this option as well, since it
5975         makes no sense of talking about DSEG lenght.
5976
5977 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5978
5979         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5980         in certain cases, e.g. when ROM assignment, patch provided
5981         from Albert den Haan.
5982
5983 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5984
5985         Many signedness and type propagation fixes:
5986         * src/SDCCicode.c: made geniCodeCast() static
5987         replaced SPEC_ by IS_ (cosmetic)
5988         (operandOperation): fixed div and mod operation
5989         (usualBinaryConversions): added support for promotion of char
5990         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5991         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5992         (geniCodeAdd): an array index will stay unsigned, even if promoted
5993         from char to int
5994         (geniCodeArray): ditto
5995         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5996         * src/SDCCsymt.c (computeType): added more support for char;
5997         promotion of char is selectable by promoteCharToInt, fixed signedness
5998         for all cases
5999         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6000         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6001         * src/SDCCval (val*): replaced signedness calculation by
6002         computeType()
6003         rearranged if-branches (cosmetic)
6004         (valShift): added warning W_SHIFT_CHANGED
6005         (valCompare): fixed problem with different types
6006         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6007         * support/regression/tests/literalop.c: added many cases
6008         * support/regression/tests/ast_constant_folding.c: changed finally to
6009         'unsigned int'
6010         * .version: new year, new version: 2.3.7
6011         * src/SDCCmain.c (main): applied patch #866468
6012         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6013         provided by Scott Bronson
6014         * doc/sdccman.lyx: updated documentation for sdcdb
6015         updated and added chapter tips
6016
6017 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6018
6019         * src/SDCCsymt.h: missing from yesterday's commits
6020
6021 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/SDCC.y (struct_or_union_specifier),
6024         * support/Util/SDCCerr.c,
6025         * support/Util/SDCCerr.h: verify that struct & union tags are used
6026         as declared.
6027
6028 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6029
6030         * src/SDCCglobl.h: missing from yesterday's commits
6031
6032 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6033
6034         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6035         sft_attributes, struct_declaration, parameter_declaration,
6036         type_name, start_block, declaration_list),
6037         * src/SDCC.lex (check_type): support redefinition of typedef names
6038
6039 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6040
6041         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6042         aligned xdata arrays. Erik helped me with the if clause.
6043
6044 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6045
6046         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6047         warning
6048
6049 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/SDCCast.h,
6052         * src/SDCCast.c (newAst_),
6053         * src/SDCCicode.h,
6054         * src/SDCCicode.c (ast2iCode, newiCode),
6055         * src/SDCCglobl.h,
6056         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6057         expr, statement, expression_statement, selection_statement,
6058         iteration_statement, expr_opt, jump_statement): foundation for tracking
6059         sequence points
6060         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6061         point code too)
6062
6063 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6064
6065         * support/Util/SDCCerr.c,
6066         * src/SDCCast.h,
6067         * src/SDCCast.c (createCase, createDefault, decorateType),
6068         * src/SDCClabel.c (labelUnreach),
6069         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6070         to error messages.
6071         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6072         (with thanks to Stas Sergeev)
6073         * device/include/time.h,
6074         * device/lib/time.c (CheckTime): suppress unreachable code warning
6075
6076 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/SDCCast.c (createIvalCharPtr),
6079         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6080         bug #753752)
6081         * support/regression/tests/nullstring.c: tests for these two bugs
6082
6083 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6084
6085         * support/Util/SDCCerr.h,
6086         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6087         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6088         about storage class and 'at' used inside struct or union
6089         * src/SDCCBBlock.c (iCodeFromeBBlock),
6090         * src/SDCCcse.c (ifxOptimize),
6091         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6092         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6093         printIval, emitStaticSeg, emitOverlay),
6094         * src/SDCClabel.c (deleteIfx),
6095         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6096         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6097         gatherAutoInit, processParms),
6098         * support/Util/SDCCerr.h,
6099         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6100         reporting for post-parse errors.
6101
6102 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6103
6104         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6105         implicit casts via union; they don't work on big endian systems
6106         (possible fix for bug #861138)
6107
6108 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6109
6110         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6111         * src/mcs51/main.c: fixed the fix for bug #737001
6112
6113 2003-12-15  Borut Razem <borut.razem AT siol.net>
6114
6115         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6116
6117 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * support/makebin/makebin.c: put output in binary mode
6120
6121 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6122
6123         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6124         xdata and data memory on startup. Set the environment variable
6125         SDCC_NOGENRAMCLEAR to disable this.
6126         * src/mcs51/peephole.def,
6127         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6128         (allows non-interrupt and interrupt code to safely compete for a resource
6129         without the non-interrupt code having to disable interrupts)
6130
6131 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6132
6133         * src/SDCCicode.c (geniCodeAdd),
6134         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6135         with valFromType if type might be a pointer and host is big endian).
6136         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6137         types, not just integer types.
6138         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6139         multiply defined with mismatching "at" address.
6140
6141 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6142
6143         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6144         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6145         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6146         with embedded nulls (fixed bug #753752)
6147
6148 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6149
6150         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6151         Apparently this did not see much testing (endless loop)
6152
6153 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6156
6157 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6158
6159         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6160         gracefully handle NULL memmap pointers
6161
6162 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6163
6164         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6165         instead of deleting the iCode when an operand is volatile
6166         * src/z80/gen.c (genDummyRead),
6167         * src/mcs51/gen.c (genDummyRead),
6168         * src/ds390/gen.c (genDummyRead),
6169         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6170         not just IC_RIGHT
6171         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6172         * src/SDCC.y: fixed bug #850420
6173
6174 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6175
6176         Applied z80 i/o port patch from Peter Townson and fixed some operators
6177         to better handle operands in A register.
6178         * device/include/z180.h
6179         * src/SDCC.y
6180         * src/SDCCglue.c
6181         * src/z80/gen.c
6182         * src/z80/gen.h
6183         * src/z80/main.c
6184         * src/z80/peeph-z80.def
6185         * src/z80/peeph.def
6186         * src/z80/z80.h
6187
6188 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6191
6192 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         * device/lib/hc08/_mullong.c: Removed extra #endif
6195
6196 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6197
6198         * sim/ucsim/hc08.src/inst.cc,
6199         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6200         carries from x to h
6201         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6202         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6203         * device/include/stdarg.h: fixed varargs for hc08
6204         * device/lib/Makefile.in,
6205         * device/lib/hc08/Makefile,
6206         * device/lib/hc08/_mulint.c,
6207         * device/lib/hc08/_mullong.c: fixed some endian problems
6208
6209 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6210
6211         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6212         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6213         * device/lib/_gptrget.c,
6214         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6215
6216 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6217
6218         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6219         * src/SDCCast.c (astErrors): fixed bug #846007
6220         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6221
6222 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6223
6224         * src/SDCCast.c (decorateType): disabled a transformation I added in
6225         revision 1.188 (access to fields of a structure at an absolute address);
6226         it breaks with bitfields, extern declarations, and gcse analysis.
6227         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6228         could be assigned through a pointer, so don't complain.
6229         * src/SDCCast.c (astErrors),
6230         * src/SDCCast.h,
6231         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6232
6233 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6234
6235         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6236         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6237         output of __config directives, since gpasm now supports them
6238         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6239         pre-processor macro, i.e. -DMCU=p18f452
6240         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6241         and modified to handle 'cast' icode similarly to '=' icode
6242         * src/pic16/device.h (typedef struct PIC_device): added field
6243         'extMIface' to indicate that chip has external memory interface
6244         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6245         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6246         18F8720
6247
6248 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6249
6250         * src/SDCC.y (pointer): fixed bug #846006
6251         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6252         * src/SDCCast.c (decorateType): fixed bug #846009
6253         * src/ds390/peeph.def,
6254         * src/ds390/gen.c (genAnd, genOr),
6255         * src/mcs51/peeph.def,
6256         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6257
6258 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6259
6260         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6261         * src/SDCCdflow.c
6262         * src/SDCCcse.c
6263         * src/SDCCcse.h
6264         * src/SDCCBBlock.h
6265         * src/SDCCBBlock.c
6266
6267 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6268
6269         fixed bug #845089
6270         * src/SDCCbitv.h,
6271         * src/SDCCbitv.c: added function to free a bitvector
6272         * src/SDCClrange.h,
6273         * src/SDCClrange.c: added function to recompute the liveranges
6274         * src/avr/ralloc.c,
6275         * src/ds390/ralloc.c,
6276         * src/hc08/ralloc.c,
6277         * src/mcs51/ralloc.c,
6278         * src/pic/ralloc.c,
6279         * src/pic16/ralloc.c,
6280         * src/xa51/ralloc.c,
6281         * src/z80/ralloc.c: recompute the liveranges after register packing
6282
6283 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6284
6285         * src/SDCCloop.c (newInduction): fixed bug #845630
6286
6287 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6288
6289         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6290         inadvertantly left behind from my 2003-11-12 change
6291
6292 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         Updated headers I neglected to commit yesterday.
6295         * src/SDCClrange.h,
6296         * src/SDCCicode.h
6297
6298 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6299
6300         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6301         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6302         * src/SDCCopt.c (eBBlockFromiCode),
6303         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6304         the creation of the key hash table from the sequencing so it can be used
6305         earlier (for some GCSE bug fixes still pending)
6306
6307 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6308
6309         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6310         * support/regression/tests/addsub.c: testing genPlus shortcut
6311
6312 2003-11-15  Borut Razem <borut.razem AT siol.net>
6313
6314         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6315
6316 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6319         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6320         ordering is immaterial.
6321         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6322
6323 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6326         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6327         (SIGSEV) of bug #840381
6328         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6329         unlink new file before rename if new and old filenames are the same)
6330
6331 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6332
6333         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6334         uninitialized variables) for the mcs51. Set environment variable
6335         SDCC_GENRAMCLEAR to test.
6336         xdata initialization slightly shorter
6337
6338 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6339
6340         * src/SDCCsymt.h,
6341         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6342         #838241 & 780691 (basicly the same bug)
6343         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6344         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6345
6346 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6347
6348         * src/SDCCmain.c (linkEdit): "fix" #834252
6349
6350 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6353         * src/SDCCast.h,
6354         * src/SDCC.y: fixed bug #819403
6355
6356 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6357
6358         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6359         the reentrant attribute.
6360         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6361         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6362         simulation
6363         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6364         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6365         erroneously reduced to a literal.
6366         * src/hc08/ralloc.c (packRegisters, rematStr),
6367         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6368         some cases
6369
6370 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6371
6372         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6373         * doc/sdccman.lyx: changed from 'article' to 'book'
6374         * doc/Makefile: readded test_suite_spec and cdbfileformat
6375
6376 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6377
6378         * device/include/stdlib.h: include malloc.h to comply with ANSI
6379         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6380
6381 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6382
6383         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6384         * doc/clean.mk: also remove *.out files
6385         * doc/sdccman.lyx: some additions, larger top/bottom margins
6386
6387 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6388
6389         * src/SDCC.y: fixed bug #837365
6390         * support/regression/tests/bitopcse.c
6391         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6392         a symbol (might be valop instead)
6393         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6394         * device/lib/clean.mk: added hc08 to the cleaning list
6395
6396 2003-11-04  Borut Razem <borut.razem AT siol.net>
6397
6398         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6399           made 2003-11-04
6400         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6401           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6402           malloc is declared in standard stdlib.h
6403
6404 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6405
6406         * device/lib/hc08/Makefile: need to clean .rel not .o files
6407         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6408
6409 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * src/port.h,
6412         * src/hc08/main.c,
6413         * src/mcs51/main.c,
6414         * src/ds390/main.c,
6415         * src/z80/main.c,
6416         * src/avr/main.c,
6417         * src/pic/main.c,
6418         * src/pic16/main.c,
6419         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6420         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6421         tests (which uses the port's oclsExpense function)
6422         * src/SDCC.y,
6423         * src/SDCCast.c,
6424         * src/SDCCicode.c,
6425         * src/hc08/gen.c,
6426         * src/ds390/gen.c,
6427         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6428
6429 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6430
6431         * src/SDCCcse.c (ifxOptimize),
6432         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6433         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6434         deleting the IFX iCode.
6435         * src/hc08/ralloc.c: reduced unneeded slocs
6436         * src/hc08/gen.c: fixed bug in asmopToBoolean
6437
6438 2003-11-04  Borut Razem <borut.razem AT siol.net>
6439
6440         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6441           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6442           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6443           transferred to configure
6444
6445 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         Use headers defined in the C[++] standards:
6448         * sim/ucsim/gui.src/serio.src/fileio.cc
6449         * sim/ucsim/gui.src/serio.src/frontend.cc
6450         * sim/ucsim/gui.src/serio.src/main.cc
6451         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6452         * support/Util/NewAlloc.c
6453         * as/hc08/lklibr.c
6454         * as/mcs51/lklibr.c
6455         * as/z80/aslist.c
6456         * as/z80/assym.c
6457
6458 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6459
6460         * Added MSVC projects for hc08 assembler and linker:
6461         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6462         /as/hc08/link_hc08.dsp
6463
6464 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6465
6466         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6467
6468 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6469
6470         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6471
6472 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6473
6474         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6475
6476 2003-10-31  Borut Razem <borut.razem AT siol.net>
6477
6478         * support/cpp2/cpplib.h,
6479           support/cpp2/cpplib.c,
6480           support/cpp2/cpplex.c,
6481           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6482           to switch _asm block preprocessing on / off. Default is
6483           #pragma preproc_asm +
6484
6485 2003-10-31  Borut Razem <borut.razem AT siol.net>
6486
6487         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6488           when outputting comment blocks (when executed with -C option) and
6489           _asm (SDCPP specific) blocks
6490
6491 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6492
6493         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6494
6495 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6496
6497         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6498
6499 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6500
6501         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6502         * src/SDCCast.c (decorateType): fixed bug #832664
6503
6504 2003-10-31  Borut Razem <borut.razem AT siol.net>
6505
6506         * support\cpp2\cpplex.c: fixed for SDCPP:
6507           comments(when executed with -C option) and _asm blocks
6508           were included even if they where in skipped #if block.
6509           Applied solution from GCC cpp 3.3.2
6510
6511 2003-10-31  Borut Razem <borut.razem AT siol.net>
6512
6513         * src/SDCC.lex: sdcc now understands both formats:
6514           '# <line_number> <file_name>' and
6515           '#line <line_number> <file_name>'
6516         * support/cpp2/cppmain.c: sdcpp now generates the standard
6517           '# <line_number> <file_name>' instead of former
6518           '#line <line_number> <file_name>'
6519
6520 2003-10-30  Borut Razem <borut.razem AT siol.net>
6521
6522         * support/cpp2/cpphash.h,
6523         * support/cpp2/cpplib.h
6524         * support/cpp2/cpplex.c,
6525         * support/cpp2/cppmain.c,
6526         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6527
6528 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6529
6530         Fixed a number of problems revealed by bug #827883.
6531         * src/SDCCloop.c (loopInvariants): Spill location of the
6532         result operand should be recomputed if extracted from
6533         a loop. Also, don't extract assignments of an iTemp
6534         from a literal.
6535         * src/SDCCast.c (isConformingBody): loop reversal should
6536         not occur if the control variable is involved with a
6537         relational operator.
6538
6539 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6540
6541         * .version: bumped to 2.3.6 to reflect the big improvements
6542         made by Erik and Klaus. Thanks!
6543
6544 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6545
6546         Replaced the livrange code.
6547         * src/SDCClrange.c: added new LR code
6548         * src/SDCCloop.c,
6549         * src/SDCCBBlock.h: removed remainig parts from old LR code
6550         * src/ds390/ralloc.c,
6551         * src/ds390/gen.c: minor fixes to make it work with new code
6552
6553 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6554
6555         * as/hc08/asm.h,
6556         * as/hc08/lkrloc.c,
6557         * src/hc08/gen.c,
6558         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6559         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6560         (tweaked fix for bug #818696)
6561
6562 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6563
6564         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6565
6566 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6567
6568         * src/SDCCmain.c,
6569         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6570         * src/mcs51/gen.c (gencjneshort),
6571         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6572         more efficient (per Scott Bronson's suggestion)
6573
6574 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6575
6576         Extended the semantics of the critical keyword to include
6577         individual statements. See RFE #827755 and #799831
6578         * src/SDCC.y
6579         * src/SDCCicode.c
6580         * src/SDCCopt.c
6581         * src/SDCCast.c
6582         * support/Util/SDCCerr.c
6583         * support/Util/SDCCerr.h
6584         * src/mcs51/gen.c
6585         * src/ds390/gen.c
6586         * src/hc08/gen.c
6587
6588 2003-10-19  Borut Razem <borut.razem AT siol.net>
6589
6590         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6591
6592 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6593
6594         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6595         Fixed bug #818696
6596         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6597         and predecrement operand is displayed
6598
6599 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6600
6601         * src/SDCCval.c (valMinus): fixed bug #826041
6602
6603 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6604
6605         Some hc08 related updates that I missed earlier
6606         * sim/ucsim/stypes.h
6607         * support/regression/ports/hc08/spec.mk
6608
6609 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6610
6611         New target "hc08" for the Motorola 68hc08 family of micros
6612
6613         * configure
6614         * configure.in
6615         * Makefile
6616         * src/hc08/*
6617         * src/SDCCmain.c
6618         * src/port.h
6619         * sim/ucsim/hc08.src/*
6620         * sim/ucsim/configure.in
6621         * src/ucsim/configure
6622         * sim/ucsim/packages_in.mk
6623         * as/hc08/*
6624         * as/Makefile
6625         * device/include/mc68hc908qy.h
6626         * device/lib/hc08/*
6627         * device/lib/Makefile.in
6628         * support/regression/ports/hc08/*
6629         * support/regression/Makefile
6630
6631 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6632
6633         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6634         regression test
6635         * src/ds390/gen.c (genCast): fixed bug #821957
6636
6637 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6638
6639         * device/lib/logf.c: "fixed" overlay bug
6640         * support/regression/ports/host/spec.mk: added m library
6641         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6642         * support/regression/tests/float_trans: added (for Eric)
6643
6644 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6645
6646         * src/mcs51/gen.c (genCpl): fixed bug
6647         http://sf.net/mailarchive/message.php?msg_id=6263915
6648
6649 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6650
6651         * src/SDCCast.c (decorateType): added extended constant folding
6652         * src/SDCCsymt.c (computeType): cleanup
6653         * src/SDCCval.c (valShift): minor optimization
6654         * support/regression/tests/ast_constant_folding.c: added
6655
6656 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6657
6658         * src/SDCCmain.c: removed some unintended changes
6659
6660 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6661
6662         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6663         * src/z80/gen.c: fixed part of bug #817589
6664         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6665
6666 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6667
6668         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6669         * src/SDCCcflow.c
6670         * src/SDCCcse.c
6671         * src/SDCCdflow.c
6672         * src/SDCClabel.c
6673         * src/SDCClrange.c
6674         * src/SDCCmem.c
6675         * src/SDCCopt.c
6676         * src/SDCCpeeph.c
6677         * src/SDCCset.c
6678         * src/avr/ralloc.c
6679         * src/ds390/ralloc.c
6680         * src/izt/ralloc.c
6681         * src/mcs51/ralloc.c
6682         * src/pic/ralloc.c
6683         * src/pic16/ralloc.c
6684         * src/xa51/ralloc.c
6685         * src/z80/ralloc.c
6686         * src/z80/gen.c: removed unused label "release:"
6687
6688 2003-10-06  Borut Razem <borut.razem AT siol.net>
6689
6690         * src/SDCC.lex: removed definition of unused variables
6691           save_optimize and save_options
6692
6693 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6694
6695         * clean.mk: removed '=' in "-maxdepth=1"
6696         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6697         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6698
6699 2003-10-06  Borut Razem <borut.razem AT siol.net>
6700
6701         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6702           my_unput() replaced by unput()
6703
6704 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6705
6706         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6707         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6708         type-punned pointer will break strict-aliasing rules"
6709         Old LR behaviour is again default; Klaus' LR can be choosen by
6710         defining the environment variable LRKLAUS
6711         * src/SDCCBBlock.h
6712         * src/SDCCloop.c
6713         * src/SDCClrange.c
6714         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6715         * clean.mk: fixed removal of files in bin/CVS/
6716         * device/lib/clean.mk: fixed removal of directories small and large
6717         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6718         * src/SDCCicode.c,
6719         * src/SDCCval.c: removed superflous test for pedantic
6720
6721 2003-10-05  Borut Razem <borut.razem AT siol.net>
6722
6723         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6724           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6725           message "unmatched #pragma SAVE and #pragma RESTORE"
6726
6727 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6728
6729         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6730           assembly, critical functions, atomic, nojtbound)
6731
6732 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6733
6734         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6735         * src/SDCCBBlock.h
6736         * src/SDCCloop.c
6737         * src/SDCCloop.h
6738         * src/SDCClrange.c
6739
6740 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6741
6742         * src/z80/gen.h,
6743         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6744         * src/mcs51/gen.h
6745         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6746         * src/ds390/gen.h
6747         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6748         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6749         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6750
6751 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6752
6753         * src/z80/gen.c (genRet): fixed bug #524753
6754         * src/z80/gen.c (genCast): fixed internal error on cast from
6755         pointer to long
6756         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6757         fix for bug #477835 to the z80
6758         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6759         for tracking iCodes in the peephole optimizer for z80
6760
6761 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6762
6763         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6764         the other part of bug #814548
6765         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6766
6767 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6768
6769         * src/SDCCcse.c: fixed part of bug #814548
6770
6771 2003-09-28  Borut Razem <borut.razem AT siol.net>
6772
6773         * src/asm.c: rewrite of printILine() to use temporary file instead
6774           a pipe
6775         * src/xa51/main.c: commented out declaration of int rewinds
6776
6777 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6778
6779         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6780
6781 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6782
6783         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6784         * src/asm.c (printILine): Fixed bug #811015
6785
6786 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6787
6788         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6789         freeing.
6790
6791 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6792
6793         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6794         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6795         to correctly handle general case of AOP_PAIRPTR
6796         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6797
6798 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6799
6800         * src/mcs51/ralloc.c (fillGaps),
6801         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6802         register positioning bug)
6803
6804 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6805
6806         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6807
6808 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6809
6810         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6811         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6812         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6813         (ralloc doesn't intentionally do this now, but perhaps later)
6814         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6815         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6816         register positioning bugs (Fixed bug #762602 and #795325)
6817         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6818         (Fixed bug #808779)
6819         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6820         lines that --i-code-in-asm generates
6821
6822 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6823
6824         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6825         trying to fclose a FILE* that was already closed.
6826
6827 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6830         of const struct should be treated as if const themselves)
6831
6832 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6833
6834         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6835
6836 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6837
6838         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6839         Unix (/n) and DOS (/r/n) line terminations.
6840
6841 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6842
6843         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6844         bug #613775
6845
6846 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         * src/mcs51/gen.c (genFunction, genEndFunction),
6849         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6850         and restore of EA so that stack offsets to parameters are
6851         correct when using both critical and reentrant/stack-auto.
6852         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6853         size (can be triggered in error if sloc is shared between
6854         different sized objects)
6855         * device/include/float.h: fixed macros to explicitly use
6856         unsigned long where needed
6857
6858 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6859
6860         Feature req. 799831: added code to allow nesting of critical functions
6861         * src/mcs51/gen.c (genFunction, genEndFunction)
6862         * src/ds390/gen.c (genFunction, genEndFunction)
6863
6864 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6865
6866         * src/SDCCsymt.c (sclsFromPtr),
6867         * src/SDCCsymt.h,
6868         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6869         support for standard C idiom of memory mapped variables; for
6870         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6871         to xdata int at 0x1234 tempvar = 1.
6872         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6873         provided by Akiya ISHIDA
6874
6875 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6876
6877         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6878         * src/SDCCval.c (constVal): added reduction from int to char
6879         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6880         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6881         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6882         to ignore the sign
6883         * support/regression/tests/shifts.c: fixed
6884
6885 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6886
6887         * src/z80/gen.c (genXor): Fixed bug #805445
6888
6889 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6890
6891         Fixed bug #621531 (const & volatile confusion in the type chain).
6892         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6893         refer to the const or volatile state of the pointer itself.
6894
6895         * src/SDCCast.c
6896         * src/SDCCglue.c
6897         * src/SDCCicode.c
6898         * src/SDCCsymt.c
6899         * src/SDCCval.c
6900         * src/SDCC.y
6901         * src/SDCCsymt.h
6902         * src/pic/gen.c
6903         * src/pic/ralloc.c
6904         * src/pic16/gen.c
6905         * src/pic16/ralloc.c
6906         * support/regression/tests/const.c
6907
6908 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6909
6910         When checking for duplicated modules, use absolute paths
6911         instead of relative paths.  Files changed:
6912
6913         * as/mcs51/lklib.c
6914         * link/z80/lklib.c
6915
6916 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6919
6920 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6921
6922         * device/include/string.h: added size_t typedef, changed
6923         prototypes to use size_t, eliminated separate reentrant and
6924         non-reentrant declarations, added _memmove declaration
6925         * device/lib/_memcpy.c: changed to use size_t instead of int,
6926         changed /4 to >>2 to avoid division library call
6927         * device/lib/_memcmp.c,
6928         * device/lib/_memset.c,
6929         * device/lib/_strncat.c,
6930         * device/lib/_strncpy.c,
6931         * device/lib/_strncmp.c: changed to use size_t instead of int
6932         * device/lib/_memmove.c: new file (fixed bug #772294)
6933         * device/lib/Makefile.in: added _memmove.c
6934         * device/lib/z80/asm_strings.s: fixed bug #772290
6935         * support/regression/tests/bitfields.c: attempt to fix host assertion
6936         failure on amd64-unknown-linux2.2
6937
6938 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6939
6940         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6941         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6942         * as/z80/asmain.c (main): fixed bug #801766
6943
6944 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6945
6946         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6947         compilers
6948
6949 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6952         reported in bug #800609
6953
6954 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6955
6956         * Top header beautifications in src/pic16 directory:
6957           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6958           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6959           pcoderegs.h, ralloc.c, ralloc.h
6960         * main.c: added top header and GPL license notice
6961         * pcode.c: fixed the if-conditional warning
6962
6963 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6964
6965         * device/lib/_mullong.c: replaced int by short for gcc
6966
6967 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6968
6969         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6970         and JUMPTABLE iCodes properly now (worked by accident before)
6971         * src/mcs51/gen.c (leftRightUseAcc),
6972         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6973         iCode properly now. Use getSize instead of nRegs since a & b
6974         aren't part of the nRegs tally.
6975
6976 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6977
6978         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6979         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6980           before instructions that use the _STATUS register
6981
6982 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6983
6984         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6985         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6986         fetching of the pointer
6987         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6988         copied from genNearPointerSet()
6989         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6990         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6991         If they pop r0/r1 they must be called in the opposite order than aopOp().
6992         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6993         (resp. --stack-auto), prepared for --xstack
6994
6995 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6996
6997         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6998
6999 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7000
7001         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7002         these ports have their own __sdcc_external_start()
7003
7004 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7007         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7008         type for bits was changed. It resulted in bit variables becoming
7009         global, which is not permitted in PIC 14 assembly output.
7010
7011 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7012
7013         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7014
7015 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7016
7017         Z80 and MCS51 linkers complaint if a public symbol is defined
7018         in more than one library module:
7019
7020         * as/mcs51/lklib.c
7021         * link/z80/lklib.c
7022         * as/mcs51/Makefile.in
7023
7024 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7025
7026         A few small changes that speed up the peephole optimizer.
7027
7028         * src/SDCCpeeph.c
7029
7030 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7031
7032         Try to make the peephole optimizer smarter by maintaining
7033         an association between the assembly source code and the
7034         iCodes that originated them. Put this information to use
7035         with a new peephole rule condition "notVolatile" so that
7036         the rules can be aggressive yet still safe.
7037
7038         * src/SDCCpeeph.c
7039         * src/SDCCpeeph.h
7040         * src/mcs51/gen.c
7041         * src/mcs51/peeph.def
7042
7043 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7044
7045         Fixed bug #741761
7046
7047         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7048         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7049         if the left or right operand symbols have the accuse flag set.
7050
7051 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7052
7053         Changed the type of the result of the ! (NOT) operator to char;
7054         previously it returned the same type as the source. This allows
7055         us to eliminate all the genFloatNot functions (all of its target
7056         implementations were very buggy) since !float can use the same
7057         code as !long now.
7058
7059         * src/SDCCicode.c (ast2iCode): ! returns char
7060         * src/mcs51/gen.c (genNot, genNotFloat),
7061         * src/ds390/gen.c (genNot, genNotFloat),
7062         * src/z80/gen.c (genNot, genNotFloat),
7063         * src/pic/gen.c (genNot, genNotFloat),
7064         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7065
7066 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7067
7068         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7069         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7070            during interrupts. Ensure WSAVE is located at a shared bank address.
7071         2. Fixed page selection in some places
7072         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7073            the registers name strings.
7074         4. Fixed "signed / unsigned compare" compiler warnings.
7075         5. The PIC port manages its own allocation of the general purpose
7076            registers, but makes no attempt to reuse them. As a result when
7077            compiling it soon runs out of general purpose registers. Some
7078            additional code was added to the files pcode.c and device.c to walk
7079            through the function call tree and rename the registers so that they
7080            get reused.
7081
7082         * src/pic/device.c
7083         * src/pic/gen.c
7084         * src/pic/glue.c
7085         * src/pic/pcode.c
7086         * src/pic/pcode.h
7087         * src/pic/ralloc.c
7088         * src/pic/ralloc.h
7089         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7090         genPlus() & genMinus() when the result is the same as left or right
7091
7092 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7093
7094         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7095
7096 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         Made bitfield a distinct type from bit so that bitfields
7099         convert as per ANSI C and bits retain their traditional
7100         boolean style behaviour. Implemented bitfield support in
7101         the z80 port.
7102
7103         * src/SDCCsymt.h,
7104         * src/SDCCsymt.c,
7105         * src/SDCCast.c,
7106         * src/cdbFile.c,
7107         * src/mcs51/gen.c,
7108         * src/ds390/gen.c: bit v bitfield split
7109         * src/z80/gen.c: New support for bitfields
7110         * support/regression/tests/bitfields.c: reenabled z80,
7111         added more tests
7112
7113 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7114
7115         Rules 246.x, 247.x relate to bitfields, the others speed up
7116         access to xdata mapped I/O devices.
7117
7118         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7119
7120 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7121
7122         Cleaned up genPackBits and genUnpackBits and added two helper
7123         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7124         for literal assignments in genPackBits (thanks to Frieder for
7125         reminding me).
7126
7127         * src/mcs51/gen.c
7128         * src/ds390/gen.c
7129
7130 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7131
7132         Fixed bug #748310 (pointer to function type mishandled when the
7133         function name is omitted). Also fixed a SIGSEGV when a function
7134         attribute (reentrant, etc) is used on a non-function or on a
7135         function but misplaced before the parameter list.
7136
7137         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7138         bug #748310
7139         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7140         * support/Util/SDCCerr.h,
7141         * support/Util/SDCCerr.c: Added func attr misuse error msg
7142
7143 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7144
7145         Fixed bug #787649 by anonymous
7146         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7147         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7148
7149 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7150
7151         Fixed numerous bitfield problems.
7152
7153         * src/SDCC.y: More bitfield related error checking
7154         * src/SDCCsymt.h,
7155         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7156         * support/Util/SDCCerr.h,
7157         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7158         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7159         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7160         * support/regression/tests/bitfields.c: tests added
7161
7162 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7163
7164         Made the constant following the "interrupt" keyword optional. If
7165         omitted, the function will not automatically be given an entry
7166         in the interrupt vector table (similar to #pragma NOIV, but
7167         less syntacticly kludgy). The interrupt number is also now
7168         range checked. Also fixed a bug in the high order bit example
7169         in the manual.
7170
7171         * src/SDCC.y
7172         * src/SDCCmem.c
7173         * src/SDCCglue.c
7174         * src/SDCCsymt.h
7175         * support/Util/SDCCerr.c
7176         * support/Util/SDCCerr.h
7177         * doc/sdccman.lyx
7178
7179 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7180
7181         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7182         * src/SDCCicode.c (operandOperation): rewritten some ops
7183         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7184         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7185         other type
7186         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7187         be re-activated by defining REDUCE_LITERALS)
7188         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7189         unsigned, but are signed by default
7190         * src/SDCCval.c (constVal): rearranged
7191         * src/SDCCval.c (valMod): preliminary fix
7192         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7193         * support/regression/literalop.c: added, work in progress
7194
7195 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7196
7197         Generate warnings for useless declarations like "char data;"
7198         that don't do what new users expect.
7199
7200         * src/SDCC.y
7201         * support/Util/SDCCerr.h
7202         * support/Util/SDCCerr.c
7203
7204 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7205
7206         * src/SDCCval.c (valMult): fix overflow detection of negative int
7207
7208 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7211
7212         Changes to support big endian targets:
7213
7214         * src/ports.h
7215         * src/SDCCglue.c
7216         * src/avr/main.c
7217         * src/ds390/main.c
7218         * src/izt/i186.c
7219         * src/mcs51/main.c
7220         * src/pic/main.c
7221         * src/pic16/main.c
7222         * src/xa51/main.c
7223         * src/z80/main.c
7224
7225 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7226
7227         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7228         * device/lib/time.c: fixed warning "integer overflow in expression"
7229
7230 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7231
7232         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7233         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7234         constants are unsigned; added recognition of "u" flag for unsigned
7235         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7236         * src/SDCCval.c (valDiv, valMod): fixed signdness
7237         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7238         signedness of modulo, left and right shift
7239         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7240         * support/Util/SDCCerr.h: added warning W_INT_OVL
7241         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7242         * src/SDCCast.c (ast_print): improved output of constants
7243
7244 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7245
7246         Fixed some warnings when building with MSVC:
7247
7248         * as\mcs51\asdata.c
7249         * as\z80\asdata.c
7250         * as\mcs51\asm.h
7251         * as\z80\asm.h
7252         * link\z80\aslink.h
7253         * link\z80\lkdata.c
7254         * link\z80\lkeval.c
7255         * link\z80\lkgb.c
7256         * link\z80\lkihx.c
7257         * link\z80\lks19.c
7258         * link\z80\lksym.c
7259         * support\cpp2\cpplib.c
7260         * src\ds390\gen.c
7261         * src\mcs51\gen.c
7262
7263 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7264
7265         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7266
7267 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7268
7269         * support\librarian\clean.mk: Do not remove Makefile.
7270         * support\librarian\Makefile: added.
7271
7272 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7273
7274         Added librarian to MSVC build:
7275         * all.dsp
7276         * sdcc.dsw
7277         * support\librarian\librarian.dsp
7278
7279         'configure' not needed for librarian, removed:
7280         * support\librarian\configure
7281         * support\librarian\configure.in
7282         * support\librarian\config_in.h
7283         * support\librarian\Makefile.in
7284
7285         Hopefully these ones built the librarian and the rest of sdcc properly:
7286         * Makefile
7287         * Makefile.common.in
7288
7289         Messed up 'configure', so revert to previous version:
7290         * configure
7291         * configure.in
7292
7293 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7294
7295         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7296         there, while the mantissa of a double is "only" 53 bits wide.
7297
7298 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7299
7300         Adding sdcclib to the build.  MSVC project coming soon.
7301         Files added/changed:
7302
7303         * support\librarian\clean.mk
7304         * support\librarian\configure
7305         * support\librarian\configure.in
7306         * support\librarian\config_in.h
7307         * support\librarian\Makefile.bcc
7308         * support\librarian\Makefile.in
7309         * support\librarian\sdcclib.c
7310         * Makefile.bcc
7311         * Makefile
7312         * Makefile.common.in
7313         * configure
7314         * configure.in
7315
7316 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7317
7318         Linker now complaints if linked modules have conflicting options, for
7319         example, one compiled using --model-large and another one compiled with
7320         --model-small.  The following files were modified:
7321
7322         * as\mcs51\asdata.c
7323         * as\mcs51\aslink.h
7324         * as\mcs51\asm.h
7325         * as\mcs51\asmain.c
7326         * as\mcs51\asout.c
7327         * as\mcs51\i51pst.c
7328         * as\mcs51\lkdata.c
7329         * as\mcs51\lklibr.c
7330         * as\mcs51\lkmain.c
7331         * as\z80\asdata.c
7332         * as\z80\asm.h
7333         * as\z80\asmain.c
7334         * as\z80\asout.c
7335         * as\z80\z80pst.c
7336         * link\z80\aslink.h
7337         * link\z80\lkdata.c
7338         * link\z80\lklibr.c
7339         * link\z80\lkmain.c
7340         * src\SDCCglue.c
7341
7342 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7343
7344         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7345         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7346
7347 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * src/z80/mappings.i: fix _mul[us][int,long] entries
7350
7351 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7352
7353         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7354
7355 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7358         * support/regression/tests/bitopcse.c: added
7359         fixed warning:
7360         * src/avr/gen.c:
7361         * src/pic/gen.c:
7362         * src/pic16/gen.c:
7363         * src/z80/gen.c:
7364         * src/xa51/gen.c:
7365
7366 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7367
7368         added support for new library format to z80, gbz80 linkers:
7369         *link/z80/aslink.h
7370         *link/z80/lklex.c
7371         *link/z80/lklib.c
7372         *link/z80/lklist.c
7373
7374 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7377         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7378
7379 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7380
7381         added DUMMY_READ_VOLATILE:
7382         * src/SDCC.y:
7383         * src/avr/gen.c:
7384         * src/xa51/gen.c:
7385         * src/z80/gen.c:
7386         * src/pic/gen.c:
7387         * src/pic16/gen.c:
7388         * src/mcs51/gen.c:
7389         * src/ds390/gen.c:
7390         * src/SDCCcse.c (algebraicOpts): many improvements
7391         * src/SDCCcse.h: removed algebraicOpts()
7392         * src/SDCCicode.c (picDummyRead): added
7393
7394 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7395
7396         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7397         "Insufficient space in data memory".
7398
7399 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7400
7401         * src/mcs51/gen.c: fixed bug #771358
7402         * src/z80/gen.c: fixed bug #759087
7403
7404 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7405
7406         * src/pic16/glue.c: minor cleanup by Vangelis
7407
7408 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7409
7410         * device/include/regc515c.h: fixed #758477
7411         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7412         * device/lib/_gptrput.c: saved a few bytes
7413         * my tab spacing is 8, yours too?)
7414         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7415         * device/lib/serial.c: process RX bytes earlier than TX bytes
7416         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7417
7418 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7419
7420         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7421
7422 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7423
7424     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7425
7426 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * device/lib/Makefile.in: bad fix, reverted to 1.43
7429
7430 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7431
7432         * device/lib/Makefile.in: added missing z80 object files
7433
7434 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7435
7436         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7437         pic16 progress by Vangelis:
7438         * src/SDCCglobl.h:
7439         * src/SDCCmain.c:
7440         * src/pic/Makefile:
7441         * src/pic:
7442         * pic/Makefile:
7443         * pic16/device.c:
7444         * pic16/device.h:
7445         * pic16/gen.c:
7446         * pic16/gen.h:
7447         * pic16/genarith.c:
7448         * pic16/glue.c:
7449         * pic16/main.c:
7450         * pic16/pcode.c:
7451         * pic16/pcode.h:
7452         * pic16/pcodepeep.c:
7453         * pic16/peeph.def:
7454
7455 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7456
7457     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7458
7459 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7460
7461     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7462     added gbz80 build to MSVC project.
7463     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7464     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7465     from 8051 stuff and setup so it links using a .lnk file.
7466
7467 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7468
7469     * support/librarian/sdcclib.c: sdcc librarian.
7470     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7471     with sdcclib.
7472
7473 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7474
7475     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7476
7477 2003-07-02  Borut Razem <borut.razem AT siol.net>
7478
7479         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7480         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7481         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7482         src/xa51/main.c, src/z80/main.c:
7483         virtualization of glue() function: each port has it's own glue function,
7484         which is accessed by do_glue function pointer in PORT.general structure
7485
7486 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7487
7488         * DS800C400 fun, improved ROM interface and tinibios.
7489
7490 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7491
7492         * More support for DS80C400. Now includes beginning of interface to ROM.
7493
7494 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7495
7496         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7497
7498 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7499
7500         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7501
7502 2003-06-19  Borut Razem <borut.razem AT siol.net>
7503
7504         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7505
7506 2003-06-19  Borut Razem <borut.razem AT siol.net>
7507
7508         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7509         fixed Z80 port - crt0.o: cannot open.
7510
7511 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7512
7513         * support/Util/MySystem.c (merge_command): revert bad fix
7514
7515 2003-06-18  Borut Razem <borut.razem AT siol.net>
7516
7517         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7518
7519 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7520
7521         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7522         option --use-stdout sends errors to stdout instead of stderr.
7523
7524 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7525
7526         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7527
7528 2003-06-15  Borut Razem <borut.razem AT siol.net>
7529
7530         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7531         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7532         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7533         fixed width array of pointers replaced with sets;
7534         multiple include and lib paths ared transferred to preprocessor and linker
7535         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7536         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7537         fixed width array of pointers
7538         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7539         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7540         fixupPath(), getPathDifference()
7541         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7542         fixed width array of pointers
7543
7544 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7545
7546         * src/pic16/ralloc.c: fix warnings
7547         * src/pic16/pcode.c: fix warning
7548
7549 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7550
7551          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7552         know all the details, but essentially this set of changes enable
7553         the pic16 port to generate movff instructions and generate assembler
7554         directives,
7555         * src/SDCCmain.c:
7556         * src/pic16/gen.c:
7557         * src/pic16/glue.c:
7558         * src/pic16/pcode.c:
7559         * src/pic16/device.c:
7560         * src/pic16/main.c:
7561         * src/pic16/pcode.h:
7562         * src/pic16/pcoderegs.c:
7563         * src/pic16/ralloc.c:
7564         * src/pic16/ralloc.h:
7565
7566 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7567
7568         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7569         added option --vc, so sdcc errors and warnings are compatible with
7570         Microsoft Visual Studio.
7571
7572 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7573
7574         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7575           device/lib/libfloat.lib: added atof function.
7576
7577 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7578
7579         * doc/sdccman.lyx: updated to Lyx 1.3
7580         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7581         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7582         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7583
7584 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7585
7586         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7587
7588 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7589
7590         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7591           additions to the "related tools/documentation" section
7592
7593 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7594
7595         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7596
7597 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7598
7599         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7600         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7601
7602 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7603
7604         * doc/sdccman.lyx: fix double dash and other minor things
7605         * doc/Makefile: fix double dash
7606
7607 2003-05-28  Karl Bongers(patches from Martin Helmling)
7608         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7609           condition and ignore commands.
7610
7611 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7612
7613         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7614           is in parts still quite out of date, I did changes as far as I felt makes sense
7615           for a non-native english speaker.
7616           Please feel free to add to the manual or to correct my changes.
7617         * doc/Makefile: undid touching the date of intermediate tex files.
7618
7619 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7620
7621         * doc/sdccman.lyx: Manual has an index now
7622
7623 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7624
7625         Finalize muluint/mulsint and mululong/mulslong merging:
7626         * device/lib/_mulint.c
7627         * device/lib/_mullong.c
7628         * device/lib/gbz80/mul.s
7629         * device/lib/gbz80/stubs.s
7630         * device/lib/z80/mul.s
7631         * device/lib/z80/stubs.s
7632         * src/SDCCsymt.c (initCSupport)
7633
7634 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7635
7636         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7637         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7638           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7639           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7640           instead of /Zm500.
7641
7642 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7643
7644         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7645           the regression tests I'm not brave enough to enable 245.b, 245.c
7646         * doc/sdccman.lyx: added latex preamble for hyperref package.
7647           Using pdflatex this will give you a hyperlinked pdf file with
7648           bookmarks. (prepend '%' before /usepackage if this breaks something)
7649
7650 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7651
7652          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7653
7654 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7655
7656         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7657
7658 2003-05-21    <johan AT balder>
7659
7660         * src/SDCCglue.c (printIval): fixed bug #739934
7661
7662 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7663
7664         Applied patch from bug 737905 (renamed yylineo to mylineno):
7665         * src/altlex.c
7666         * src/SDCCast.c
7667         * src/SDCglobl.h
7668         * src/SDCC.lex
7669         * src/SDCCsymt.c
7670         * src/SDCCval.c
7671         * src/pic16/pcode.c: Cleaned warnings
7672         * src/pic16/pcodeflow.c: Cleaned warnings
7673         * src/pic16/pcoderegs.c: Cleaned warnings
7674
7675 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7676
7677         * src/pic16/pcode.c: Cleaned warnings
7678         * src/pic16/pcodepeep.c: Cleaned warnings
7679         * src/pic16/ralloc.c: Cleaned warnings
7680
7681 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7682
7683         * doc/sdccman.lyx: fixed bug 739745
7684         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7685
7686 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7687
7688         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7689         it can be defined with CFLAGS when running configure
7690         * src/SDCCmain.c: fixed compiling + linking with object files
7691
7692 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7693
7694         * configure.in: configure for pic16 port,
7695             added --disable-pic16-port
7696         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7697         * src/SDCCmain.c: linkOptions is changed to set *,
7698             added if/endif conditional macros to remove options help
7699             messages from optionsTable when a port is not configured, added
7700             support for the PIc16 port in the ports table, when executing
7701             the compiler with no port specified on command line, a default
7702             port is selected with the new macro DEFAULT_PORT which is
7703             defined in port.h, in setDefaultOptions() linkOptions is removed
7704             from initialization assignment, since now it is a set,
7705             parseCmdLine uses setParseWithComma for linkOptions, in
7706             linkEdit() linkOptions are accessed with new function indexSet()
7707             which returns the i'th item of a set variable. See SDCCset.c, in
7708             linkEdit() when calling buildCmdLine(), added linkOptions as
7709             last argument. Now users can pass arguments to gplink via the
7710             -Wl option, main() uses pic16glue() to glue up pic16 programs
7711         * src/SDCCpeeph.c: various changes to support pic16
7712         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7713             return the i'th item of the set
7714         * src/SDCCset.h: added function prototype for indexSet()
7715         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7716         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7717         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7718             added macro DEFAULT_PORT
7719         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7720         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7721             generated
7722         * src/pic16/glue.c: commented out some error producing lines
7723         * src/pic16/main.c: __config directives are commented out to stop
7724             gpasm complaining and test the linkage with gplink, _linkCmd and
7725             _asmCmd changed to be more gplink and gpasm friendly
7726         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7727             produced an error when parsed, peep rule 12 is added to utilize
7728             movff, but it is commented out since the pCode does not support
7729             yet a command with 2 address arguments
7730
7731 2003-05-18    <johan AT balder>
7732
7733         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7734         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7735 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7736
7737         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7738   Added feature to script commands from file.
7739
7740 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7741
7742         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7743         * src/SDCCutil.c: include ctype.h for win32
7744
7745 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7746
7747         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7748
7749 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7750
7751         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7752   Fixed so you can set breakpoints prior to run, run does not stop
7753   on entry now.  Add tbreak.  Other enhancements and fixes for use
7754   with ddd.
7755
7756 2003-05-12  Borut Razem <borut.razem AT siol.net>
7757
7758         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7759
7760 2003-05-11  Borut Razem <borut.razem AT siol.net>
7761
7762         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7763         the path of bin directory, so that PATH is the only env. variable, which has to be set
7764         in case of standard installation.
7765         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7766         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7767         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7768
7769 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7770
7771         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7772         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7773         temp files are in the port dir; clean the gen/test directory when
7774         generating new test.c
7775         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7776         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7777         * support/regression/tests/zeropad.c: added
7778
7779 2003-05-09    <johan AT balder>
7780
7781         * src/SDCCglue.c: fixed bug #597940
7782
7783 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7784
7785         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7786   cache sfr, optimize next,step, fix off by one sourceline,
7787   support ddd list function.
7788         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7789
7790 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7791
7792         * support/regression/HTMLgen.py: added compare_s2f()
7793         * support/regression/Makefile: redo 1.27
7794         * support/regression/generate-cases.py: redo 1.5
7795
7796 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7797
7798         * support/regression/tests/float.c: workaround 33 bit hex constant
7799         * support/regression/tests/simplefloat.c: fix division for host
7800
7801 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7802
7803         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7804         that tame's the PIC's over-aggressive optimizer.
7805
7806 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7807
7808          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7809          support for MSVC.
7810
7811 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7812
7813         Initial support for DS80C400. "Hello world" runs on TINIm400
7814         (with polled I/O).
7815
7816 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7817
7818          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7819          * Some notes on ddd usage added in debugger/README
7820          Martin Helmling adding more features and fixes for ddd GUI debugger.
7821          Code added for nexti, stepi, up, down, and other adjustments.
7822
7823 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7824
7825         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7826         * src/pic/peeph.def Added two rules to optimize carry manipulation
7827         * src/pic/* removed debug printfs
7828
7829 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7830
7831         * debugger/mcs51/cmd.c: added header newalloc.h
7832
7833 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7834
7835         * as/Makefile: new EXEEXT
7836         * as/z80/Makefile: remove trailing slash of BUILDIR
7837         * as/z80/clean.mk: new EXEEXT
7838         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7839         * support/cpp2/Makefile.in: new EXEEXT
7840         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7841
7842 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7843
7844         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7845         EXEEXT was introduced to fix all related problems with targets
7846         "clean", "install" and "uninstall"; a couple of further flaws
7847         especially with "clean" have been fixed too
7848         * as/mcs51/Makefile.in
7849         * as/mcs51/clean.mk
7850         * as/z80/Makefile
7851         * Makefile
7852         * clean.mk
7853         * debugger/mcs51/Makefile.in
7854         * debugger/mcs51/clean.mk
7855         * link/z80/Makefile
7856         * link/z80/Makefile.in
7857         * link/z80/clean.mk
7858         * link/Makefile
7859         * packihx/Makefile.in
7860         * packihx/clean.mk
7861         * sim/ucsim/Makefile
7862         * sim/ucsim/clean.mk
7863         * sim/ucsim/avr.src/Makefile.in
7864         * sim/ucsim/avr.src/clean.mk
7865         * sim/ucsim/s51.src/Makefile.in
7866         * sim/ucsim/s51.src/clean.mk
7867         * sim/ucsim/xa.src/Makefile.in
7868         * sim/ucsim/xa.src/clean.mk
7869         * sim/ucsim/z80.src/Makefile.in
7870         * sim/ucsim/z80.src/clean.mk
7871         * sim/ucsim/main_in.mk
7872         * sim/ucsim/packages_in.mk
7873         * sim/ucsim/gui.src/Makefile.in
7874         * sim/ucsim/gui.src/serio.src/Makefile.in
7875         * sim/ucsim/gui.src/serio.src/clean.mk
7876         * src/Makefile.in
7877         * src/clean.mk
7878         * support/cpp2/Makefile.in
7879         * support/cpp2/clean.mk
7880         * support/makebin/Makefile
7881         * support/makebin/clean.mk
7882         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7883         * doc/sdccman.lyx: --program-suffix no longer needed
7884
7885 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7886
7887          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7888          Martin Helmling added support for ddd GUI debugger.
7889          Code added to display assembly, set variables, and other commands
7890          to interface to ddd.
7891
7892 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7893
7894         * as/Makefile: fix target clean
7895         * as/clean.mk: fix target clean
7896         * as/z80/clean.mk: fix target clean
7897
7898 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7899
7900         * Makefile.common.in: added  AT EXEEXT AT
7901         * configure.in: removed all mingw32 stuff
7902         * configure: rebuilt from configure.in
7903         * doc/sdccman.lyx: updated section "installation"
7904         * support/scripts/sdcc_mingw32: adapted to configure
7905         * support/scripts/sdcc_cygwin_mingw32: added
7906
7907 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7908
7909         * src/pic Added object file support for the PIC port
7910         * src/pic Applied patch from Craig Franklin (this started the object file support)
7911         * src/regression Updated the PIC regression tests for object files
7912
7913 2003-04-20  Borut Razem <borut.razem AT siol.net>
7914
7915         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7916           lklex.c: In function `getfid':
7917           lklex.c:203: warning: array subscript has type `char'
7918         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7919           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7920         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7921           stack handling macros
7922
7923 2003-04-19  Borut Razem <borut.razem AT siol.net>
7924
7925         * "handling space characters in file path" task:
7926         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7927         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7928         * support/Util/MySystem.h: make it self-sufficient
7929         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7930           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7931           handling space characters in file path
7932         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7933           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7934         * support/Util/MySystem.c: handling space characters in executable's path
7935
7936 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7937
7938         * as/z80/Makefile: fix permanent rebuild of z80
7939         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7940         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7941
7942 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7943
7944         * src/SDCCopt.c: add special case optimization to replace modulo by
7945           a power of two with a bitwise AND.
7946
7947 2003-04-18    <johan AT balder>
7948
7949         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7950
7951 2003-04-17    <johan AT balder>
7952
7953         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7954         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7955
7956 2003-04-13  Borut Razem <borut.razem AT siol.net>
7957
7958         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7959         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7960           fixed mingw problem in adl_NORMALIZE_PATH
7961
7962 2003-04-12  Borut Razem <borut.razem AT siol.net>
7963
7964         * fixed "#pragma SAVE/RESTORE can not be nested":
7965         * src/SDCC.lex: reworked pragma handling functions
7966         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7967         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7968
7969 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7970
7971         * src/SDCCutil.c (pathEquivalent): defined but not used
7972         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7973         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7974         * configure: rebuilt from configure.in
7975         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7976         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7977         * device/include/Makefile.in: replace sdcc_datadir
7978         * device/lib/Makefile.in: replace sdcc_datadir
7979         * Makefile.common.in: add LDFLAGS from configure
7980         * packihx/Makefile.in: use LDFLAGS
7981         * src/Makefile.in: use LDFLAGS
7982         * support/cpp2/Makefile.in: add LDFLAGS from configure
7983         * support/makebin/Makefile: use LDFLAGS
7984         * .version: bumped version number to 2.3.5
7985
7986 2003-04-12  Borut Razem <borut.razem AT siol.net>
7987
7988         * completed "different paths" task:
7989         * src/SDCCmacro.c: fixed bug in handling quotes
7990         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7991         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7992
7993 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7994
7995         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7996
7997 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7998
7999         * ds390/gen.c ds390/peeph.def: fix bug 706781
8000
8001 2003-04-11  Borut Razem <borut.razem AT siol.net>
8002
8003         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8004
8005 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8006
8007         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8008         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8009          set - this bit used to not be set...).
8010         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8011           bad code in PIC Port
8012         * src/regression/and2.c added to test bug 609268
8013         * src/regression/Makefile added and2.c to regression test
8014
8015
8016 2003-04-08    <johan AT CP255758-A>
8017
8018         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8019         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8020         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8021
8022 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8023
8024         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8025         fix bug #487815
8026         * support/cpp2/Makefile.in: fix bug #487815
8027         * configure: rebuilt from configure.in
8028         * Makefile.common.in: docdir changed, new path suffixes
8029         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8030         * sdcc_vc_in.h: reflect changes from sdccconf.h
8031         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8032         * src/SDCCutil.h: remove BINDIR hack
8033         * doc/sdccman.lyx: update new path hierarchy
8034
8035 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8036
8037         * src/SDCCpeeph.c: added okToRemoveSLOC test
8038
8039 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8040
8041         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8042
8043 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8044
8045         * src/SDCCpeeph.c: added labelIsReturnOnly test
8046         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8047
8048 2003-04-05    <johan AT balder>
8049
8050         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8051         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8052         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8053         * src/SDCCast.c: fixed a warning
8054         * src/SDCCast.h: fixed a warning
8055         * src/SDCCicode.c (operandFromAst): fixed a warning
8056
8057 2003-04-04    <johan AT balder>
8058
8059         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8060         * src/SDCCast.c (decorateType): fixed bug #715076
8061         * src/SDCC.y: fixed bug #702907
8062
8063 2003-04-03    <johan AT balder>
8064
8065         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8066         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8067         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8068         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8069         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8070
8071 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8072
8073         * _decdptr.c: fix return values
8074         * _gptrget.c: fix return values
8075         * _gptrgetc.c: fix return values
8076         * _gptrput.c: fix return values
8077         * _mulint.c: fix return values
8078         * as/z80/Makefile: fix 'make -j' problem
8079
8080 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8081
8082         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8083         * configure.in: big cleanup, updated to autoconf 2.5x
8084         * configure: rebuilt from configure.in
8085         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8086         * sdcc_vc_in.h: reflect changes from sdccconf.h
8087         * doc/Makefile: fixed a flaw in "make install"
8088
8089 2003-04-02    <johan AT balder>
8090
8091         * src/ds390/gen.c (genCmp): no comments
8092         * src/mcs51/gen.c (genCmp): no comments
8093         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8094         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8095
8096 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8097
8098         * support/regression/generate-cases.py: place generated file in given sub directory
8099         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8100         * support/regression/Makefile: improvements for 'make -j';
8101         side effect: it's simpler and faster now
8102
8103 2003-03-31  Borut Razem <borut.razem AT siol.net>
8104
8105         * src/z80/main.c: link-{port} and as-{port} defined without path
8106         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8107
8108 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8109
8110         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8111
8112 2003-03-30  Borut Razem <borut.razem AT siol.net>
8113
8114         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8115           changed type of list parameter to set
8116         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8117         * src/port.h: changed type of do_assemble() parameter to set
8118         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8119           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8120           definition of "cppoutfilename" macro with NULL value in preProcess()
8121         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8122         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8123         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8124           replaced with set *binPathSet
8125         * shash_add() deallocates the item, if allready exsists, before adding the new one
8126         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8127
8128 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8129
8130         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8131           a nested for loop bug in the PIC port
8132         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8133           for loops
8134
8135 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8136
8137         * support/Util/dbuf.h: remove C++ stuff to make it portable
8138
8139 2003-03-28  Borut Razem <borut.razem AT siol.net>
8140
8141         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8142           literal strings in stringLiteral()
8143         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8144         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8145           to the project
8146
8147 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8148
8149         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8150
8151 2003-03-26    <johan AT balder>
8152
8153         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8154         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8155         * src/SDCCast.c (decorateType): fixed " -v < 3"
8156
8157 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8160         Added Lenny Story's debug infrastructure changes:
8161         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8162         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8163         * src/cdbFile.c: added
8164         * src/SDCCdebug.c: added
8165         * src/SDCCdebug.h: added
8166         * src/SDCCast.c (createFunction)
8167         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8168         * src/SDCCmain.c (parseCmdLine, main)
8169         * src/SDCCmem.c (redoStackOffsets)
8170         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8171         * src/SDCCsymt.h
8172         * src/common.h
8173         * src/avr/gen.c (genAVRCode)
8174         * src/ds390/gen.c (gen390Code)
8175         * src/mcs51/gen.c (gen51Code)
8176         * src/pic/gen.c (genpic14Code)
8177         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8178         * src/xa51/gen.c (genXA51Code)
8179         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8180
8181 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8182
8183         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8184         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8185
8186 2003-03-22    <johan AT balder>
8187
8188         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8189
8190 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8191
8192         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8193         * doc/cdbfileformat.lyx: added, written by Lenny Story
8194         * doc/Makefile: added cdbfileformat.lyx
8195         * doc/clean.mk: added cdbfileformat.lyx
8196
8197 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8198
8199         * src/mcs51/peeph.def: fix bug #705773
8200
8201 2003-03-20    <johan AT balder>
8202
8203         An sfr/sbit can have an "at #" AND an initializer
8204         * src/SDCCsymt.c (checkSClass):
8205         * src/SDCCmem.c (allocGlobal):
8206         * src/SDCCmem.c (allocLocal):
8207         * src/SDCCast.c (createBlock):
8208
8209 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8210
8211         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8212
8213 2003-03-16    <johan AT balder>
8214
8215         Undid the hackup of const and volatile, the problem is much bigger
8216         * src/SDCC.y:1.65
8217         * src/SDCCast.c:1.171
8218         * src/SDCCglue.c:1.138
8219         * src/SDCCicode.c:1.146
8220         * src/SDCCsymt.c:1.150
8221         * src/SDCCval.c:1.65
8222
8223 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8224
8225         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8226         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8227
8228 2003-03-13    <johan AT balder>
8229
8230         Hackup const and volatile modifiers in type chains a bit:
8231         * src/SDCC.y:1.63
8232         * src/SDCCast.c:1.169
8233         * src/SDCCglue.c:1.136
8234         * src/SDCCicode.c:1.143
8235         * src/SDCCsymt.c1.146
8236         * src/SDCCsymt.h1.59
8237         * src/SDCCval.c:1.63
8238
8239 2003-03-12    <johan AT balder>
8240
8241         * src/SDCCBBlock.h: more LRH debugging junk
8242         * src/SDCCcflow.h: more LRH debugging junk
8243         * src/SDCCloop.c: more LRH debugging junk
8244         * src/SDCC.y (struct_declaration): fixed bug #697590
8245         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8246         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8247         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8248
8249 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8250         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8251         test function names must now match exactly).
8252         * src/SDCCcse.c: added special case in findCheaperOp to allow
8253         extending a short integer. Makes less awful code for bug 700121 test case.
8254
8255 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8256
8257         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8258         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8259
8260 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8261
8262         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8263         actually called (operandsNotEqual() was called for all
8264         operandsNotEqualX tests).
8265
8266 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8267
8268         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8269         with shorter literals. Fixes bug 700121.
8270
8271 2003-03-11    <johan AT balder>
8272
8273         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8274
8275 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8276
8277         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8278         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8279
8280 2003-03-10  Borut Razem <borut.razem AT siol.net>
8281
8282         * src/SDCCmain.c: pipe preprocessor's output
8283         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8284         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8285         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8286         which closes all pipes in pipeSet set
8287         * src/SDCCset.c: free deleted item in function deleteSetItem()
8288         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8289         moved from z80 to src subproject
8290         * .version: increased version number to 2.3.4
8291
8292 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8293
8294         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8295         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8296         * support/regression/ports/xa51/spec.mk: fix typo
8297
8298 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8301
8302 2003-03-09  Borut Razem <borut.razem AT siol.net>
8303
8304         * src/SDCCmain.c: pipe preprocessor's output
8305         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8306         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8307         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8308         which closes all pipes in pipeSet set
8309         * src/SDCCset.c: free deleted item in function deleteSetItem()
8310         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8311         moved from z80 to src subproject
8312
8313 2003-03-09  Borut Razem <borut.razem AT siol.net>
8314
8315         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8316         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8317         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8318         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8319         * src/SDCCglobl.h: unification of WIN32 native definitions
8320
8321 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8322
8323         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8324
8325 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * src/configure.in:   check for endianess (even while cross-compiling)
8328         * src/configure:      check for endianess (even while cross-compiling)
8329         * src/configure_in.h: check for endianess (even while cross-compiling)
8330         * src/avr/gen.c:        remove old endianess stuff
8331         * src/mcs51/gen.c:      remove old endianess stuff
8332         * src/ds390/gen.c:      remove old endianess stuff
8333         * src/pic/gen.c:        remove old endianess stuff
8334         * src/pic/genarith.c:   remove old endianess stuff
8335         * src/pic/glue.c:       fix endianess check
8336         * src/pic16/gen.c:      remove old endianess stuff
8337         * src/pic16/genarith.c: remove old endianess stuff
8338         * src/pic16/glue.c:     fix endianess check
8339         * src/xa51/gen.c:       remove old endianess stuff
8340         * src/z80/gen.c:        fix endianess check
8341         * src/SDCCglue.c:       fix endianess check
8342         * src/ds390/peeph.def: fix bug 700036
8343
8344 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8347         * src/configure: find appropriate data-types on host for SDCC's int and long
8348         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8349         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8350         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8351
8352 2003-03-07    <johan AT balder>
8353
8354         Just a big NOOP:
8355                 some minor cleanups before the big shot
8356                 OP_DEFS and OP_USES now use Kevin's protection
8357                 new option --nolabelopt
8358
8359         * src/SDCCBBlock.c:
8360         * src/SDCCast.c,:
8361         * src/SDCCcflow.c:
8362         * src/SDCCcse.c:
8363         * src/SDCCicode.c:
8364         * src/SDCCicode.h:
8365         * src/SDCClabel.c:
8366         * src/SDCCloop.c:
8367         * src/SDCCmain.c:
8368         * src/ds390/ralloc.c:
8369         * src/mcs51/ralloc.c:
8370         * src/pic/ralloc.c:
8371         * src/xa51/ralloc.c:
8372         * src/z80/ralloc.c:
8373
8374 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8375
8376         * src/pic/pcode.c (get_op): fix 64 bit warnings
8377         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8378         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8379         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8380         * support/regression/tests/malloc.c: fix 64 bit warnings
8381
8382 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         * src/mcs51/gen.c (genMinus): fixed bug 696436
8385
8386 2003-03-02  Borut Razem <borut.razem AT siol.net>
8387
8388         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8389
8390 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8391
8392         * configure.in: test for mkstemp
8393         * sdccconf_in.h: add HAVE_MKSTEMP
8394
8395 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8396
8397         * device/include/ctype.h: removed warning while using --stack-auto
8398         * device/include/malloc.h: removed warning while using --stack-auto
8399         * device/include/string.h: removed warning while using --stack-auto
8400
8401 2003-02-23  Borut Razem <borut.razem AT siol.net>
8402
8403         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8404         because NDEBUG is defined (see man assert)
8405         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8406
8407 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8408
8409         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8410         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8411
8412 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8413
8414         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8415         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8416
8417 2003-02-18    <johan AT balder>
8418
8419         * as/mcs51/asmain.c (asmbl): module can start with a digit
8420         * as/z80/asmain.c (asmbl): module can start with a digit
8421
8422 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8425         * src/asm.c: fix pipe() for Mingw32
8426
8427 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8428
8429         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8430         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8431         make -V work again; --c1mode reads now from stdin
8432         * doc/sdccman.lyx: added --c1mode
8433         * support/Util/SDCCerr.c: new messages for c1 mode
8434         * support/Util/SDCCerr.h: new messages for c1 mode
8435         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8436
8437 2003-02-15    <johan AT balder>
8438
8439         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8440
8441 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8442
8443         * doc/sdccman.lyx: Environment variables, -o and other minor things
8444
8445 2003-02-14    <johan AT balder>
8446
8447         * src/xa51/main.c: before anyone really tries to use it :)
8448
8449         * Install doc's in share/sdcc/doc
8450         * removed some obsolete files
8451         * Do a proper make distclean and uninstall
8452         M Makefile.common.in
8453         R sdccbuild.sh
8454         M as/Makefile
8455         M device/include/Makefile.in
8456         M device/lib/Makefile.in
8457         M doc/sdccman.lyx
8458         M link/Makefile
8459         M sim/ucsim/doc/Makefile.in
8460         M src/clean.mk
8461         R src/avr/peeph.rul
8462         R src/xa51/peeph.rul
8463         M support/cpp2/Makefile.in
8464         M support/makebin/Makefile
8465
8466
8467 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8470
8471 2003-02-10  Borut Razem <borut.razem AT siol.net>
8472
8473         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8474         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8475         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8476         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8477         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8478         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8479         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8480         src/z80/Makefile.bcc: Borland Makefile cleanup
8481         * as/z80/Makefile.bcc: Added Borland Makefile
8482         * support/cpp2/borland.h: Removed
8483
8484 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8485
8486         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8487         * src/SDCC.lex: new pragma NOIV
8488         * src/SDCCglobl.h: new pragma NOIV
8489         * src/SDCCmem.c: new pragma NOIV
8490
8491 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8492
8493         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8494
8495 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8496
8497         * src/SDCCmain.c: signal handling is switched off by --debug
8498         * doc/Makefile: small fix for install; use clean.mk again
8499         * doc/clean.mk: clean *.pdf and *.html too
8500
8501 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8502
8503         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8504         * device/lib/printfl.c: fix a ds390 bug by making it portable
8505         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8506         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8507         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8508         * debugger/mcs51/cmd.c: converted multi-line string literals
8509         * sim/ucsim/globals.cc: converted multi-line string literals
8510         * src/SDCCmain.c: introduced signal handler to remove temp files
8511         * doc/Makefile: small tweaks, implement clean
8512         * doc: removed generated files
8513
8514 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8515
8516         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8517         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8518         Address Record is not correctly generated for DS390."
8519
8520 2003-02-02  Borut Razem <borut.razem AT siol.net>
8521
8522         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8523         * as/mcs51/asm.h: fixed compilation with Borland C
8524         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8525         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8526         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8527         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8528         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8529         src/z80/Makefile.bcc: delete $(LIB) only if exist
8530         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8531
8532 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * device/include/malloc.h: introduced NULL
8535         * device/include/string.h: introduced NULL
8536         * device/include/stdlib.h: introduced NULL
8537         * device/lib/_memcpy.c: removed NULL
8538         * device/lib/_strcat.c: removed NULL
8539         * device/lib/_strchr.c: removed NULL
8540         * device/lib/_strcmp.c: removed NULL
8541         * device/lib/_strcpy.c: removed NULL
8542         * device/lib/_strcspn.c: removed NULL
8543         * device/lib/_strlen.c: removed NULL
8544         * device/lib/_strncat.c: removed NULL
8545         * device/lib/_strncmp.c: removed NULL
8546         * device/lib/_strncpy.c: removed NULL
8547         * device/lib/_strpbrk.c: removed NULL
8548         * device/lib/_strrchr.c: removed NULL
8549         * device/lib/_strspn.c: removed NULL
8550         * device/lib/_strstr.c: removed NULL
8551         * device/lib/_strtok.c: removed NULL
8552         * device/lib/malloc.c: removed NULL, include own header
8553
8554 2003-02-02    <johan AT balder>
8555
8556         * 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
8557         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8558         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8559         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8560         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8561         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8562
8563 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8564
8565         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8566         area 'DATA'"
8567
8568 2003-02-01    <johan AT balder>
8569
8570         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8571
8572 2003-01-31    <johan AT CP255758-A>
8573
8574         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8575
8576 2003-01-30    <johan AT balder>
8577
8578         * src/SDCCBBlock.c: automatic bug detection
8579         * src/SDCCicode.c: automatic bug detection
8580
8581 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8582
8583         * src/SDCCglobl.h:   now --xram-size 0 works
8584         * src/SDCCmain.c:    now --xram-size 0 works
8585
8586 2003-01-29    <johan AT balder>
8587
8588         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8589
8590 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8591
8592         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8593         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8594         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8595         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8596         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8597         * src/SDCCmain.c:    Added options --xram-size and --code-size
8598
8599 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8600
8601         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8602         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8603
8604 2003-01-27    <johan AT balder>
8605
8606         * src/SDCC.y: fixed bug #613764
8607
8608 2003-01-26    <johan AT balder>
8609
8610         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8611         * src/SDCCsymt.h: fixed bug #673374
8612         * src/SDCCglue.c: fixed bug #661910
8613         * src/SDCCast.c: fixed bug #458099 and 673374
8614
8615 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8616
8617         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8618         * as/mcs51/strcmpi.h: added
8619         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8620         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8621         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8622         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8623         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8624         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8625         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8626         * as/mcs51/Makefile.aslink: new module strcmpi
8627         * as/mcs51/Makefile.asx8051: new module strcmpi
8628         * as/mcs51/Makefil.bcc: new module strcmpi
8629         * as/mcs51/Makefile.in: new module strcmpi
8630         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8631
8632 2003-01-26    <johan AT balder>
8633
8634         * src/SDCCglue.c: reverted back to 1.124
8635         * src/SDCCast.c: reverted back to 1.156
8636         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8637
8638 2003-01-25    <johan AT balder>
8639
8640         * src/SDCCglue.c: A better fix for bug #661910
8641         * src/SDCCast.c: A better fix for bug #661910
8642         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8643
8644 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8645
8646         * src/Makefile.in: remove spawn.o
8647         * src/SDCCmain.c: remove spawn.h
8648         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8649         * src/spawn.c: removed
8650         * src/spawn.h: removed
8651         * support/regression/ports/ds390/spec.mk: link with -r
8652
8653 2003-01-24    <johan AT CP255758-A>
8654
8655         * src/ds390/gen.c (aopOp): fixed bug #667458
8656         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8657         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8658         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8659
8660 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8661
8662         * src/mcs51/peeph.def: better assembler identation by Frieder
8663         * src/mcs51/gen.c: better assembler identation by Frieder
8664
8665 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8666
8667         * as/z80/string.h: removed for gcc 3.2
8668         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8669         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8670
8671 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8674         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8675         * support/regression/Makefile: separate temp files for ports
8676         * support/regression/generate-cases.py: separate temp files for ports
8677         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8678         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8679
8680 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8681
8682         * moved tinitalk to device/examples/ds390
8683
8684 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8685
8686         * as/mcs51/lkmem.c: rflag is for DS390
8687         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8688         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8689                          (linkEdit): move mem- and map-files the same way as ihx-files
8690         * src/z80/main.c (_setDefaultOptions): removed --generic
8691         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8692         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8693         * src/pic/glue.c (picglue): --c1mode works again
8694         * src/pic16/glue.c (pic16glue): --c1mode works again
8695         * src/asm.c (printCLine): fix #660034
8696
8697 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8698
8699         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8700         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8701         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8702         * as/mcs51/lkmem (summary): better fix for sp problem
8703         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8704         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8705         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8706                                               remove --stack-after-data
8707
8708 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8709
8710         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8711         * src/SDCCutil.c (join): ugly bug: missing '\0'
8712         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8713
8714 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8715
8716         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8717         * src/port.h: typo
8718         * src/pic/main.c (_asmCmd): gpasm supports -o
8719         * src/z80/main.c: more general macros
8720         * device/lib/Makefile.in: remove intermediate files
8721
8722 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8723
8724         * .version: Bumped version number to 2.3.3
8725         * src/SDCCBBlock.c: new option -o
8726         * src/SDCCglobl.h: new option -o
8727         * src/SDCCglue.c: new option -o
8728         * src/SDCCmain.c: new option -o
8729         * src/asm.c: new option -o
8730         * src/ds390/main.c: new option -o
8731         * src/pic/glue.c: new option -o
8732         * src/pic/pcode.c: new option -o
8733         * src/pic/ralloc.c: new option -o
8734         * src/pic16/glue.c: new option -o
8735         * src/pic16/pcode.c: new option -o
8736         * src/pic16/ralloc.c: new option -o
8737         * src/z80/main.c: new option -o
8738         * device/lib/Makefile.in: use -o
8739         * support/regression/ports/ds390/spec.mk: use -o
8740         * support/regression/ports/gbz80/spec.mk: use -o
8741         * support/regression/ports/mcs51/spec.mk: use -o
8742         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8743         * support/regression/ports/z80/spec.mk: use -o
8744         * support/regression/ports/ucz80/spec.mk: use -o
8745         * support/regression/ports/xa51/spec.mk: use -o
8746         * support/regression/fwk/lib/timeout.c: fix usage string
8747
8748 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8749         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8750
8751 2003-01-07    <johan AT balder>
8752
8753         * src/SDCCast.c (decorateType): fixed bug #600035
8754
8755 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8756         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8757         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8758         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8759         * src/pic/pcode.c: outcommented unused variable to remove warnings
8760         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8761
8762 2003-01-06    <karl AT turbobit.com>
8763         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8764    regression tests.
8765
8766 2003-01-06    <johan AT balder>
8767
8768         * src/SDCCicode.c: fixed array add
8769
8770 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8771         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8772         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8773
8774 2003-01-04    <johan AT balder>
8775
8776         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8777
8778 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8779         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8780
8781 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8782         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8783         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8784
8785 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8786         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8787
8788 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8789         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8790
8791 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8792         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8793
8794 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8795
8796     * in \sdcc\as\mcs51\ changed these files in order to create an
8797     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8798     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8799     following files to include the previous two files: aslink.dsp,
8800     Makefile.aslink, Makefile.bcc, and Makefile.in.
8801
8802     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8803     .adb instead of .cdb
8804
8805 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8806
8807         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8808         value from option --iram-size.
8809
8810 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8811
8812         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8813         dram[] array.
8814
8815 2002-09-18    <wiml AT hhhh.org>
8816
8817         * SDCClrange.h: exposed setFromRange() and setToRange()
8818         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8819           packRegsForAccUse() (bug 542397)
8820         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8821           multiple times and emitting the fetch operations more than once
8822           added aopGetUsesAcc() function to allow binary operators to
8823           fetch their operands in the correct order; made genMinus() emit
8824           compact code for X = LITERAL - Y
8825
8826 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8827         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8828         sprintf() in line 1267.
8829
8830 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8831         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8832         like ports.
8833
8834 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8835         Changes to aslink (All the changes are marked with 'JCF'):
8836
8837         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8838         summary().
8839
8840         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8841         area BSEG.  Also moves, if possible, the DATA area down into the internal
8842         ram so more space is available.
8843
8844         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8845         sflag.
8846
8847         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8848         not bytes.  Function summary() which creates a memory usage summary
8849         file with extension .mem.  Reports of overlaping stack and small stack
8850         size.  If the space for the stack is less than 16 bytes aslink trows a
8851         warning.
8852
8853         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8854         the 8051.  Option 'y' for memory summary output file.
8855
8856         Changes to sdcc (All the changes are marked with 'JCF'):
8857
8858         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8859
8860         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8861         overlaying area for it (uses RegBankUsed[4]).
8862
8863         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8864         bank zero as used by default.  By default aslink locates the stack
8865         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8866         the creation of the .mem file.  Delegates the allocation of data area
8867         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8868         the begining of the stack area to aslink.
8869
8870         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8871         glue() in SDCCglue.c creates an area for it.
8872
8873 2002-09-03  Borut Razem <borut.razem AT siol.net>
8874         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8875         sdcc/src/pic/glue.c:
8876         introduced atexit() handler for teporay files removal in case of
8877         errors, assertions, ...
8878
8879 2002-08-29  Borut Razem <borut.razem AT siol.net>
8880         * sdcc/support/cpp2/auto-host_vc_in.h:
8881         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8882         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8883         Maybe there is a similar problem with BORLANDC? It should be checked!
8884
8885         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8886         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8887         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8888         was not executed, and the compiler (cl) launched a warning:
8889         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8890
8891 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8892         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8893
8894 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8895         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8896
8897         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8898           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8899           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8900           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8901           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8902           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8903           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8904         - added Release configuration in VS projects
8905         - review of compiler an linker options
8906         - VC .exe files are generated in bin_vc directory, not to interfere
8907           with binaries generated from other projects (cygwin, mingw, bcc ...)
8908
8909         * sdcc/src/yacc.dsp: added
8910
8911         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8912         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8913         and insert the version number definitions from .version
8914
8915         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8916
8917         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8918         added - genarate auto-host.h using auto-host_vc_in.h as template
8919
8920         * sdcc/sdcc_vc.h,
8921         removed from CVS, generated automatically
8922
8923 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8924         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8925
8926 2002-08-11  Borut Razem <borut.razem AT siol.net>
8927         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8928
8929 2002-08-10  Borut Razem <borut.razem AT siol.net>
8930         * src/SDCCmain.c (main):
8931         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8932         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8933         The consequence was that some temporary files were not removed.
8934
8935         * src/SDCCglue.c:
8936         unification of code in functions tempfilename() and tempfile():
8937         function tempnam() is defined in Visual Studio 6.0 and .NET
8938
8939         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8940
8941         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8942           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8943         - removed compiler command line option /WX: Treats all warnings as errors
8944         - update a list of source files, included into the project
8945
8946         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8947           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8948         changed project type to Generic Project so that can be correcly converted to VS.NET project
8949
8950         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8951
8952         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8953
8954         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8955
8956         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8957         added return 0 statements after assert() to make compiler happy
8958
8959         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8960         added newline in the def file to keep MSC compiler satisfied
8961
8962         * sdcc/src/z80/gen.c:
8963         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8964           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8965         - solved MSC error in function aopDump()
8966
8967         * sdcc_vc.h: define PREFIX as "\\sdcc"
8968
8969 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8970         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8971
8972 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8973         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8974         - Rewrote the register banking algorithm.
8975         - Added pCode live-range analysis to registers (for now, only non-used and
8976         singly-used registers optimized away)
8977
8978         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8979
8980         * 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.
8981
8982 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8983         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8984
8985 2002-04-22  Michael Hope  <michaelh AT vroom>
8986
8987         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8988
8989         * configure.in (DD_COPT): Added include support required for gbdk.
8990
8991         * .version: Bumped version number just to increase it.
8992
8993         * src/SDCCmain.c: Added -nostdinc to the default options.
8994
8995 2002-04-15  Michael Hope  <michaelh AT vroom>
8996
8997         * device/lib/z80/printf.c (sprintf): Added.
8998
8999         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9000
9001         * src/z80/peeph.def: Added transpose redundent load rule.
9002
9003         * src/z80/main.c: Added force callee saves for jaune.
9004
9005         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9006
9007         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9008
9009 2002-03-28  Johan Knol  <johan AT balder>
9010
9011         * src/SDCCval.c: fixed bug #532436
9012
9013 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9014         * /src/port.h:
9015         Added "char *Processor" field to the port structure.
9016
9017         * /src/SDCCmain.c:
9018         Added -p option. Allows port dependent processor to be specified.
9019
9020         * all ports:
9021         Initialized the new field char *Processor field to NULL in all ports
9022
9023         * /src/pic/*:
9024         Compiler generated registers for interrupt context saving
9025         were not getting allocated.
9026
9027 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9028
9029         * /src/SDCCast.c:
9030         Fixed left shift. Will promote the left side of a left shift
9031         if a) left shifting more than size of operand or b) when assigned
9032         to something size > size of left side
9033
9034 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9035         * src/pic/*
9036         tons of changes. Register allocation has been
9037         rewritten. Added customization for the various PICs. Flow
9038         analysis is restructured. ...
9039
9040         * src/pic/device.h:
9041         Added
9042
9043         * src/pic/device.c:
9044         Added. device.c is a PIC port hack to accomodate variations
9045         in PIC devices.
9046
9047 2002-03-13  Michael Hope  <michaelh AT vroom>
9048
9049         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9050
9051 2002-03-04  johanknol  <johanknol AT manik>
9052
9053         * /src/SDCCval.c: fixed
9054
9055         const unsigned char arr[][2] = { { 0, 1 } };
9056         t18.c:1: error: Initializer element is not constant
9057
9058 2002-03-04  bela  <bela AT manik>
9059
9060         * /device/include/mcs51reg.h:
9061         ds89c420 register definition update
9062
9063 2002-03-03    <johan AT FRIJA>
9064
9065         * support/Util/SDCCerr.c: did something, but don't no why anymore
9066
9067         * support/regression/tests/bug-524691.c: made it a little less shy
9068
9069         * src/SDCCast.c (decorateType): fixed bug #524697
9070
9071         * src/SDCCast.c: made some lineno improvements
9072
9073         * src/SDCCval.c (getNelements): changed warning to error
9074
9075         * src/SDCCglue.c (printIvalArray): changed warning to error
9076
9077         * src/SDCCicode.c: fixed a warning for mingw
9078
9079         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9080
9081         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9082
9083 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9084
9085         * src/ds390/peeph.def:
9086         Added some more peephole rules
9087
9088         * src/ds390/gen.c: Various fixes & enhancements
9089
9090         * src/SDCClrange.c, src/SDCClrange.h:
9091         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9092
9093         * src/ds390/ralloc.c:
9094         various fixes & enhancements (ds390) specific
9095
9096         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9097         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9098         from rallocs.
9099
9100         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9101
9102 2002-03-02    <johan AT FRIJA>
9103
9104         * src/SDCCast.c (decorateType): fixed bug #524708
9105
9106         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9107
9108         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9109
9110 2002-03-01  Michael Hope  <michaelh AT vroom>
9111
9112         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9113
9114         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9115
9116 2002-03-01    <johan AT FRIJA>
9117
9118         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9119
9120         * src/SDCCast.c (decorateType): fixed bug #524209
9121
9122         * src/SDCCval.c (valNot): fixed bug #524195
9123
9124 2002-02-26    <johan AT balder>
9125
9126         * src/xa51/gen.c: fixed a warning
9127
9128         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9129
9130         * src/SDCCast.c (decorateType): fixed bug #522534
9131
9132 2002-02-23    <johan AT balder>
9133
9134         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9135
9136 2002-02-22    <johan AT balder>
9137
9138         * src/SDCCast.c: fixed bug #514865
9139
9140         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9141
9142 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9143
9144         * sdcc/src/SDCCloop.c:
9145         Previous fix was not good. basic blocks that have "break" or "return" are
9146         not really partof a loop , but live ranges used in these blocks should
9147         be live thru the entire loop, so set partOfLoop but don't add them to
9148         loop region
9149
9150 2002-02-21    <johan AT FRIJA>
9151
9152         * src/SDCCcse.c: fixed bug #514308
9153
9154 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9155
9156         * src/SDCCloop.c:
9157         Fixed BUG #519583. If a conditional block ended in a return/break
9158         statement inside a loop, it was not being considered part of the loop.
9159
9160         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9161
9162 2002-02-10  Karl Bongers <karl AT turbobit.com>
9163
9164         * debugger/*:
9165         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9166         with lots of comments and notes.
9167
9168         * device/examples/test2.c:
9169         Fix bug, "red" variable not being initialized(compiler complained).
9170
9171         * device/examples/Makefile, examples/test3.c:
9172         Add Makefile in device/examples folder, compiles test3.c
9173         for use as a multiple module SDCDB test case.
9174
9175         * sim/ucsim/cmd.src/cmdset.cc:
9176         Took out debug printfs in ucsim "next" command.
9177
9178         * sim/ucsim/xa.src:
9179         Karl and Johan start ucsim XA support.  Most dissassembly working,
9180         about 75% emulation done(plenty of work remaining).
9181
9182         * sim/ucsim/z80.src:
9183         Add Z80 support to ucsim, add test-ucz80 regression test,
9184         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9185         Notice z80 compiler fails on examples/test3.c/crc code.
9186
9187 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9188
9189         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9190         Added support for --parms-in-bank1
9191
9192         * src/ds390/peeph.def:
9193         added a few more peephole optimzations
9194
9195         * src/ds390/main.c:
9196         1) added __builtin_inp & __builtin_outp used to read in data of given length
9197            from a memory mapped port
9198         2) added __builtin_memcmp
9199         3) added __builtin_swapw swap bytes of a short
9200
9201         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9202         1) handle multiple send & receives from register bank1
9203         2) ralloc can now allocate DPTR1 to some liveRanges
9204
9205         * src/SDCCsymt.c, src/SDCCsymt.h:
9206         changes to handle multiple sends & receives
9207
9208         * src/SDCCptropt.h:
9209         added some pointer arithmetic optimization
9210
9211         * src/SDCCptropt.c:
9212         added some pointer arithmetic optimizations but not stable yet so not
9213         called from anywhere (will get this working shortly)
9214
9215         * src/SDCCopt.c: fixed for multiple sends & receives
9216
9217         * src/SDCCmain.c:
9218         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9219         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9220            set preprocessor defines (depending on options)
9221
9222         * src/SDCCicode.c, src/SDCCicode.h:
9223         changes made to handle multiple sends & receives
9224
9225         * src/SDCCglobl.h:
9226         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9227
9228         * src/SDCCcse.c, src/SDCCcse.h:
9229         added function findbackward def (to be used in upcoming optimization)
9230
9231         * src/SDCCcflow.c, src/SDCCcflow.h:
9232         added function returnAtEnd - to determine if a basic block terminates with
9233         a RETURN iCode
9234
9235         * src/SDCCast.c, src/SDCCast.h:
9236         added option parms-in-bank1
9237
9238         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9239         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9240         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9241         adjusted for --parms-in-bank1 option
9242
9243         * device/include/string.h:
9244         donot redefine "reentrant" keyword
9245
9246         * device/include/ds80c390.h: Added some more SFRs
9247
9248 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9249
9250         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9251
9252 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9253
9254         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9255
9256 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9257
9258         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9259
9260 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9261
9262         * Added --xram-movc option
9263
9264 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9265
9266         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9267
9268 2002-01-11  Johan Knol
9269
9270         * Added math lib of Jesus Calvino-Fraga
9271
9272 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9273
9274         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9275         * support/regression/Makefile: new target test-mcs51-stack-auto
9276         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9277
9278 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9279
9280         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9281
9282 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9283
9284         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9285
9286 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9287
9288         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9289
9290         * src/SDCCglue.h: add definition for printIvalChar()
9291
9292 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9293
9294         * src/SDCCast.c: fix #498138 by Johan
9295
9296         * src/SDCCglue.c: fix #498138 by Johan
9297
9298 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9299
9300         * support/regression/Makefile: fix clean
9301
9302         * support/regression/ports/ds390/support.c: fix transmission of last character
9303
9304 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9305
9306         * /sdcc/src/ds390/gen.c:
9307         a) improved computing address of stack variable
9308         b) took out some #if 0 code
9309         c) improved parmBytes adjustment
9310         d) improved genPlusIncr & genMinusIncr
9311         e) genCmp could generate bad code (when left assigned to DPTR)
9312         f) Fixed bug in hasInc
9313
9314         * /sdcc/src/ds390/ralloc.c:
9315         a) packRegsForSupport could mess up live information (Fixed)
9316         b) packRegsDPTRuse could be incorrect for left & right shift
9317
9318         * /sdcc/src/mcs51/ralloc.c:
9319         packRegsForSupport could mess up the live information (Fixed)
9320
9321         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9322
9323         * /sdcc/src/SDCCast.c:
9324         can reverse a loop even if function call is present as long
9325         as the loop control variable is local & is not passed as parameter
9326
9327 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9328
9329         * /sdcc/ChangeLog: *** empty log message ***
9330
9331         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9332         More builtin function additions for TININative
9333
9334         * /sdcc/src/ds390/ralloc.c:
9335         Had broken the regression testsuite
9336
9337         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9338
9339         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9340         Added funcattr hasStackParms will be set for reentrant functions when there
9341         are paramteres on the stack, this helps in minimizing frame pointer generation
9342         typeFromStr can handle function pointers now
9343
9344         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9345         *** empty log message ***
9346
9347 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9348
9349         * /src/ds390/gen.c, /src/ds390/main.c:
9350         More builtin function additions for TININative
9351
9352         * /src/ds390/ralloc.c:
9353         Had broken the regression testsuite
9354
9355         * /src/SDCCast.c: Fixed a bug in dumptree
9356
9357         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9358         Added funcattr hasStackParms will be set for reentrant functions when there
9359         are paramteres on the stack, this helps in minimizing frame pointer generation
9360         typeFromStr can handle function pointers now
9361
9362         * /doc/builtins.txt, /doc/TININative.txt:
9363         *** empty log message ***
9364
9365
9366 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9367
9368         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9369         ALPHA version for -mTININative
9370
9371         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9372         updated to reflect changes in the port structure
9373
9374         * /src/port.h:
9375         added function do_assemble (similar to do_link) if non-null this function
9376         will be called to do assembly (-mTININative) requires a multi command
9377         assembly
9378         added function genAssemblerEnd will be called to generate assembler Epilogue
9379
9380         * /src/SDCCsymt.c:
9381         added _JavaNative to debug info printing
9382
9383         * /src/SDCCmain.c: added option --tini-libid
9384         added port->do_assemble function (-mTININative) has a multi command assemble
9385
9386         * /src/SDCCglue.c: Disabled "constExpr" check
9387         added port->genAssemblerEnd function
9388
9389         * /src/SDCCglobl.h: Added option --tini-libid value
9390
9391         * /src/SDCCast.h:
9392         tookout optimizeCompare from the header (has no external references)
9393
9394         * /src/SDCCast.c: made one more function "static"
9395
9396 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9397
9398         * src/z80/mappings.i: Added z80asm support.
9399
9400         * src/z80/main.c: Added z80asm support on --asm=z80asm
9401
9402         * src/z80/gen.c: Fixed asm portability issues.
9403
9404         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9405
9406         * src/SDCCglue.c (printExterns): Added global/extern split.
9407
9408 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9409
9410         * support/regression/Makefile: added test for mcs51 model large
9411
9412         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9413
9414         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9415
9416 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9417
9418         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9419
9420 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9421
9422         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9423
9424         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9425
9426 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9427
9428         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9429
9430         * support/regression/tests/simplefloat.c: Port to mcs51.
9431
9432 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9433         * support/regression/tests/bug-485362.c: Added.
9434
9435         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9436
9437         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9438
9439         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9440
9441         * src/z80/gen.c (aopDump): Added a dump function.
9442
9443 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9444         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9445
9446         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9447
9448         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9449
9450         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9451
9452         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9453
9454         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9455
9456         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9457
9458         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9459
9460         * support/regression/ports/ds390/support.c: Use tinibios.
9461
9462         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9463
9464 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9465
9466         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9467         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9468
9469         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9470
9471         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9472
9473 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9474
9475         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9476
9477         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9478         (packRegsForIYUse): Created and optimised.
9479
9480 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9481
9482         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9483 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9484
9485         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9486
9487         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9488
9489         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9490
9491 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9492
9493         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9494
9495         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9496
9497 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9498
9499         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9500
9501         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9502
9503         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9504
9505 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9506
9507         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9508         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9509         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9510
9511         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9512
9513         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9514         (genNotFloat): Added.
9515         (genUminusFloat): Added.
9516
9517         * device/lib/z80/Makefile: Added floating pt stubs.
9518
9519         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9520
9521         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9522
9523         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9524
9525 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9526
9527         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9528
9529         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9530
9531         * sdcc/support/regression/Makefile: Add port ds390.
9532
9533         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9534
9535         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9536
9537         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9538
9539         * sdcc/support/regression/ports/ds390/support.c: Added.
9540
9541         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9542
9543         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9544
9545         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9546
9547 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9548
9549         * device/include/malloc.h: Added z80 and gbz80 support.
9550
9551         * device/lib/gbz80/heap.s: Added.
9552
9553         * device/lib/z80/heap.s: Added.
9554
9555         * device/lib/malloc.c: Added z80 and gbz80 support.
9556
9557         * support/regression/tests/malloc.c (testMalloc): Added.
9558
9559         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9560
9561         * support/regression/tests/bug-478094.c: Added.
9562
9563         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9564
9565 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9566
9567         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9568
9569         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9570
9571         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9572
9573         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9574
9575         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9576
9577 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9578
9579         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9580
9581 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9582
9583         * support/regression/tests/bug-477927.c: Added.
9584
9585         * src/z80/peeph.def: Added minor rules.
9586
9587         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9588
9589         * src/z80/peeph.def: Added jump optimisation modification.
9590
9591 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9592
9593         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9594
9595 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9596
9597         * support/regression/tests/funptrs.c: Added.
9598
9599 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9600
9601         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9602
9603 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9604
9605         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9606
9607         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9608
9609         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9610         (movLeft2ResultLong): Created.
9611
9612         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9613         (joinPushes): Added.  Joins two char pushes into a word push.
9614
9615 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9616
9617         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9618
9619         * support/makebin/Makefile (install): Added creation of dest dir.
9620
9621 2001-10-24 Karl Bongers <karl AT turbobit.com>
9622
9623         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9624
9625 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9626
9627         * src/z80/ralloc.c: Turned off faulty pack for one use.
9628
9629         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9630
9631         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9632
9633 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9634
9635         * support/regression/Makefile: Improved clean
9636
9637         * support/regression/ports/gbz80/spec.mk: Added clean
9638
9639         * support/regression/ports/host/spec.mk: Added clean
9640
9641         * support/regression/ports/z80/spec.mk: Added clean
9642
9643         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9644
9645         * support/regression/ports/mcs51/timeout.c: little improvements
9646
9647 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9648
9649         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9650
9651         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9652
9653         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9654
9655 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9656
9657         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9658
9659         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9660
9661 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9662         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9663
9664         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9665
9666         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9667
9668         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9669
9670         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9671
9672         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9673
9674         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9675
9676         * support/regression/tests/longor.c: Added.
9677
9678 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9679
9680         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9681
9682         * as/mcs51/aslink.h: define PATH_MAX
9683
9684         * as/mcs51/asm.h: define PATH_MAX
9685
9686         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9687
9688         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9689
9690         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9691
9692         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9693
9694         * src/SDCCglobl.h: define PATH_MAX
9695
9696         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9697
9698         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9699
9700 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9701
9702         * src/z80/gen.c (gencjneshort): Fixed
9703
9704         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9705
9706 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9707
9708         * support/regression/tests/bug-469671.c: Added.
9709
9710         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9711
9712 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9713
9714         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9715
9716         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9717
9718 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9719
9720         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9721
9722         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9723
9724         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9725
9726         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9727
9728         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9729
9730         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9731
9732         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9733
9734 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9735
9736         * 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.
9737
9738         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9739
9740         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9741
9742 2001-10-07    <johan AT FRIJA>
9743
9744         * device/lib/gets.c (gets): fixed the return value.
9745
9746 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9747         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9748
9749         * 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.
9750
9751         * 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.
9752
9753         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9754
9755         * src/pic/gen.c: Removed Safe_strdup.
9756
9757         * configure.in: Added option to enable libgc support.
9758
9759         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9760         (bitVectUnion): Optimised.
9761         (bitVectIntersect): Optimised.
9762         (bitVectBitsInCommon): Optimised.
9763         (bitVectCplAnd): Optimised.
9764
9765         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9766
9767 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9768
9769         * src/SDCCmain.c: distinguish between assembler debug and plain options
9770
9771         * src/avr/main.c:   remove standard assembler options
9772
9773         * src/ds390/main.c: remove standard assembler options
9774
9775         * src/mcs51/main.c: remove standard assembler options
9776
9777         * src/port.h: removed "PENDING" comment
9778
9779 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9780
9781         * src/device/lib/_mulint.c  : new, with assember functions
9782
9783         * src/device/lib/_mullong.c : new, with assember functions
9784
9785         * src/device/lib/_divuint.c : with assember functions
9786
9787         * src/device/lib/_divsint.c : with assember functions
9788
9789         * src/device/lib/_divulong.c: with assember functions
9790
9791         * src/device/lib/_divslong.c: with assember functions
9792
9793         * src/device/lib/_moduint.c : with assember functions
9794
9795         * src/device/lib/_modsint.c : with assember functions
9796
9797         * src/device/lib/_modulong.c: with assember functions
9798
9799         * src/device/lib/_modslong.c: with assember functions
9800
9801         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9802
9803         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9804
9805         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9806                                       replaced _mululong.c and _mulslong.c by _mullong.c
9807
9808 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9809
9810         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9811
9812 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9813
9814         * src/SDCCglue.c: test, if win32api is available for MINGW
9815
9816 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9817
9818         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9819         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9820         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9821         * support/regression/ports/host/spec.mk: removed GENERIC
9822         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9823         * support/regression/ports/z80/spec.mk: removed GENERIC
9824
9825 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9826
9827         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9828
9829         * support/regression/tests/bug-467035.c: Created.
9830
9831 2001-10-01    <johan AT FRIJA>
9832
9833         * src/SDCC.y: fixed bug #466586 part 1
9834
9835 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9836
9837         * SDCCicode.c: z80 has no generic pointers
9838         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9839
9840 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9841
9842         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9843
9844 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9845
9846         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9847
9848         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9849
9850 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9851
9852         * configure.in: Fixed up so that ucsim is only configured once.
9853
9854         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9855
9856         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9857         (getPathDifference): As above.
9858
9859         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9860
9861         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9862
9863 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9864         * .version: Updated to 2.3.1
9865
9866         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9867         Added copyright header.
9868
9869         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9870         (assemble): Added support for macro based assembler commands.
9871         (linkEdit): Added support for macro based linker commands.
9872         (preProcess): Changed the pre-processor to use macros.
9873         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9874         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9875
9876         * device/lib/z80/crt0.s: Added module name for debugging.
9877
9878 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9879
9880         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9881
9882         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9883
9884         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9885
9886         * src/Makefile.in: Added SDCCmacro and SDCCutil
9887
9888 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9889
9890         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9891
9892 2001-09-16    <johan AT FRIJA>
9893
9894         * 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.
9895
9896 2001-09-15    <johan AT FRIJA>
9897
9898         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9899         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9900
9901 2001-09-11    <johan AT FRIJA>
9902
9903         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9904
9905 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9906
9907         * support/regression/tests/bug-460444.c: Added test case.
9908
9909         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9910         (genCast): Added justification for all of the asserts.
9911
9912 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9913
9914         * support/regression/support.c: _xdata replaced by xdata
9915
9916         * support/regression/spec.mk: removed _generic
9917
9918 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9919
9920         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9921
9922         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9923         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9924
9925         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9926
9927         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9928
9929         * support/regression/tests/bug-460010.c: Added test case.
9930
9931         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9932
9933 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9934
9935         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9936
9937         * support/regression/testfwk.c: removed workaround for bug #436344
9938
9939         * support/regression/tests/bp.c: use less memory with mcs51
9940
9941         * support/regression/tests/bug-441448.c: use less memory
9942
9943         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9944
9945         * support/regression/collate-results.py: typo
9946
9947 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9948
9949         * support/regression/tests/fetchoverlap.c: Added new test case.
9950
9951         * support/regression/tests/bp.c: Added new test case.
9952
9953         * support/regression/tests/bug-448984.c: Added new test case.
9954
9955         * support/regression/tests/pow2shifts.c: Added new test case.
9956
9957         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9958         (genlshTwo): Fixed right shift for count > 8.
9959
9960         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9961
9962 2001-09-08    <johan AT FRIJA>
9963
9964         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9965
9966 2001-09-07    <johan AT FRIJA>
9967
9968         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9969
9970         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9971
9972 2001-09-06    <johan AT FRIJA>
9973
9974         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9975         * bernhard noted me at this: "() equals to (void)" (1.38)
9976
9977 2001-09-05    <johan AT FRIJA>
9978
9979         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9980
9981 2001-09-04    <johan AT FRIJA>
9982
9983         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9984
9985
9986 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9987
9988         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9989
9990 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9991
9992         * link/z80/aslink.h: Fixed path for PATH_MAX
9993
9994 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9995
9996         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9997
9998         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9999
10000         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10001
10002         * 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.
10003
10004 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10005
10006         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10007         (genCmp): Fixed up genCmp for the GB with longs.
10008
10009         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10010
10011         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10012
10013         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10014
10015         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10016
10017 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10018
10019         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10020
10021 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10022
10023         * 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.
10024
10025         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10026
10027 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10028
10029         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10030
10031         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10032
10033 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10034
10035   * sim/ucsim/configure:    little improvement of Cygwin-detection
10036   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10037   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10038   * support/regression/tests/bug-221100.c: small changes for mcs51
10039   * support/regression/tests/bug-221168.c: small changes for mcs51
10040   * support/regression/tests/bug-227710.c: small changes for mcs51
10041   * support/regression/tests/staticinit.c: small changes for mcs51
10042   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10043   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10044   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10045
10046 $Revision$