3b7d5e39348df07a0dab066e8a056f6bbb587b04
[fw/sdcc] / ChangeLog
1 2005-10-31 Borut Razem <borut.razem AT siol.net>
2
3         * support/regression/generate-cases.py: escape backslashes in {testcase}:
4           WIN32 backslash path delimiters should be escaped when used in C strings
5         * support/regression/tests/bitfields.c: exclude failing assertions for
6           __CYGWIN32__ and __MINGW32__ hosts
7
8 2005-10-30 Borut Razem <borut.razem AT siol.net>
9
10         * src/SDCCutil.c: corrected double comparison typo
11
12 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
13
14         * device/lib/medium/Makefile: added for new memory model medium
15         * device/include/asm/mcs51/features.h: updated for medium/pdata
16         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
17           added Multiply & Accumulate sbit's and MAC0_PAGE define
18         * device/include/mcs51/c8051f300.h: added sfr16 definitions
19         * device/include/mcs51/c8051f310.h: added sfr16 definitions
20         * device/lib/_mullong.c: update for medium model
21         * device/lib/incl.mk: added medium model
22         * doc/sdccman.lyx: documented medium model
23         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
24         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
25         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
26         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
27           (allocParms): set SCLS and OCLS to pdata for medium model
28         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
29           for pdata,
30           (powof2): return <0 if not power of 2
31         * src/avr/gen.c (genBitWise): use updated powof2
32         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
33           (shiftR2Left2Result): small optimization in setup, save acc when storing,
34           (shiftLLeftOrResult): use B if necessary
35         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
36         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
37         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
38         * support/regression/Makefile.in: added test-mcs51-medium
39         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
40
41 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
42
43         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
44         specifier unsigned
45         * device/lib/time.c (mktime): fixed bug 1334315
46
47 2005-10-28 Raphael Neider <rneider AT web.de>
48
49         * device/include/pic/p16f_common.inc: added common declarations
50         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
51
52 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
53
54         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
55           (aopPutUsesAcc): added to predict accumulator use,
56           (assignResultValue): save acc if necessary,
57           (genMinusDec): store result if indirectly addressed,
58           (genDivOneByte):  save acc if necessary,
59           (movLeft2Result): bugfix if left already in acc,
60           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
61             attention to accumulator use (esp. pdata),
62           (genReceive): receive pdata correctly
63         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
64         * src/SDCCicode.h: added isOperandInPagedSpace prototype
65
66 2005-10-27 Raphael Neider <rneider AT web.de>
67
68         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
69
70 2005-10-27 Raphael Neider <rneider AT web.de>
71
72         * .version: changed version to 2.5.4
73         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
74         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
75           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
76             arithmetics support routines
77         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
78         * device/lib/Makefile.in: also create installdir for pic
79
80         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
81           pic14 port as well
82         * src/pic/device.c (dump_sfr): rewritten to delegate register
83           placement to the linker (use `extern sym' rather than sym EQU addr),
84           (validAddress): fixed to check last specified address
85         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
86           (popGetLit): truncate literal value to 8 bit,
87           (popGet): moved assert to more appropriate place
88           (popGetExternal): create pCode operand from and mark the according
89             symbol as being `extern'
90           (popGetAddr): added sanity check on immediate's offset, provide
91             GPOINTER tag on demand
92           (aopPut): fixed for immediates,
93           (mov2w_op): move operand's address or contents to WREG (depending on
94             operand type), safer variant of mov2w,
95           (movwf,call_libraryfunc): NEW, handy abbreviations,
96           (get_argument_pcop,get_return_val_pcop,pass_argument,
97           get_returnvalue): interface for accessing function parameters and
98             return values,
99           (assignResultValuei,genRet): use new parameter/return value interface
100           (pic14_getDataSize): back to old version handling generic pointers,
101           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
102             provided implementation and/or fixed old one,
103           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
104             calls, removed legacy 8051 reference code
105           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
106           (loadSignToC): NEW, move the operands sign bit to CARRY,
107           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
108             genRightShiftSigned, accepts negative shift counts,
109           (setup_fsr): load FSR and adjust IRP (indirect memory access),
110           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
111             generic pointers, __data pointers and __code pointers,
112           (genUnpackBits,genPackBits): rewritten to work with generic pointers
113             and signed bitfields, limit bitfields to 8 bit,
114           (genDataPointerGet): fixed number of bytes read,
115           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
116           (genPointerGet,genPointerSet): fixed handling of __code pointers,
117             pointers to constant data are no longer assumed to point to __code
118             space, removed invalid pointer types,
119           (bitpatternFromVal): retrieve the PICs representation of an integer
120             or float literal,
121           (genDataPointerSet): fixed assigning to po_immediate operands,
122           (genGenPointerSet): implemented as library call,
123           (genIfx): fixed incorrect condition,
124           (genAddrOf): limit generic pointers' addresses to 2 bytes,
125             provide GPOINTER tag according to destination's storage class,
126           (genCast): added code to handle casting to generic pointers, added
127             sign-/zero extension of the result
128           (aop_isLitLike,op_isLitLike): fixed handling of immediates
129         * src/pic/gen.h: added macros to access IRP bit in STATUS register
130         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
131           extend the result
132         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
133           address/register resides in the shared banks
134           (emitSymbolToFile): improved to handle global and `pinned' symbols,
135             put all variables into separate sections (have the linker arrange
136             them)
137           (picglue): put init code and interrupt handlers in separate sections
138         * src/pic/main.c: added port specific options table, modified to PORT
139           structure to make GPOINTERs 3 byte, added pic14_options
140           (_pic14_do_link): private linking routine (update paths to libraries,
141             add libsdcc.lib by default)
142         * src/pic/main.h: declare pic14_options
143         * src/pic/pcode.c: fixed instructions i/o relations,
144           (RegCond): reverted to correct version,
145           (newpCodeOpLit): truncate literals to 8 bit,
146           (genericPrint): added debug output,
147           (getRegFromInstruction): fixed for various operand types, simplified
148           (BuildFlow): fixed broken handling of isntructions with labels
149           (LinkFlow): start at last instruction in flow (skip trailing comments),
150             pass the flow on to the next instruction after CALL
151           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
152           (insertPCodeInstruction): fixed inserting after a skip instruction,
153           (DoBankSelect): fixed for labeled instructions
154           (OptimizepBlock): honor --nopeep switch
155           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
156         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
157         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
158           (pCodeOptime2pCodes): allow disabling this optimization via
159             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
160             but is still buggy), started implementation of a dataflow based
161             pCode optimization (CSE + dead code elimination)
162           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
163         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
164           names are independant of the stack location and therefore portable across
165           devices
166
167 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
168
169         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
170           (selectSpil): fixed bug 1337835 by not spilling bit variables
171         * support/regression/tests/bug1337835.c: added test for this bug
172         * src/mcs51/peeph.def: restart after rule 3.c,
173           addded rules 263.x to optimize loading constants
174
175 2005-10-26 Raphael Neider <rneider AT web.de>
176
177         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
178         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
179           (genAssign): emit warning when casting literals to generic pointer
180             type, also applies when taking the address of a fixed variable,
181           (genCast): improved casting to generic pointers
182         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
183           extern variables, added verbose error message
184         * device/include/pic16/{string.h,errno.h}: added #pragma library c
185
186 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
187
188         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
189         carry must be complemented too
190         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
191         could be emitted by genMinus
192         * src/SDCCval.c (constVal): fixed bug 1305065
193
194 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
195
196         * src/SDCCast.c (addCast): added promotion for bit variables
197         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
198         promotion casts + optimisation
199         (optimizeGetWord): fix warning 'i' might be used uninitialized
200         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
201         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
202
203 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
204
205         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
206         all chars are promoted to int; promotion should be handled in SDCCast.c
207
208 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
209
210         * device/lib/_strcmp.c: Fixed bug 1326457
211
212 2005-10-11 Raphael Neider <rneider AT web.de>
213
214         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
215         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
216
217 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
218
219         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
220         * support/regression/tests/sfr16.c: added test for the sfr32 bug
221
222 2005-10-04 Raphael Neider <rneider AT web.de>
223
224         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
225           device/lib/pic16/pics.all: added pic18f1320
226         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
227
228 2005-09-30 Raphael Neider <rneider AT web.de>
229
230         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
231         * src/pic16/devices.inc: NEW, provides device descriptions
232         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
233
234 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
235
236         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
237           GETHBIT
238
239 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
240
241         * doc/sdccman.lyx: updated Highest Order Bit documentation,
242           documented Any Order Bit, Higher Order Byte and Higher Order Word
243         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
244         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
245           (optimizeGetAbit): new, to get any bit, not only the high bit,
246           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
247           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
248           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
249           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
250             RIGHT_OP: also try GETBYTE, GETWORD optimization,
251             GETABIT, GETBYTE, GETWORD: decorate them,
252           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
253           (ast_print): added GETABIT, GETBYTE, GETWORD
254         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
255         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
256           (geniCodeBinary): new generic binary icode,
257           (ast2iCode): added GETABIT, GETBYTE, GETWORD
258         * src/port.h: updated comment for PORT.hasExtBitOp
259         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
260           (genGetByte): new, to get a single byte,
261           (genGetWord): new, to get a word from a long,
262           (gen51Code): added GETABIT, GETBYTE, GETWORD
263         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
264
265 2005-09-23 Raphael Neider <rneider AT web.de>
266
267         * configure.in, configure: have device/lib/pic configured
268         * device/lib/Makefile.in: added model-pic14
269         * device/lib/clean.mk: added pic/ to clean rule
270         * device/lib/pic: added rudimentary pic14 library providing support
271           functions for multiplication/division/generic pointer access
272         * src/SDCCopt.c (convilong): mark support functions as extern
273           for pic14 port as well
274         * src/pic/gen.c (genMult): added assertions,
275           (genpic14Code): emit warning on unhandled iCodes
276         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
277         * src/pic/pcode.c (pCodeOpCopy),
278         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
279           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
280           SFR_REGISTER}), made safe for future extensions
281         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
282           instructions even if preceeded by SKIP instructions (also remove
283           them); removed unused code
284         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
285           prevents leaving parts of the structure uninitialized after copying
286
287 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
288
289         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
290           ago by me
291         * support/regression/tests/addsub.c: added test for the bug
292
293 2005-09-21 Raphael Neider <rneider AT web.de>
294
295         * device/include/pic16/pic18f1220.h,
296           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
297         * device/lib/pic16/Makefile.rules: added missing opening paren
298         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
299           are provided in genutils.c,
300           (genUminusFloat,genUminus,genCmpEq): added asserts on different
301           operand/result sizes,
302           (genCmp): assert on NULL pointers first, then check deref'ed values
303         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
304           result size
305
306 2005-09-18 Raphael Neider <rneider AT web.de>
307
308         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
309           as these are now unused,
310           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
311         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
312           local, avoids uninitialized pointer dereference on r->name
313         * src/pic16/ralloc.c (newReg): fixed indentation
314
315 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
316
317         * src/SDCCval.c (constVal): fixed bug 730366
318         * support/Util/SDCCerr.c,
319         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
320
321 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
322
323         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
324
325 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
326
327         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
328
329 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
332           (hex2dec): made hex_digit unsigned char, removed ascii dependance
333         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
334           (hex2dec): made hex_digit unsigned char, removed ascii dependance
335         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
336         * packihx/packihx.c (hexDigit): made c unsigned char
337         * as/mcs51/lklibr.c (fndsym),
338         * link/z80/lkgb.c (gb),
339         * link/z80/lklibr.c (fndsym),
340         * link/z80/lkrloc.c (relr),
341         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
342         * src/SDCC.lex (checkCurrFile, process_pragma),
343         * src/SDCCglue.c (spacesToUnderscores),
344         * src/SDCCmain.c (setParseWithComma, processFile),
345         * src/asm.c (tvsprintf, printCLine),
346         * src/avr/gen.c (emitcode, aopPut),
347         * src/ds390/gen.c (emitcode),
348         * src/hc08/gen.c (emitcode, emitinline),
349         * src/mcs51/gen.c (emitcode, genInline),
350         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
351           tokenizeLineNode),
352         * src/pic/ralloc.c (debugLog),
353         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
354           tokenizeLineNode),
355         * src/pic16/ralloc.c (debugLog),
356         * src/z80/main.c (_process_pragma):
357            made all ctype.h function calls safe
358         * src/SDCCopt.c: include math.h for fabs
359         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
360           and used them throughout the code to make ctype.h function calls safe
361         * src/ds390/main.c (asmLineNodeFromLineNode),
362         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
363         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
364            unsigned char*
365         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
366           (newpCodeAsmDir): made ctype.h function calls safe
367         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
368           pic16_emitcode):  made lbp unsigned char*
369         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
370           (pic16_newpCodeAsmDir): made ctype.h function calls safe
371         * src/xa51/gen.c (emitcode),
372         * src/z80/gen.c (_emit2): made lbp unsigned char*
373         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
374            char*
375
376 2005-09-05 Raphael Neider <rneider AT web.de>
377
378         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
379           access bank splitpoint
380
381 2005-09-05 Raphael Neider <rneider AT web.de>
382
383         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
384
385 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
386
387         * .version: changed to version 2.5.3
388         * doc/sdccman.lyx: changed version to 2.5.3,
389           documented --codeseg and --constseg and pragma codeseg and constseg,
390           documented bit parameters (reentrant) and bit returning
391         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
392            currFunc->recvSize, but is this ok for all ports?
393           (ast2iCode): result of ~ on unsigned char must be cast to int for
394            bool to work
395         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
396           function pointers in bit space
397         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
398           (processFuncArgs): call port.reg_parm() with reentrancy info
399         * src/port.h,
400         * src/avr/main.c,
401         * src/ds390/main.c,
402         * src/hc08/main.c,
403         * src/pic/main.c,
404         * src/pic16/main.c,
405         * src/xa51/main.c,
406         * src/z80/main.c: port.reg_parm prototype extended with
407           "bool reentrant" parameter
408         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
409           options.stackAuto for allocating bit register parameters
410         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
411           (genSend): set BitBankUsed if it is,
412           (selectRegBank): factored out of genCall for use in genPcall,
413           (genCall): removed redundant dtype assignmen, use selectRegBank,
414           (genPcall): handle returning in Carry properly, save in F0 if needed,
415           (genReceive): handle bit register parameters
416         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
417           (mcs51_assignRegisters): enable bit registers for all reentrant
418            functions and don't set BitBankUsed unconditionally
419         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
420         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
421         * support/regression/tests/funptrs.c: added tests for BOOL and for return
422
423 2005-08-27 Borut Razem <borut.razem AT siol.net>
424
425         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
426         ppc-osx (Darwin) does not support -u option. It seems that it is
427         supported only on Linux - GNU cp
428
429 2005-08-25 Borut Razem <borut.razem AT siol.net>
430
431         * sim/ucsim/gui.src/serio.src/Makefile.in,
432           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
433           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
434           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
435           install and strip, since the strip at /usr/ccs/bin should be used
436           on solaris
437
438 2005-08-24 Borut Razem <borut.razem AT siol.net>
439
440         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
441
442 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
443
444         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
445         ffffffffu
446
447 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
448
449         * as/mcs51/aslink.h: completed lkrloc.c prototypes
450         * as/mcs51/lkmain.c (link_main): fixed warning
451         * device/include/stdbool.h: ds390 has no advanced bit support yet
452         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
453         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
454         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
455           and updated their macros
456         * src/SDCCval.c (constVal): updated comment for renamed b_long
457
458 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
459
460         * as/mcs51/asdata.c: changed ctype['['] to BINOP
461         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
462           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
463           (oprio): set priority for '['
464         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
465            and adb_24_bit
466         * as/mcs51/asm.h: added defines R_BIT and S_BIT
467         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
468         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
469         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
470           added overlayable BIT_BANK area
471         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
472           (summary2): explain 'T' in legenda
473         * as/mcs51/lkrloc.c: replaced old K&R style,
474           (relr): added R_BIT processing,
475           (errmsg): added "Bit-addressable relocation error",
476           (adb_bit): added for converting from byte- to bit-addressable space,
477           (adb_24_bit): added for converting from byte- to bit-addressable space
478         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
479            used in reentrant functions now even as return value
480         * device/lib/_gptrput.c (_gptrput): removed obsolete code
481         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
482           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
483         * src/SDCCglobl.h: added indicator BitBankUsed
484         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
485            the bit registers b0-b7
486         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
487           (geniCodeCast): fixed bug 1263853,
488           (geniCodeLogicAndOr): put result in bool or char,
489           (geniCodeReceive): added parameter func for accessing the return type,
490           (geniCodeFunctionBody): pass func to geniCodeReceive
491         * src/SDCCmain.c: added indicator BitBankUsed
492         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
493         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
494           (checkSClass): don't put automatic bool/bit on stack,
495           (checkFunction): removed check on function cannot return bit
496         * src/SDCCsymt.h: added newBoolLink prototype
497         * src/mcs51/gen.c (rb1regs): added bit registers,
498           (movc): created for assigning to carry,
499           (pushReg, popReg): created for pushing registers,
500           (sameRegs): check both AOP_REG and AOP_CRY types,
501           (aopOp): handle bit registers,
502           (aopPut): optimization no self-assign,
503           (saveRegisters): push reg->base (bits) only once for bit registers,
504            and use pushReg,
505           (unsaveRegisters): pop reg->base only once and use popReg,
506           (assignResultValue): added parameter func and return in carry for bits,
507           (genIpush): optimization no reload in A if not changed,
508           (genSend): bit parameters in reentrant functions are passed in bit
509            registers by first assigning to bits in B, then save registers and
510            copy B to bits,
511           (genCall): handle returning in Carry properly, save it in F0 if needed,
512           (genPcall): updated assignResultValue call, this is not safe yet for bit
513            returning function !!!
514           (genFunction): don't generate equ's for bit registers and use pushReg,
515           (genEndFunction): take care of bit returning functions and use popReg,
516           (genRet): return bit in Carry,
517           (genIfx): optimize bit registers and other directly addressable bits,
518           (genReceive): updated assignResultValue call
519         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
520           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
521            registers when using stack-auto
522         * src/mcs51/ralloc.c (_G): added allBitregs,
523           (regs8051): added the bit registers,
524           (createStackSpil): use macro IS_BIT,
525           (getRegBit): added to allocate a bit register, else spill,
526           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
527           (updateRegUsage): factored out to ease stepping while debugging,
528           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
529            also allocate bit registers,
530           (fillGaps): handle bit registers,
531           (findAllBitregs): added to create bit vector with all bit registers,
532           (mcs51_allBitregs): returns this bit vector,
533           (mcs51_assignRegisters): when using stack-auto use bit registers for
534            passing parameters and creating local variables
535         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
536
537 2005-08-22 Borut Razem <borut.razem AT siol.net>
538
539         * device/lib/Makefile.in: replaced find option -or with -o
540           to make it run on solaris
541
542 2005-08-22 Raphael Neider <rneider AT web.de>
543
544         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
545           fixes #1265442 (crash on Solaris)
546
547 2005-08-20 Borut Razem <borut.razem AT siol.net>
548
549         * configure, configure.in: added tests for libsocket and libnsl libraries,
550           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
551           from support/regression/Makefile.in
552         * support/regression/Makefile.in: added
553         * device/lib/pic16/Makefile.common.in: force make to use bash shell
554         * sim/ucsim/libtool: regenerated on sparc-solaris
555         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
556           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
557           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
558           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
559           sparc-solaris, which doesn't use GNU ld linker
560         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
561         * as/Makefile: find on sparc-solaris does not support -maxdepth option
562
563 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
564
565         * src/mcs51/peeph.def: updated comments
566
567 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
568
569         * device/lib/_gptrget.c,
570         * device/lib/_gptrput.c: slightly shorter
571         * doc/sdccman.lyx: incremented version
572         * src/mcs51/peeph.def: moved peephole comments to the line of first
573           change to better keep line correlation, reanimated 186.e
574         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
575
576 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
577
578         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
579           David Saxton with quotes around file name.
580
581 2005-08-15 Borut Razem <borut.razem AT siol.net>
582
583         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
584           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
585           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
586           make tests run on x86_64 platform
587
588 2005-08-13 Raphael Neider <rneider AT web.de>
589
590         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
591           as it might be executed DURING a build (parallel make is wonderful)
592
593 2005-08-13 Raphael Neider <rneider AT web.de>
594
595         * device/lib/Makefile.in (port-specific-objects-pic16):
596           revert to cp $(PORT)/bin/*.* $(PORTDIR)
597         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
598           dependency
599         * device/lib/pic16/Makefile.rules: build subdirs before creating
600           the library, removed builddir rule, create $(builddir) early in
601           recurse rule, use empty recurse rule for leaf directories
602         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
603           mkdir errors (race condition), removed duplicate suffix "hex"
604           from clean rules
605         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
606         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
607           prevents mkdir -p from aborting on Alpha
608
609 2005-08-12 Raphael Neider <rneider AT web.de>
610
611         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
612           db-statements in order to allow for arrays of pointers in code
613           sections to be placed without interspersed 0-padding, fixes
614           bug #1256215
615         * (emitStatistics): fixed division by zero for pic18f1220
616         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
617           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
618         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
619         * (pic16_pCodeConstString): keep track of already emitted string
620           literals to prevent "duplicate definitions of symbol _str_NR"
621         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
622           debug message
623         * device/lib/Makefile.in: ignore failing PIC16 library builds
624         * device/lib/pic16/Makefile: do not build if gputils are missing
625         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
626
627 2005-08-10 Raphael Neider <rneider AT web.de>
628
629         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
630           my last commit)
631
632 2005-08-10 Raphael Neider <rneider AT web.de>
633
634         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
635           Rokas' patch to add the new fixed point type "__fixed16x16"
636         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
637           functions for __fixed16x16 arithmetics
638         * device/lib/pic16: reimplemented the build system to support
639           a separate build directory, better handling of libio (create
640           the library in a separate subdir for each architecture) and
641           easier configuration (centralized in Makefile.common)
642
643 2005-08-07 Raphael Neider <rneider AT web.de>
644
645         * src/pic16/gen.c (genrshTwo): fixed sign extension
646         * src/pic16/device.c: added pic18f2320, 4220 and 4320
647         * device/include/pic16/pic18f2220.h: changed some bit definitions,
648           added T0CONbits
649         * device/include/pic16/pic18f4220.h: NEW, header for
650           pic18f4220 and pic18f4320
651         * device/include/pic16/pic18fregs.h: added new devices,
652           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
653         * device/include/pic16/signal.h: resolved name clashes
654           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
655           to also allow testing for interrupt enable bits, added
656           comments on how to use the macros
657         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
658         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
659           register definitions for the devices
660         * device/lib/pic16/pics.all: added new devices
661         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
662           allocated memory
663         * device/lib/pic16/libc/stdlib/memfree: do not count
664           the block header as free memory
665         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
666           simplified and added missing end-of-blocklist-marker
667           (reported by Peter Onion, fixes #1252814)
668         * (_mergeHeapBlock): fixed loop condition
669         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
670           len==0, restructured code
671         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
672           up a bit, reduced bitfield accesses, prevent endless loops
673           in case of heap corruption
674         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
675           "unreferenced arguments/must return a value" warnings
676         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
677           replaced BAUDREG with SPBRG
678         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
679           device/lib/pic16/debug/gstack/gstack.c: replaced
680           _naked, _asm, _endasm with __naked, __asm, __endasm
681
682 2005-08-05 Raphael Neider <rneider AT web.de>
683
684         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
685           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
686
687 2005-08-05 Borut Razem <borut.razem AT siol.net>
688
689         * device/lib/Makefile.in: added missing ';'
690         * configure: removed ^M characters
691
692 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
693
694         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
695           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
696           License
697
698 2005-08-04 Borut Razem <borut.razem AT siol.net>
699
700         * configure.in: pic16 libraries build 2nd try - enable running
701           configure in device/lib/pic16
702         * configure: regenerated from configure.in
703         * device/lib/Makefile.in: create $(PORT)/bin directory
704
705 2005-08-03 Raphael Neider <rneider AT web.de>
706
707         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
708           to get/set values via pointers
709         * (genUnpackBits,genPackBits): changed detection of
710           ptr->bitfield vs. sym.bitfield, fixed access via generic
711           pointers, removed dead (wrong) code for multibyte bitfields
712         * (genNearPointerGet, genGenPointerGet): removed useless code,
713           fixed bitfield detection, fixes #1250594
714         * (genNearPointerSet): removed useless code
715         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
716           and introduced macro pic16_emitpcode that conditionally emits
717           the origin of the following pCode (useful for debugging SDCC)
718         * src/pic16/pcode.c: changed (and disabled) some debug outputs
719         * (createDefmap): fixed handling of LFSR for --optimize-df
720
721 2005-08-02 Borut Razem <borut.razem AT siol.net>
722
723         * device/lib/Makefile.in: pic16 libraries build enabled since
724           gputils-0.13.2 are now localy installed at sourceforge's compile farm
725
726 2005-08-02 Raphael Neider <rneider AT web.de>
727
728         * src/pic16/gen.c (genPackBits): removed deprecated warning
729         * (genGenPointerSet): fixed bitfield detection
730
731 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
732
733         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
734
735 2005-07-31 Raphael Neider <rneider AT web.de>
736
737         * device/lib/pic16/libdev/pic18f458.c,
738           device/include/pic16/pic18f458.h: added missing T0CONbits
739
740 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
741
742         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
743
744 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
745
746         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
747
748 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
749
750         * device/include/mcs51/at89c51ed2.h: added.
751
752 2005-07-23 Raphael Neider <rneider AT web.de>
753
754         * src/pic/gen.h: added emitpcode macro for debugging
755         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
756           and replace by macro adding debug information on demand
757         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
758         * (gencjne): tried to fix; replaced with correct (slower) code
759         * (gen{Unp,P}ackBits): fixed single bit access
760         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
761         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
762           previous instruction
763         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
764           register has to be handled with care (forbidding movement
765           of assignments/uses, removing assignments completely, ...)
766         * (pCodeOptime2pCodes): make use of regIsSpecial
767         * added lots of debugging output (commented out)
768         * src/pic/rallloc.c (deassignLRs): prevent operand registers
769           from being reused as result UNLESS it is known to work
770
771 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
772
773         * support/Util/dbuf.h: include <stddef.h> for size_t
774         * .version: changed to version 2.5.2
775
776 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
777
778         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
779
780 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
781
782         * src/hc08/gen.c (genMinus): fixed bug #1241835,
783           (genModOneByte): removed needless psha/pula
784
785 2005-07-22 Raphael Neider <rneider AT web.de>
786
787         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
788           have PIC14 handled like PIC16, fixes broken pic14 linker calls
789         * src/pic/gen.c (resolveIfx): do not "invent" labels
790         * (genSkipc): changed to positive logic
791         * (genSkipCond): removed as no longer needed
792         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
793           backport from PIC16
794         * (genLeftShift): check operands are in different registers
795         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
796           INCF does not update CARRY...
797         * src/pic/main.c: fixed _linkCmd
798         * src/pic/pcode.c (unlinkpCode): added inactive code
799         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
800           alive (do not assign result and operand overlapping registers)
801
802 2005-07-22 Raphael Neider <rneider AT web.de>
803
804         * src/pic/device.c (dump_sfr): replaced register declaration with
805           call to emitSymbolToFile() to avoid duplicate symbols
806         * (assignRelocatableRegisters): do not declare external symbols
807         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
808           right (take size of type, not etype)
809         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
810         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
811         * (packRegsForAccUse): disabled assignment of WREG as
812           the result reg to prevent occurence of just fixed #1235003,
813           fixes #1242954
814         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
815           symbols (avoids duplicate symbols in .asm file)
816         * (pic14emitRegularMap): use emitSymbolToFile()
817         * src/pic/gen.c (aopOp): fixed spillLocation handling
818         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
819         * (genDataPointerSet): removed unneccessary variables/output
820
821 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
822
823         * as/mcs51/lkarea.c: enlarged codemap for banked memory
824         * device/lib/mcs51/crtbank.asm: added # to 0x0F
825
826 2005-07-21 Raphael Neider <rneider AT web.de>
827
828         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
829           architecture cannot handle them efficiently, fixes bug #1235003
830         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
831           check for empty sets before using them (fixes bug #1232190)
832
833 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
834
835         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
836           (lnksect2): generate warnings for memory overlap
837         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
838           constseg to set the name of these segments so you can instruct the linker
839           to place them in banks
840         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
841         * src/SDCCglobl.h: added MODEL_HUGE to enum,
842           added code_seg and const_seg to options
843         * src/SDCCglue.c (emitMaps): use options.const_seg,
844           (createInterruptVect): put interrupt vectors in segment HOME,
845           (glue): put HOME before static segment and put the main glue in HOME,
846           (glue): use options.code_seg
847         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
848         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
849           these segments so you can instruct the linker to place them in banks
850           (linkEdit): use code_loc for HOME segment which should be the first
851           segment in code memory now
852         * src/SDCCmem.c: fixed more stuff like bug 1238386
853         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
854           (changePointer): don't change function pointers to code pointers for
855           banked functions,
856           (compareType): added exceptional check for banked function pointers
857         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
858         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
859           after static in code memory
860         * src/mcs51/gen.c: added aopLiteralLong prototype,
861           (aopForSym): use getSize for functions,
862           (genCall): generate banked calls over one trampoline __sdcc_banked_call
863           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
864           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
865           the segment,
866           (genPcall): use call for literal function pointers and generate banked
867           calls over the one trampoline so there's only one place for the user to
868           modify according to his/hers hardware,
869           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
870           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
871         * src/mcs51/main.c: added keyword banked,
872           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
873         * support/Util/SDCCerr.c,
874         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
875           needed for passing the bank and address to the trampoline
876         * device/lib/mcs51/crtbank.asm: added for bankswitching
877         * device/lib/mcs51/Makefile: added crtbank
878
879 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
880
881         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
882           for fields at offset 0 of a struct or union as reported
883           on 2005-07-07 in the developer mailing list.
884
885 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * src/SDCCmem.c: fixed bug 1238386
888
889 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
890
891         * src/mcs51/peeph.def: added labelrefcounting for peepholes
892           (patch #1144962), added peephole 300, enabled 259.x
893         * doc/sdccman.lyx: removed screenshot and provided link instead
894
895 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
896
897         * doc/sdccman.lyx: added section about debugging with ddd
898         * doc/figures/ddd_example.eps: screenshot of debugging session
899
900 2005-07-04 Raphael Neider <rneider AT web.de>
901
902         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
903           like CODE pointers, fixes #1115683
904         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
905           call, fixes bugs #1232211, #1228110,
906           fixed wrong casts to pCodeFlow from pCodeInstructions
907
908 2005-07-04 Raphael Neider <rneider AT web.de>
909
910         * src/pic/gen.c (popGet): changed assert to allow for
911           bit operands
912         * (popGetAddr): changed signature to provide
913           an additional index, patched all call sites
914         * (genCmpEq): handle literal-like operands correctly
915         * (genAddrOf): added sanity checks on __code/__data pointers
916         * (genAssign): added handling of symbols from __code section
917         * (gencjne): do not generate code for comparisons whose result
918           is neither stored nor used, fixes bug #1171114
919         * (AccLsh, AccRsh): operate on operand instead of WREG
920         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
921           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
922           by known count
923         * rewrote complete shift-by-literal logic, commented unused
924           functions out
925         * (genConstPointerGet): get multiple bytes (if result size > 1),
926           fixed handling of non-immediate addresses
927         * (genPointerGet): handle CODE pointers like CONST pointers
928         * (genpic14Code): insert C-SRC lines as Cource-pCodes
929         * ({aop,op}_isLitLike): NEW, single place to decide whether an
930           operand is to be treated as a literal or not
931         * (mov2w,genPcall,genCmpEq),
932           src/pic/genarith.c: use aop_isLitLike() to decide between
933           literal/register contents
934         * (addSign): added missing offset
935         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
936           only emit comment in debug-mode,
937           use {aop,op}_isLitLike throughout the file
938         * src/pic/glue.c: fix initializers for pointers (work in progress)
939         * src/pic/pcode.c (get_op): honor index on _const symbols
940         * ({reset,dump}pCodeStatistics): NEW, estimate code size
941         * (dumppBlock): added pCode size estimation
942         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
943           check for IS_SYMOP before OP_SYMBOL'ing
944         * fixed indentation, compacted switch-statements
945         * (allocReg): find free register and allocate it instead of
946           allocating new registers all the time
947         * (deassignLRs): prevent POINTER_GET's from being assigned the same
948           registers as its operands (necessary only for multibyte GETs)
949
950 2005-07-01 Raphael Neider <rneider AT web.de>
951
952         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
953           debugging .asm-output macros FENTRY + FEXIT
954         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
955           way... I wonder...
956         * (emitpComment): NEW, printf to pCode
957         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
958           offset handling
959         * (popGetAddr): NEW, variant of popGet to access an immediates
960           high(er) bytes instead of the n'th byte of memory they reference,
961           replaced popGet with popGetAddr where neccessary
962         * (genDataPointerGet): reactivated and fixed implementation
963         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
964           accesses
965         * (genDataPointerSet): fixed multibyte assignments
966         * (genpic14Code): fixed --i-code-in-asm handling
967         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
968         * (genPlus): fixed index-out-of-bounds error
969         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
970         * src/pic/ralloc.c: added debugging output macro FENTRY2
971         * (spillThis): fixed indentation, enbraced for-body for clarity
972         * (rematStr): commented out as now unused
973         * (regTypeNum): commented out special spill case (overwrites
974           arbitrary values)
975         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
976
977 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
978
979         * doc/sdccman.lyx: documented sfr16/sfr32,
980           added example for using storage class with function pointers
981         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
982
983 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
984
985         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
986         * device/lib/_itoa.c,
987         * device/lib/_ltoa.c: optimized codesize
988         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
989           but don't know how to suppress the double warning.
990         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
991         * support/Util/SDCCerr.c,
992         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
993
994 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
995
996         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
997           fixed old K&R prototypes
998         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
999         * device/lib/_gptrget.c,
1000         * device/lib/_gptrgetc.c,
1001         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1002           also new versions for small generic pointers and banked generic pointers
1003         * src/port.h: added const_name
1004         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1005         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1006         * src/SDCCcse.c (findPrevIc): check all associative operators
1007         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1008         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1009         * src/SDCCmem.c: updated comments,
1010           set far-space to 0 for pdata, results in optimized code
1011         * src/SDCCmem.h: added macro CONST_NAME
1012         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1013           moving the info into the highest bits, see also gptrget/gptrput
1014         * src/src.dsp: added sdcc.ico to project files
1015         * src/avr/gen.c (genCast): fixed bug 0x%d
1016         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1017         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1018           relation between ptr_type and DCL_TYPE,
1019           (genCast): fixed bug 0x%d
1020         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1021           (CODE)" for const_name
1022         * src/hc08/gen.c (genCast): fixed bug 0x%d
1023         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1024           (hc08_port): added "CONST (CODE)" for const_name
1025         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1026           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1027           between ptr_type and DCL_TYPE,
1028           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1029           operand* and took AOP() inside function so sfr-ness can be checked,
1030           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1031           new prototype,
1032           (genFunction, genEndFunction): optimized stack setup,
1033           (genMinus): optimized for literals with ending zeroes (in bytes),
1034           (genCast): fixed bug 0x%d
1035         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1036           (mcs51_port): added "CONST (CODE)" for const_name
1037         * src/mcs51/peeph.def: made rule 226 more generic
1038         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1039         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1040         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1041         * src/z80/main.c (z80_port): added NULL for const_name,
1042           (gbz80_port): added NULL for const_name
1043         * support/regression/tests/bug663539.c,
1044         * support/regression/tests/sfr16.c: new tests
1045
1046 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1047
1048         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1049
1050 2005-06-24 Raphael Neider <rneider AT web.de>
1051
1052         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1053           corrected typos...
1054         * device/include/pic16/signal.h: added USBIF
1055           and SIG_USB
1056
1057 2005-06-24 Raphael Neider <rneider AT web.de>
1058
1059         * device/lib/pic16/libdev/pic18f2455.c,
1060           device/include/pic16/pic18f2455.h: NEW
1061         * device/include/pic16/pic18fregs.h,
1062           device/lib/pic16/pics.all,
1063           src/pic16/device.c: added 18f2455
1064         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1065           device/include/pic16/{pic18f[68][567].h,usart.h}:
1066           replaced MULTIPLE_USARTS define with more relaible
1067           compatibility sfrs (for USART access)
1068
1069 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1070
1071         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1072           and the output asm file line is printed on two lines.
1073
1074 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1075
1076         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1077           BGT, BLE, BHI, and BLS instructions
1078         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1079           genCmpEq): removed
1080         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1081           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1082           fixes bug #1216342
1083         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1084
1085 2005-06-15 Raphael Neider <rneider AT web.de>
1086
1087         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1088         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1089         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1090           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1091           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1092
1093 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1094
1095         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1096           Marcel Telka in bug #1215704
1097
1098 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1099
1100         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1101           located in shared memory bank.
1102
1103 2005-05-31 Raphael Neider <rneider AT web.de>
1104
1105         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1106           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1107           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1108
1109 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1110
1111         * device/lib/_strncpy.c: fixed the fix
1112
1113 2005-05-26 Raphael Neider <rneider AT web.de>
1114
1115         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1116           initializers with \0, bug #1208187
1117         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1118           intializers with \0, bug #1208187
1119
1120 2005-05-26 Raphael Neider <rneider AT web.de>
1121
1122         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1123           initializers with \0, bug #1208187
1124         * src/pic16/main.c (_process_pragma): added sanity checks
1125           for stack position and size, emit warnings when appropriate
1126
1127 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1128
1129         * device/lib/_strncpy.c: fixed not filling with \0
1130
1131 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1132
1133         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1134           createFunction),
1135         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1136           compound_statement),
1137         * src/SDCCsymt.h,
1138         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1139
1140 2005-05-24 Raphael Neider <rneider AT web.de>
1141
1142         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1143
1144 2005-05-24 Raphael Neider <rneider AT web.de>
1145
1146         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1147           TRISE definitions, closes bug #1162453
1148
1149 2005-05-22 Raphael Neider <rneider AT web.de>
1150
1151         * src/pic16/main.c (_process_pragma): check for missing
1152           arguments to pragmas code and udata
1153         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1154           consistency fixes to match other headers (thanks to Jim Paris)
1155         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1156
1157 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1158
1159         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1160
1161 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1162
1163         * support/regression/tests/bug1198642.c: new test
1164         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1165         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1166         * support/scripts/resource.h,
1167         * support/scripts/resource.rc,
1168         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1169         * support/scripts/sdcc.ico: added 32x32 icon
1170
1171 2005-05-18 Raphael Neider <rneider AT web.de>
1172
1173         * device/lib/pic16/libdev/pic18f*.c,
1174         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1175           keywords to "__sfr" and "__at (X)"
1176         * device/include/pic16/pic18fregs.h: added pic18f4520
1177         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1178           #1203088 (MPLAB compatibility)
1179
1180 2005-05-17 Raphael Neider <rneider AT web.de>
1181
1182         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1183         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1184         * device/lib/pic16/pics.all: added new devices
1185         * src/pic16/device.c: added support for pic18f4520
1186
1187 2005-05-16 Raphael Neider <rneider AT web.de>
1188         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1189         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1190         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1191           convenience function for bit access
1192
1193 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1194
1195         * device/lib/printf_large.c: fixed bug 1193299
1196         * support/regression/tests/bug1057979.c: added test %3.3s
1197
1198 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1199
1200         * device/include/mcs51/8051.h,
1201         * device/include/mcs51/8052.h: made parseable with lint
1202         * device/include/mcs51/lint.h: added include file for (sp)lint
1203         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1204         * doc/cdbfileformat.lyx,
1205         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1206
1207 2005-05-14 Raphael Neider <rneider AT web.de>
1208
1209         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1210         * device/lib/pic16/libc/stdlib/itoa.c (new)
1211         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1212         * device/lib/pic16/libio/Makefile: exclude subdir according to
1213           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1214         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1215         * src/pic16/gen.c (genFunction): prevent annoying warning
1216         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1217           nameclashes on BeOS
1218         * support/cpp2/cppmain.c (cpp_output_string): new
1219         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1220           fixes bug 1116802
1221
1222 2005-05-13 Borut Razem <borut.razem AT siol.net>
1223
1224         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1225
1226 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1227
1228         * .version: changed to version 2.5.1; back to bleeding edge development
1229
1230 2005-05-11 Borut Razem <borut.razem AT siol.net>
1231
1232         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1233           generate PDF version 1.3 documents
1234
1235 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1236
1237         * .version: changed to version 2.5.0
1238
1239 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1240
1241         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1242
1243 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1244
1245         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1246         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1247         well as many smaller updates.
1248         * .version: changed to version 2.5.0-pre1
1249
1250 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1251
1252         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1253
1254 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1255
1256         * support/regression/tests/bug1185672.c: added
1257         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1258           bug 1185672
1259         * src/mcs51/gen.c (genCall): added comments, made it look safer
1260         * src/mcs51/gen.c (genEndFunction): simplified
1261
1262 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1263
1264         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1265
1266 2005-04-14 Borut Razem <borut.razem AT siol.net>
1267
1268         * fixed bug 1045046 - SIGSEGV with really simple code?:
1269           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1270           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1271
1272 2005-04-14 Borut Razem <borut.razem AT siol.net>
1273
1274         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1275           src/pic16/device.h: temporarily disabled experimental #inline pragma
1276           for 2.5.0 release
1277
1278 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1279
1280         * device/include/z80/stdio.h,
1281         * device/include/z80/string.h: removed these highly incomplete files so
1282           SDCC can use the default ones in device/include/
1283
1284 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1285
1286         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1287         gcc warning.
1288         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1289         fix sdcpp warnings.
1290
1291 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1292
1293         * device/include/malloc.h: removed redundant __reentrant prototypes
1294         * device/lib/_mullong.c: added working xstack variant in asm (C version
1295           doesn't pass regression tests)
1296         * device/lib/bpx.c: used __data and made bpx char for mcs51
1297         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1298           (createFunction): fixed bug with xstackPtr
1299         * src/SDCCcse.c: corrected comments
1300         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1301           (killDeadCode, eBBlockFromiCode): removed unused code
1302         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1303           corrected comments
1304         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1305           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1306           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1307           (genModOneByte): fixed warning in MSVC
1308         * src/mcs51/main.c (): added comments
1309         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1310
1311 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1312
1313         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1314
1315 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1316
1317         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1318
1319 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1320
1321         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1322         characters arrays of larger size than the declared one.
1323
1324 2005-04-10 Borut Razem <borut.razem AT siol.net>
1325
1326         * src/pic/gen.c (genInline),
1327           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1328           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1329           (findNextInstruction), (findPrevInstruction),
1330           (findInstructionUsingLabel),
1331           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1332         * src/pic/pcode.c (findLabel): added missing '\n'
1333         * src/src.dsp: added SDCCdwarf2.c to the project
1334
1335 2005-04-09 Borut Razem <borut.razem AT siol.net>
1336
1337         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1338
1339 2005-04-08 Raphael Neider <rneider AT web.de>
1340
1341         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1342           into the chain after a given one) and mergeDefmapSymbols (combine
1343           defmap entries for each symbol per pcode)
1344         * (createDefmap): have defmap entries merged in the end
1345         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1346           a symbol before replacing one access type's symbol, merge symbols in
1347           the end (replacement symbol might already have an entry)
1348         * (assignValnums): keep reference to written WREG intact
1349
1350 2005-04-08 Raphael Neider <rneider AT web.de>
1351
1352         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1353           Alpha)
1354
1355 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1356
1357         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1358         bytes
1359
1360 2005-04-07 Raphael Neider <rneider AT web.de>
1361
1362         * device/include/pic16/usart.h: added compatibility defines for
1363           devices with more than one USART
1364         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1365
1366 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1367
1368         * device/lib/Makefile.in: updated for port specific include
1369
1370 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1373
1374 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1375
1376         * device/include/8051.h,
1377         * device/include/8052.h,
1378         * device/include/at89S8252.h,
1379         * device/include/at89c55.h,
1380         * device/include/at89x051.h,
1381         * device/include/at89x51.h,
1382         * device/include/at89x52.h,
1383         * device/include/mcs51reg.h,
1384         * device/include/reg51.h,
1385         * device/include/reg764.h,
1386         * device/include/regc515c.h,
1387         * device/include/sab80515.h: (re)moved these 12 files
1388         * device/include/mcs51/8051.h,
1389         * device/include/mcs51/8052.h,
1390         * device/include/mcs51/at89S8252.h,
1391         * device/include/mcs51/at89c55.h,
1392         * device/include/mcs51/at89x051.h,
1393         * device/include/mcs51/at89x51.h,
1394         * device/include/mcs51/at89x52.h,
1395         * device/include/mcs51/mcs51reg.h,
1396         * device/include/mcs51/reg51.h,
1397         * device/include/mcs51/reg764.h,
1398         * device/include/mcs51/regc515c.h,
1399         * device/include/mcs51/sab80515.h: and added them here
1400
1401 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1402
1403         * device/include/stdarg.h: changed SDCC specific keywords to double
1404           underlined form.
1405         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1406           mcs51 and ds390.
1407         * device/include/hc08/mc68hc908gp32.h,
1408         * device/include/hc08/mc68hc908jb8.h,
1409         * device/include/hc08/mc68hc908jkjl.h,
1410         * device/include/hc08/mc68hc908qy.h: fixed comments
1411         * device/include/mcs51/README: updated
1412         * device/include/mcs51/c8051f120.h: added PINRSF
1413         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1414         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1415           amidst code. Also inline is not supported.
1416
1417 2005-04-06 Raphael Neider <rneider AT web.de>
1418
1419         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1420         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1421           callers stack/frame pointers
1422
1423 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1424
1425         * device/include/pic16/usart.h: added, missing in previous commit,
1426         * device/include/pic16/adc.h: fixed typo,
1427         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1428         commit,
1429         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1430         <p18fxxx.inc>
1431         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1432         uninitialized because a bug appears with gplink
1433         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1434         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1435         complains for unrecognised option
1436
1437 2005-04-05 Raphael Neider <rneider AT web.de>
1438
1439         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1440           structs as well (using memcpy)
1441         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1442           on ISRs (GOTO has no label)
1443         * src/pic16/device.h: added OF_OPTIMIZE_DF
1444         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1445           new data flow analysis/optimization
1446         * src/pic16/pcode.c: added (prototypes for and implementation of)
1447           dataflow analysis functions, fixed pCodeInstructions' inCond and
1448           outCond values, made RCALL a branch instruction
1449         * (pic16_unlinkpCode): keep C line if possible
1450         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1451           C line moved if possible
1452         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1453         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1454           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1455         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1456           new flow)
1457         * (pic16_getJumptabpCode): NEW, needed in...
1458         * (LinkFlow): fixed handling of jumptables, calls and conditional
1459           branches
1460         * (pic16_InsertCommentAfter): NEW
1461         * (pic16_pCodeReplace): made verbose and flow preserving
1462         * (AnalyzeFlow): added call to data flow analysis
1463         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1464         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1465         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1466
1467 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1468
1469         * src/SDCCast.c (decorateType): fixed bug #1105626
1470
1471 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1472
1473         * device/include/asm/pic16/features.h,
1474         * pic18f*.h headers,
1475         * device/include/pic16/adc.h,
1476         * device/include/pic16/delay.h,
1477         * device/include/pic16/i2c.h,
1478         * device/include/pic16/malloc.h,
1479         * device/include/pic16/stdio.h,
1480         * device/include/pic16/stdlib.h,
1481         * device/include/pic16/string.h,
1482         * device/lib/pic16/libc/stdio/printf_tiny.c,
1483         * device/lib/pic16/libc/stdio/printf_small.c,
1484         * device/lib/pic16/libc/stdio/strmgpsim.c,
1485         * device/lib/pic16/libc/stdio/strmmssp.c,
1486         * device/lib/pic16/libc/stdio/strmusart.c,
1487         * device/lib/pic16/libc/stdio/vfprintf.c,
1488         * device/lib/pic16/libc/stdlib/ltoa.c,
1489         * device/lib/pic16/libc/stdlib/putchar.c,
1490         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1491         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1492         * device/lib/pic16/libc/stdlib/memchrram.c,
1493         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1494         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1495         * device/lib/pic16/libio/adc/adcbusy.c,
1496         * device/lib/pic16/libio/adc/adcread.c,
1497         * device/lib/pic16/libio/adc/adcsetch.c,
1498         * device/lib/pic16/libio/usart/ubaud.c,
1499         * device/lib/pic16/libio/usart/ubusy.c,
1500         * device/lib/pic16/libio/usart/udrdy.c,
1501         * device/lib/pic16/libio/usart/uopen.c,
1502         * device/lib/pic16/libio/usart/uputc.c,
1503         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1504         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1505         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1506         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1507         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1508         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1509         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1510         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1511         specific keywords to double underlined form,
1512         * device/lib/pic16/libc/Makefile.rules,
1513         * device/lib/pic16/libsdcc/Makefile.rules,
1514         * device/lib/pic16/libm/Makefile,
1515         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1516         to compile with C standard set in Makefile.common
1517         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1518         rand.c and crc.c in compilation process,
1519         * device/lib/pic16/libsdcc/int/divuint.c,
1520         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1521         `c' from signed to unsigned,
1522         * device/lib/pic16/startup/crt0.c,
1523         * device/lib/pic16/startup/crt0i.c,
1524         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1525         keywords to double underlined form, bug fixes in _do_cinit function
1526         which prevented the correct initialization of the .idata segment,
1527         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1528         core to enter a infinite loop
1529         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1530
1531 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1532
1533         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1534
1535 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1536
1537         * device/include/Makefile.in: add support for hc08 subdirectory
1538         * device/include/hc08/: new subdirectory
1539         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1540         Lucas Loizaga, thanks!
1541         * device/include/hc08/mc68hc908qy.h,
1542         * device/include/hc08/mc68hc908gp32.h,
1543         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1544         their own directory. Changed internal macro names to use the compiler
1545         reserved namespace. Changed SDCC specific keywords to double
1546         underlined form.
1547         * device/include/math.h,
1548         * device/include/malloc.h,
1549         * device/include/stdarg.h,
1550         * device/include/stdbool.h
1551         * device/include/string.h,
1552         * device/include/tinibios.h,
1553         * device/include/ds400rom.h,
1554         * device/include/8051.h,
1555         * device/include/8052.h,
1556         * device/include/80c51xa.h,
1557         * device/include/at89c55.h,
1558         * device/include/at89S8252.h,
1559         * device/include/at89x51.h,
1560         * device/include/at89x52.h,
1561         * device/include/ds80c390.h,
1562         * device/include/reg764.h,
1563         * device/include/regc515c.h,
1564         * device/include/sab80515.h,
1565         * device/include/mcs51/c8051f000.h,
1566         * device/include/mcs51/c8051f018.h,
1567         * device/include/mcs51/c8051f020.h,
1568         * device/include/mcs51/c8051f040.h,
1569         * device/include/mcs51/c8051f060.h,
1570         * device/include/mcs51/c8051f120.h,
1571         * device/include/mcs51/c8051f300.h,
1572         * device/include/mcs51/c8051f310.h,
1573         * device/include/mcs51/c8051f320.h,
1574         * device/include/mcs51/c8051f330.h,
1575         * device/include/mcs51/c8051f350.h,
1576         * device/include/z180.h: Changed SDCC specific keywords to double
1577         underlined form.
1578
1579 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1580
1581         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1582         18F4455,
1583         * (pic16_assignConfigWordValue): disable testing of configuration
1584         register value with config mask,
1585         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1586         function with port->fun_prefix,
1587         * (genFunction): when generating a naked interrupt function never
1588         create an absolute segment placed in interrupt vector address, place
1589         the actual interrupt function at IVA instead, when an interrupt
1590         function is generated with unspecified interrupt then do not create
1591         the absolute section,
1592         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1593         code for generating a call to generic pointer get/put function with
1594         a call to function pic16_callGenericPointer(),
1595         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1596         the call to the generic pointer get/put functions with prefixing the
1597         function name with port->fun_prefix,
1598         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1599         * src/pic16/main.c (_process_pragma): prefix function with
1600         port->fun_prefix,
1601         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1602         calling assembler, old 18Fxxxx macro is deprecated,
1603         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1604         PC_ASMDIR in while condition,
1605         * (findInstruction): add PC_ASMDIR in while condition,
1606         * (buildCallTree): prefix main with port->fun_prefix,
1607         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1608         identifier for variable with banked access in instructions BTFSS,
1609         BTFSC, BCF, BSF, BTG
1610         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1611         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1612         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1613         perform optimization when enviroment variable NO_REG_OPT is set,
1614         * (insideLRBlock): NEW, return 1 if register is inside an
1615         INF_LOCALREGS block,
1616         * (RemoveRegFromLRBlock): remove a register that is completely
1617         eliminated by register optimization, but it is still left in local
1618         register store/restore in/from stack block,
1619         * (Remove2pcodes): after removing register, check to see if it
1620         should be removed from local register store/restore in/from stack
1621         block,
1622         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1623         DUMMY_READ_VOLATILE,
1624
1625         * device/include/pic16/adc.h: minor prototype modifications and
1626         update,
1627         * device/include/pic16/malloc.h: added GPL notice various
1628         modifications,
1629         * device/include/pic16/stdint.h: NEW, standard header for ints
1630         * device/include/pic16/delay.h: NEW, header for delay functions,
1631         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1632         delay1mtcy,
1633         * device/include/pic16/signal.h: NEW, header providing helper macros
1634         for implementing signal handlers,
1635         * device/include/pic16/stdio.h: added prototypes for functions,
1636         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1637         prototypes for stdin and stdout, added macro PUTCHAR to
1638         automatically implement putchar function prototype,
1639         * device/include/pic16/usart.h: modified and updated USART library,
1640         * device/lib/pic16/libio/adc/,
1641         * device/lib/pic16/libio/i2c: some modifications to improve library
1642         performance,
1643         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1644         family of functions,
1645         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1646         family of functions and other sources,
1647         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1648         of the PIC18Fxx[28] devices,
1649         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1650         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1651         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1652         _do_cinit function, because the previous failed when local variables
1653         where not placed in the same memory bank,
1654         * device/lib/pic16/libsdcc/char/: various modifications to improve
1655         library performance,
1656         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1657         information on the new functions of the c library and more...
1658
1659 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1660
1661         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1662
1663 2005-03-26 Raphael Neider <rneider AT web.de>
1664
1665         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1666           if condition == CARRY)
1667         * (genCmp): adapted to new genSkipc semantics
1668         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1669           on rIfx (genCmp was broken)
1670
1671 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1672
1673         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1674         * src/z80/main.c (_keywords[]),
1675         * src/SDCCglobal.h (struct options),
1676         * src/SDCC.y,
1677         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1678         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1679         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1680         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1681         always available in leading double underscore form. The C99 support is
1682         mostly missing, but it's a start.
1683         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1684         reserved identifier "__data".
1685
1686 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1687
1688         * src/mcs51/peeph.def: fixed bug 1170013
1689
1690 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1691
1692         * device/include/mcs51reg.h: fixed bug 842007
1693
1694 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1695
1696         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1697         last time.
1698
1699 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1700
1701         * src/port.h (struct PORT),
1702         * src/avr/ralloc.c (avr_assignRegisters),
1703         * src/avr/main.c,
1704         * src/ds390/ralloc.c (ds390_assignRegisters),
1705         * src/ds390/main.c,
1706         * src/hc08/ralloc.c (hc08_assignRegisters),
1707         * src/hc08/main.c,
1708         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1709         * src/mcs51/main.c,
1710         * src/pic/ralloc.c (pic14_assignRegisters),
1711         * src/pic/main.c,
1712         * src/pic16/ralloc.c (pic16_assignRegisters),
1713         * src/pic16/main.c,
1714         * src/xa51/ralloc.c (xa51_assignRegisters),
1715         * src/xa51/main.c,
1716         * src/z80/ralloc.c (z80_assignRegisters),
1717         * src/z80/ralloc.h,
1718         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1719         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1720         * src/SDCCcse.h,
1721         * src/SDCCdflow.c (computeDataFlow),
1722         * src/SDCCdflow.h,
1723         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1724         * src/SDCCloop.h,
1725         * src/SDCCcflow.c (*),
1726         * src/SDCCcflow.h,
1727         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1728         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1729         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1730         immedDom() returning wrong block; probably fixes bug #1160833)
1731
1732 2005-03-20 Borut Razem <borut.razem AT siol.net>
1733
1734         * support/scripts/inc2h.pl: WIN32 port
1735
1736 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1737
1738         * device/lib/makefile.in: added abs.c and labs.c
1739
1740 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1741
1742         * device/include/stdint.h: added
1743         * device/lib/abs.c: added
1744         * device/lib/labs.c: added
1745         * device/include/stdlib.h: added abs() and labs() prototypes
1746         * device/lib/libsdcc.lib: added abs and labs
1747         * device/include/float.h,
1748         * device/lib/_fsmul.c,
1749         * device/lib/printf_fast.c,
1750         * device/lib/printf_tiny.c: updated comments
1751
1752 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1753
1754         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1755         bug #1164313
1756
1757 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1758
1759         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1760         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1761
1762 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1763
1764         * device/lib/printf_large.c: removed inline assembly for portability and
1765           readability. Use printf_fast if speed or size are more important.
1766         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1767         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1768
1769 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1770
1771         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1772         prevent compiler warning
1773
1774 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1775
1776         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1777         moved to level 0 and declared as static. Also they are explicit
1778         placed in access bank. This was necessery because some times they
1779         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1780         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1781         optimizations. Currently only compare to unsigned char is implemented,
1782         * src/pic16/gen.c: added fReturnIdx array,
1783         * (struct resolvedIfx) is moved to gen.h and made public,
1784         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1785         * (aopForSym): added an optimization to directly store in stack of
1786         the operand of a SEND iCode,
1787         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1788         but as registers instead (AOP_REG) using the fReturnIdx array,
1789         * (pic16_freeAsmop): remove the freed register from the
1790         _G.sregsAlloc field,
1791         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1792         a compare of 'WREG',
1793         * (pic16_popGetTempRegCond): changed function prototype, now
1794         function takes also a bitVector argument v which holds the current
1795         set of registers that are allocated for stack access by aopForSym,
1796         registers allocated in aopForSym for accessing stack symbols are not
1797         any more part of the functions usedRegs field,
1798         * (genCall): some times aopOp is called for a stack variable to be
1799         send, aopForSym might perform the push, if this is true make sure
1800         that genCall doesn't push the variable twice by testing _G.resDirect,
1801         * (genFunction): changed testing for unspecified interrupt number
1802         from 256 to INTNO_UNSPEC,
1803         * modified selection scheme of frame pointer generation. Previously
1804         if function did use local registers a frame pointer was generated,
1805         now a frame pointer is generated only if function has arguments
1806         (that need PLUSW2 register access), or has stack arguments, or the
1807         compiler is not instructed to omit the frame pointer,
1808         * (genEndFunction): before restoring local registers that were saved
1809         in the function preamble, also restore the registers that *might*
1810         have been allocated for stack access,
1811         * (genRet): removed some old comments,
1812         * (genCmp, the active (RN's) version): added a call to the
1813         pic16_genCmp_special function to perform the compare with a more
1814         robust and optimized way,
1815         * (genInline): a feature has been added in inline code generation,
1816         which allows a wildcard variable substitution when writing inline
1817         assembly. Code is incomplete and experimental therefore undocumented,
1818         * (genCast): changed order of aopOp for result and right to allow
1819         aopForSym to directly load the result if possible,
1820         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1821         perform an optimized compare on some selected special occasions,
1822         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1823         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1824         generate an IVT any more,
1825         * src/pic16/main.c (pic16_optionsTable): added command line option
1826         --optimize-cmp,
1827         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1828         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1829         macros,
1830         * src/pic16/NOTES: Raphael Neider added in list of active developers
1831         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1832         jumptable_end to prevent bug #,
1833         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1834         inCond and outCond fields,
1835         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1836         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1837         turn off register spilling,
1838         * (packRegsForOneUse): synced with other ports' versions although it
1839         is not used currently,
1840         * (pic16_packRegisters): added an optimization while reading
1841         structure bitfields, some registers may be saved (malloc code is
1842         decreased by 80 bytes)
1843
1844 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1845
1846         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1847         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1848         this can be optimized more?
1849
1850 2005-03-10 Raphael Neider <rneider AT web.de>
1851
1852         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1853           genNearPointerGet): (hopefully) fixed access to bitfields via
1854           pointers (p->bitN = x; and x = p->bitN; failed)
1855
1856 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1857
1858         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1859
1860 2005-03-09 Raphael Neider <rneider AT web.de>
1861
1862         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1863
1864 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1865
1866         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1867         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1868           (regTypeNum): set REG_BIT type if necessary
1869         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1870         * support/regression/tests/critical.c: check bug 1144613
1871
1872 2005-03-02 Raphael Neider <rneider AT web.de>
1873
1874         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1875
1876 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1877
1878         * src/avr/ralloc.c (serialRegAssign),
1879         * src/ds390/ralloc.c (serialRegAssign),
1880         * src/hc08/ralloc.c (serialRegAssign),
1881         * src/mcs51/ralloc.c (serialRegAssign),
1882         * src/pic/ralloc.c (serialRegAssign),
1883         * src/pic16/ralloc.c (serialRegAssign),
1884         * src/xa51/ralloc.c (serialRegAssign),
1885         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1886
1887 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1888
1889         * src/SDCCast.c (decorateType): fixed bug 1124787
1890
1891 2005-02-20 Hubert Sack <sack AT digiplan.de>
1892         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1893
1894         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1895         patch #1121755
1896
1897 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1898
1899         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1900         to keep the correct label reference count when adding/removing references
1901         to labels. A peephole file using this is appended to patch #1144962.
1902
1903 2005-02-14 Raphael Neider <rneider AT web.de>
1904
1905         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1906         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1907         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1908           retrievals of result operand's value on assignment
1909
1910 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1911
1912         * device/include/pic16/string.h: modified prototype for memccpy()
1913         to memccpy(void *, void *, char, size_t)
1914         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1915         check whether to omit frame pointer or not,
1916         * (genInline): convert all occurences of "\n" to LF in inline
1917         assembler blocks, this helps formatting the inline text,
1918         * (pic16_loadFSR0): modified prototype,
1919         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1920         removed some 8051 legacy code,
1921         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1922         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1923         before allocating temporary registers in functions,
1924
1925 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1926
1927         * support/regression/tests/bitvars.c: corrected the "fix"
1928
1929 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1930
1931         * support/regression/tests/bitvars.c,
1932         * support/regression/tests/bitwise.c,
1933         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1934
1935 2005-02-10 Raphael Neider <rneider AT web.de>
1936
1937         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1938           different size for Alpha
1939         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1940
1941 2005-02-09 Raphael Neider <rneider AT web.de>
1942
1943         * src/SDCC.lex(doPragma) : save and restore warning options as well
1944           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1945         * have #pragma less_pedantic set the errorlevel to WARNING
1946           (fixes #1117001)
1947         * (cloneOptimize) : fixed wrong malloc's size
1948         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1949           facilitate correct handling of #pragma (save|restore)
1950
1951 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1952
1953         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1954
1955 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1956
1957         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1958
1959 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1960
1961         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1962
1963 2005-02-02 Raphael Neider <rneider AT web.de>
1964
1965         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1966         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1967         * (pic16_storeForReturn): fixed to allow returning function pointers
1968         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1969         * device/include/pic16/{stddef.h,stdbool.h}: added
1970
1971 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1972
1973         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1974
1975 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1976
1977         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1978         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1979          appeared to be required
1980
1981 2005-01-31 Borut Razem <borut.razem AT siol.net>
1982
1983         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1984           include/mcs51 and include/z80 directories to the package
1985
1986 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1987
1988         * src/hc08/gen.c (genFunction): fixed bug #1112752
1989
1990 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1991
1992         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1993
1994 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1995
1996         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1997
1998 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1999
2000         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
2001
2002 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2003
2004         * device/include/c8051fxxx.h: removed these 6 files
2005         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2006
2007 2005-01-26 Raphael Neider <rneider AT web.de>
2008
2009         * src/pic16/gen.c (genAssign): fixed assignment from longs
2010           in codespace (were cut to three bytes)
2011         * (genDummyRead): implemented (except for CODESPACE...),
2012           fixed bug #1108575
2013         * src/pic16/glue.c (emitStatistics): beautified
2014         * device/lib/pic16/libm/Makefile: added include path
2015
2016 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2017
2018         * src/z80/gen.c (aopPut): fixed bug #1103902
2019
2020 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2021
2022         * device/lib/expf.c: fixed bug #1095792
2023
2024 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2025
2026         * device/lib/pic16/libm: added Math library sources
2027
2028 2005-01-24 Raphael Neider <rneider AT web.de>
2029
2030         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2031           to enable upcast to pCodeOpReg2 (there is no type tag to
2032           differenciate the two and pic16_popGet2p cast into PCOR2)
2033         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2034           (sizeof(sectNames) changed to sizeof(sectName))
2035           Both patches fix segfaults under MinGW.
2036
2037 2005-01-23 Raphael Neider <rneider AT web.de>
2038
2039         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2040           Safe_[mc]?alloc()'ed variables
2041         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2042           of (byte sized) temporaries (assign them to WREG for now)
2043         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2044           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2045           this might fix SIGSEGVs on MinGW...
2046         * src/SDCCopt.c (killDeadCode): restored original behaviour
2047           (volatile operands might get thrown away though)
2048
2049 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2050
2051         * src/pic16/gen.c: fixed bug #1106975,
2052         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2053         pointer update, INTCON is saved, global interrupts are disabled and
2054         restored after updateing TOS.
2055         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2056         * added function attribute 'shadowregs' to take advantage of shadow
2057         registers,
2058         * added function attribute 'wparam' as an alternative to the wparam
2059         pragma,
2060         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2061         user declares a non-ISR function as 'shadowregs',
2062         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2063
2064 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2065
2066         * .version: bumped version number to 2.4.8
2067         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2068         pic16 port,
2069         * device/lib/pic16/libio/i2c/: I2C module support library,
2070         * device/include/pic16/i2c.h: I2C support library header,
2071         * device/lib/pic16/libc/stdio/: standard IO support sources,
2072         * (printf_small.c): printf_small() source, supports float print,
2073         * (printf_tiny.c): printf_tiny() source, does not support floats,
2074         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2075         enable global optimizations for entire library source, other
2076         Makefiles in the source tree are also modified to reflect this,
2077         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2078         function,
2079         * doc/sdccman.lyx: updated to reflect new changes,
2080         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2081         sym->onStack if-case,
2082         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2083         sbit, idata, _idata, xdata, _xdata,
2084         * added pragma library, to link an external library, (see doc),
2085         * removed command line options, --pomit-config-words, --pomit-ivt,
2086         --pleave-reset-vector,
2087         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2088         when calling assembler to reflect memory model used, also define
2089         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2090         reflect stack model used,
2091         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2092         on stack return NULL,
2093
2094 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2095
2096         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2097           of the operands is volatile. Fixes #1020220
2098
2099 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2100
2101         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2102         * (OptimizeRegUsage): make sure that there is really no other flow where
2103           the first pCode is used
2104
2105 2005-01-22 Raphael Neider <rneider AT web.de>
2106
2107         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2108           to fix #1106967 (pCode->seq are not set up correctly)
2109
2110 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2111
2112         * src/SDCCglue.c (glue): make sure code area is declared before the
2113         static initialization area.
2114
2115 2005-01-21 Raphael Neider <rneider AT web.de>
2116
2117         * device/lib/Makefile.in: fixed test for pic16 install dir
2118         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2119           optimizations
2120         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2121           added --optimize-goto compiler switch and pragma wparam documentation
2122         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2123         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2124           and PRODH closing bug #1071770 (peephole optimizer)
2125
2126 2005-01-19 Raphael Neider <rneider AT web.de>
2127
2128         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2129           cmdLine buffers (used when calling sdcpp...) are large enough
2130           (MAX_PATH=256 truncates arguments leading to system halts when
2131           used in MinGW...)
2132         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2133         * (genUminus): rewritten to for efficiency
2134         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2135           used uninitialized in some cases)
2136         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2137           copy the third byte from the int -- now assumes 0x80 (data memory)
2138         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2139           operands (genAddLit expects the iCode's operands to swapped as
2140           well), fixed leftover bytes (crashed for short left operands)
2141         * (pic16_genMinusDec): performance improvements, removed false
2142           PIC14 emitSKPNCs
2143         * (pic16_genMinus): fixed to cope with differently sized operands
2144         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2145           for --obanksel > 1
2146         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2147         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2148           new banksel optimization
2149         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2150           analysis for temporary registers (segfaults...)
2151         * src/pic16/peeph.def: added rule
2152
2153 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2154
2155         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2156         which converts a float number to its ASCII representation
2157         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2158         functions to convert the fractional and integer part of a float to ASCII,
2159         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2160         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2161         ram
2162         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2163         _STATMEM macros,
2164         * device/include/pic16/adc.h: added GPL info,
2165         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2166         a pCodeOp as tested operand,
2167         * (genNearPointerGet): optimized bit testing, does not use
2168         intermediate register for bit value, test directly instead with
2169         BTFSS, BTFSC, works only for single bits,
2170         * (genpic16Code): dump the name of the iCode in the asm,
2171         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2172         renamed to pic16_decodeOp,
2173         * (serialRegAssign): do not allocate a temporary register for iCode
2174         sequences that test a single bit for 1/0
2175
2176 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2177
2178         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2179         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2180         access stack and frame pointers. They are initially assigned to
2181         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2182         accessing SFRs. Updated all occurences of modification of stack or
2183         frame pointer in gen.c and pcode.c,
2184         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2185         assigning of a literal value to pointers,
2186         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2187         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2188         selected
2189
2190 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2191
2192         * doc/sdccman.lyx: update documentation about stack pragma, added
2193         some info for stack memory models
2194
2195 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2196
2197         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2198
2199 2005-01-08 Raphael Neider <rneider AT web.de>
2200
2201         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2202           udata sections to fix bug #1097823
2203
2204 2005-01-05 Raphael Neider <rneider AT web.de>
2205
2206         * src/pic16/gen.c (genGenericShift): added handling of differently
2207           sized left operand and result
2208
2209 2005-01-04 Raphael Neider <rneider AT web.de>
2210
2211         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2212         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2213           to hold the condition bit)
2214         * added new version of genCmp (old code available via #define)
2215         * added new version of genShiftLeft/genShiftRight in a generic
2216           way, now supports shifting by negative values
2217         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2218           shiftCount (expected by genGenericShift)
2219         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2220         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2221           dump
2222         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2223           is an invalid literal too...)
2224
2225 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2226
2227         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2228         from Raphael Neider,
2229         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2230         for 8-bit literals. This fixes some literal operands which are sign
2231         extended to 16-bits ints when instruction needs only 8-bits.
2232
2233 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2234
2235         * device/lib/logf.c: added mcs51 assembly version
2236         * device/lib/expf.c: added mcs51 assembly version
2237         * device/lib/_logexpf.c: new shared asm code for expf and logf
2238         * device/include/math.h: add defines for assembly math library
2239         * device/lib/Makefile.in: build new _logexpf.c
2240         * device/lib/libfloat.lib: use new _logexpf.c
2241
2242 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2243
2244         * src/pic/device.c
2245         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2246           device types which have less than 0x7f registers.
2247
2248 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2249
2250         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2251
2252 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2253
2254         * device/lib/printf_fast.c: only build on supported arch.
2255         * device/lib/printf_tiny.c: only build on supported arch.
2256         * device/lib/printf_fast_f.c: only build if asm float lib
2257         * device/lib/_fsget1arg.c: only build if asm float lib
2258         * device/lib/_fsget2args.c: only build if asm float lib
2259         * device/lib/_fsnormalize.c: only build if asm float lib
2260         * device/lib/_fsreturnval.c: only build if asm float lib
2261         * device/lib/_fsrshift.c: only build if asm float lib
2262         * device/lib/_fsswapargs.c: only build if asm float lib
2263         * device/include/stdio.h: don't provide print_fast,
2264           print_fast_f, print_tiny prototypes if --xstack used
2265
2266 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2267
2268         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2269         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2270           to the SOURCES
2271
2272 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2273
2274         * device/lib/printf_fast_f.c: same as printf_fast, but
2275           with floating point enabled
2276         * device/lib/printf_fast.c: minor tweaks
2277         * device/include/stdio.h: add printf_fast_f
2278
2279 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2280
2281         * src/SDCCmain.c: make --float-reent default for mcs51
2282         * device/lib/_fsadd.c: added mcs51 assembly version
2283         * device/lib/_fssub.c: added mcs51 assembly version
2284         * device/lib/_fsmul.c: added mcs51 assembly version
2285         * device/lib/_fsdiv.c: added mcs51 assembly version
2286         * device/lib/_fseq.c: added mcs51 assembly version
2287         * device/lib/_fsneq.c: added mcs51 assembly version
2288         * device/lib/_fsgt.c: added mcs51 assembly version
2289         * device/lib/_fslt.c: added mcs51 assembly version
2290         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2291         * device/lib/Makefile.in: add _fscmp to build
2292         * device/lib/libfloat.lib: add _fscmp to build
2293
2294 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2295
2296         * device/lib/_fs2slong.c: added mcs51 assembly version
2297         * device/lib/_fs2sint.c: added mcs51 assembly version
2298         * device/lib/_fs2schar.c: added mcs51 assembly version
2299         * device/lib/_fs2ulong.c: added mcs51 assembly version
2300         * device/lib/_fs2uint.c: added mcs51 assembly version
2301         * device/lib/_fs2uchar.c: added mcs51 assembly version
2302         * device/lib/_slong2fs.c: added mcs51 assembly version
2303         * device/lib/_sint2fs.c: added mcs51 assembly version
2304         * device/lib/_schar2fs.c: added mcs51 assembly version
2305         * device/lib/_ulong2fs.c: added mcs51 assembly version
2306         * device/lib/_uint2fs.c: added mcs51 assembly version
2307         * device/lib/_uchar2fs.c: added mcs51 assembly version
2308         * device/include/float.h: added #define to select asm vs c
2309
2310 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2311
2312         * device/lib/printf_fast.c: improvements to float output
2313         * device/include/float.h: add defines for assembly float library
2314         * device/lib/_fsget1arg.c: receive 1 float arg
2315         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2316         * device/lib/_fsnormalize.c: normalize a float
2317         * device/lib/_fsreturnval.c: return float, various helper routines
2318         * device/lib/_fsrshift.c: right shift a float's mantissa
2319         * device/lib/_fsswapargs.c: swap 2 floats
2320         * device/lib/Makefile.in: build these 6 new files for mcs51
2321         * device/lib/libfloat.lib: add these 6 files to the library
2322
2323 2004-12-26 Borut Razem <borut.razem AT siol.net>
2324
2325         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2326           built by gcc 3.4.2
2327
2328 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2329
2330         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2331           and fully reentrant and register bank neutral.
2332         * device/lib/printf_fast.c: added float (not enabled by default),
2333           added compact/slower integer (also not enabled by default),
2334           improved size/speed of fast integer code, other minor changes
2335         * device/include/stdio.h, device/lib/Makefile.in,
2336           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2337
2338 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2339
2340         * src/pic16/pcode.c: declaring variables other than at the start of a
2341           block is not supported in C by VC6.
2342
2343 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2344
2345         * applied a previous patch from Raphael Neider that wasn't included
2346         in the previous commits, which fixes infinite loops within jumptable
2347         improvements,
2348         * made some fixes that previous patches introduced
2349
2350 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2351
2352         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2353         that fixes an issue with AOP_PCODE asmop's offset,
2354         * (pic16_popCopyReg): update instance field too,
2355         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2356         function of pic port,
2357         * (genCmp, genAnd, genAssign),
2358         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2359
2360 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2361
2362         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2363         variables initial values to idata section,
2364         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2365         variables in some functions. This utilizes parmBytes field of iCode
2366         structure to hold the offset of the variable in stack. (might be
2367         able to use the stack field too?)
2368         * applied patch from Raphael Neider # ### , # ###
2369         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2370         variable initial values in idata section,
2371         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2372         for static variables with initial value
2373         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2374         applied fix in while loop from Raphael Neider.
2375
2376 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2377
2378         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2379         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2380         * src/ds390/ralloc.c (serialRegAssign): spill bits
2381         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2382         * support/Util/SDCCerr.c,
2383         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2384         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2385         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2386
2387 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2388
2389         * device/include/sdcc-lib.h: inserted LGPL, added includes
2390           asm/ds390/features.h and asm/mcs51/features.h
2391         * device/include/asm/default/features.h,
2392         * device/include/asm/gbz80/features.h,
2393         * device/include/asm/z80/features.h: added empty _AUTOMEM
2394           and _STATMEM
2395         * device/include/asm/ds390/features.h,
2396         * device/include/asm/mcs51/features.h: added files with defines for
2397           _AUTOMEM and _STATMEM indicating automatic and static storage class
2398         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2399         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2400         * src/SDCCicode.c (geniCodeCast),
2401         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2402         * src/SDCCloop.c (loopInduction): removed unused variable lr
2403         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2404           to convertToFcall to include char modulo (RFE 1065037), added check
2405           if left operand is unsigned and use abs of literal value
2406         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2407           as it doesn't work after conversion from peephole.def to peephole.rul
2408         * src/mcs51/gen.c (toBoolean): added check for size,
2409           (genModOneByte): optimized code for signed char modulo a literal
2410           power of 2 (thanks to Hubert Sack),
2411           (genRRC): removed unnecessary "clr c",
2412           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2413         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2414           jump optimization,
2415           swapped rules 256.c and 256.d,
2416           extended 256.d by using new multiple checks (thanks Erik),
2417           added rules 256.e and 256.f,
2418           updated rule 261.a and 261.b to new generated code
2419         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2420
2421 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2422
2423         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2424           induction related bugs, including first part of bug #1074377
2425
2426 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2427
2428         * applied patch from bug-report #1076292,
2429         * applied patches for genAnd and Goto-optimizations for Raphael
2430         Neider,
2431         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2432         dump a less iCode information,
2433         * src/pic16/device.h (pic16_options_t): added field debgen,
2434         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2435         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2436         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2437         puclic,
2438         * (various functions): added macros FENTRY and FENTRY2 to functions,
2439         to emit function prologue,
2440         * (various functions): fixed indentation,
2441         * (genNearPointerGet): fixed loading of FSR0,
2442         * (genPackBits): applied patch from Raphael Neider to fix updating
2443         of FSR0 and touching only the modified bits,
2444         * src/pic16/genarith.c (various functions): added macros FENTRY to
2445         emit function prologue in comments,
2446         * src/pic16/pcode.h: added functions debugf2, debugf3,
2447         * src/pic16/ralloc.c: partial fix for packForPush caused
2448         segmentation fault,
2449
2450 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2451
2452         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2453           <stsp AT users.sourceforge.net> with reversed byte order
2454         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2455
2456 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2457
2458         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2459           bug #1074377
2460         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2461         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2462
2463 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2464
2465         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2466
2467 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2468
2469         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2470           conditions,
2471           (setFromConditionArgs): friendly operand parser for peephole rules,
2472           (operandBaseName, operandsNotRelated): new peephole condition
2473           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2474           architecture specific register naming into account, handles n-way
2475           comparisons, and supports quoted literals
2476         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2477
2478 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2479
2480         * src/mcs51/peeph.def: fixed bug #1076940
2481
2482 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2483
2484         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2485
2486 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2487
2488         Adding support for replacing ljmps with sjmps in jumptables
2489         generated for switch statements. For now you need to set the
2490         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2491         Now 4 algorithms for mcs51 jumptable generation are used:
2492         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2493         addresses loaded pc-relative for up to 112 cases and stack-pushing
2494         target addresses loaded with offset from dptr for up to 256 cases.
2495
2496         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2497         * src/mcs51/main.c: adapted constants for switch table generation
2498         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2499
2500 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2501
2502         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2503         * support/regression/tests/bug1057979.c: added test for bug 1073386
2504
2505 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2506
2507         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2508         compilers
2509
2510 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2511
2512         * src/pic16/device.h,
2513         * src/pic16/genarith.c,
2514         * src/pic16/glue.c,
2515         * src/pic16/main.c,
2516         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2517
2518 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2519
2520         Large cummulative patch for pic16 port.
2521         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2522         to call when a stack overflow occurs,
2523         * (malloc.h): added CVS Id tag,
2524         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2525         variable,
2526         * added libc directory. The current version of LibC contains string
2527         functions, ctype functions and macros and some functions of the
2528         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2529         be extensively tested in the future. Standard disclaimer here.
2530         Library is not automatically build yet. But one can build it by
2531         invoking 'make' inside the libc directory.
2532         * added ADC library under libio. Preliminary version yet.
2533
2534         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2535         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2536         aopForRemat() now and not by pic16_aopOp(),
2537         * (pic16_popGetTempReg): removed warning messgae when allocating
2538         temporary registers, its a buggy feature and will be removed,
2539         * (pic16_popGet): set register instance field in AOP_CRY,
2540         * (pic16_outBitC): fixed for results in size greater than 1,
2541         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2542         * (pic16_storeForReturn): optimized return of 0,
2543         * (genCmp): experimental code for new genCmp which uses PIC18's
2544         special compare&skip instructions. Initial tests fail some times
2545         with variables grater than 1 byte in size, so new code is disabled,
2546         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2547         a single bit,
2548         * (genCast): began a fix to optimize the casting of a bit to another
2549         bit, now assigning a bitfield to another bitfield will fail, sorry,
2550         * src/pic16/main.c: disabled the use of lr-support feature,
2551         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2552         * added some function prototypes, added function _debugf prototype,
2553         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2554         bits with offset (case PO_GPR_BIT),
2555         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2556         command line,
2557         * (isBankInstruction): modified to return 0 for no banking instruction,
2558         and 1 for banking instruction,
2559         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2560         caused stop processing pCodes after a inline assembly block,
2561         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2562         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2563         registers when it shouldn't,
2564         * src/pic16/ralloc.c (allocReg): add preliminary support for
2565         supporting a limited set of temporary registers,
2566
2567 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2568
2569         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2570           genDataPointerSet): ensure assignments always copy in MSB to LSB
2571           order,
2572           (loadRegFromAop): recognize CLRH optimization,
2573           (genFunction): optimize RECEIVE iCodes in reentrant functions
2574
2575 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2576
2577         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2578           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2579           selected.
2580         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2581         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2582           contiguous with data
2583
2584 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2585
2586         * device/lib/_gptrget.c (_gptrget),
2587         * device/lib/_gptrgetc.c (_gptrgetc),
2588         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2589           instead of sjmp to ret
2590         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2591           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2592
2593 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2594
2595         * .version: bumped version to 2.4.7
2596         * device/lib/_gptrget.c (_gptrget): is now _naked
2597         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2598         * device/lib/_gptrput.c (_gptrput): is now _naked
2599         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2600           (createFunction): fixed xstack
2601         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2602         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2603           or bit either,
2604           (geniCodeCritical): store original interrupt state in an iTemp bit
2605           var unless stack-auto
2606         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2607         * src/SDCCmain.c (setIncludePath): added include/target to search path
2608         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2609         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2610           prototype,
2611           (processFuncArgs): put bit vars in bit area
2612         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2613           unsaveRBank): fixed xstack,
2614           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2615           (genFunction, genEndFunction): fixed xstack,
2616           (genAssign): optimization don't walk backwards through mem
2617         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2618         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2619         * support/regression/Makefile: also make library (for stack-auto) when
2620           making "all" and added "test-mcs51-xstack-auto"
2621         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2622         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2623         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2624         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2625         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2626           make-library by MAKE_LIBRARY
2627         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2628           regression tests for xstack
2629         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2630         * support/regression/tests/critical.c: test for critical on mcs51
2631
2632 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2633
2634         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2635           built version of sdcc instead of installed version
2636
2637 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2638
2639         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2640         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2641           vprintf.c now
2642         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2643         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2644           WARNING: remove device/lib/build/z80/printf.o by hand when
2645           updating from previous build!
2646         * device/lib/z80/printf.c: updated comment
2647         * support/regression/tests/bug1057979.c: test all ports now
2648         * support/regression/tests/bug1065458.c: file added
2649
2650 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2651
2652         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2653           *_start and *_end symbols for static functions
2654
2655 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2656
2657         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2658           and search crt0.o in all library paths,
2659           (setIncludePath): proper handling of --nostdinc,
2660           (setLibPath): proper handling of --nostdlib
2661         * support/regression/Makefile,
2662         * support/regression/ports/ds390/spec.mk,
2663         * support/regression/ports/gbz80/spec.mk,
2664         * support/regression/ports/hc08/spec.mk,
2665         * support/regression/ports/mcs51/spec.mk,
2666         * support/regression/ports/mcs51-large/spec.mk,
2667         * support/regression/ports/mcs51-stack-auto/spec.mk,
2668         * support/regression/ports/z80/spec.mk: use include and lib files from
2669           built version of sdcc instead of installed version
2670         * doc/sdccman.lyx: fixed typo in --nostdinc
2671
2672 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2673
2674         * src/pic/pcode.c,
2675         * src/pic/device.c,
2676         * src/pic/ralloc.c,
2677         * src/pic/gen.c : added support to generate code for struct bit fields.
2678
2679 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2680
2681         * as/xa51/xa_version.h,
2682         * device/include/errno.h,
2683         * device/include/regc515c.h,
2684         * device/lib/_itoa.c,
2685         * device/lib/_ltoa.c,
2686         * device/lib/ser_ir_cts_rts.c,
2687         * sim/ucsim/xa.src/glob.cc,
2688         * sim/ucsim/xa.src/inst_gen.cc,
2689         * sim/ucsim/xa.src/xa_bit.cc,
2690         * sim/ucsim/xa.src/xa_sfr.cc,
2691         * sim/ucsim/z80.src/inst_dd.cc,
2692         * sim/ucsim/z80.src/inst_fdcb.cc,
2693         * support/scripts/keil2sdcc.pl,
2694         * src/pic16/pic16.dsp,
2695         * src/pic16/pic16a.dsp: corrected cvs line endings
2696         * device/lib/printf_large.c: fixed bug 1057979
2697         * src/pic16/gen.c: fixed non-C standard code
2698         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2699         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2700         * support/regression/ports/mcs51/support.c: reload T1 asap
2701         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2702           pdata use and clear idata startup behaviour
2703         * support/regression/tests/bug1057979.c: added
2704
2705 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2706
2707         * device/examples/ds390/ow390/ad26.h,
2708         * device/examples/ds390/ow390/cnt1d.h,
2709         * device/examples/ds390/ow390/crcutil.c,
2710         * device/examples/ds390/ow390/ownet.h,
2711         * device/examples/ds390/ow390/owsesu.c,
2712         * device/examples/ds390/ow390/swt12.h,
2713         * device/examples/ds390/ow390/swtoper.c,
2714         * device/examples/ds390/ow390/temp10.h,
2715         * device/examples/ds390/ow390/thermodl.c,
2716         * device/examples/ds390/tinitalk/tinitalk.dsp,
2717         * device/examples/ds390/tinitalk/tinitalk.dsw,
2718         * device/examples/mcs51/clock/hw.h,
2719         * device/examples/mcs51/simple2/go.bat,
2720         * device/examples/serialcomm/windows/serial.h,
2721         * device/examples/xa51/dummy.c,
2722         * device/examples/xa51/hello.c,
2723         * device/include/80c51xa.h,
2724         * device/include/at89x051.h: corrected cvs line endings
2725
2726 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2727
2728         * src/pic16/main.c (options): added command line --gstack, to trace
2729         stack over/under flows,
2730         * added pragma 'wparam' to allow passing first byte of function
2731         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2732         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2733         call to __gstack_test function and sets up the symbol as extern,
2734         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2735         * popaop): added call to pic16_testStackOverflow,
2736         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2737         wparamList list,
2738         * (genCall, genPcall): now all parameters are passed via stack
2739         except in functions that are pass to wparam pragma in which WREG is
2740         used too,
2741         * (genPcall): REENTRANT flag is checked to see if variable prototype
2742         contains reentrant keyword, don't call a non-reentrant function, via
2743         a reentrant function pointer or vice versa, functions are never
2744         passed via WREG,
2745         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2746         D.Winkler,
2747         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2748         SIGSEGV when accessing a NULL register stucture,
2749         * (pic16_printGPointerType): modified to handle UPPER modifier for
2750         function initializers, changed prototype of function to simpler one,
2751         * (pic16_printIvalFuncPtr): check to see if function is already
2752         added in externs list,
2753         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2754         optimized a move from W to SFR with a move to the same register
2755         later after a CALL,
2756         * device/lib/pic16/debug: NEW directory, contains debug features
2757         which are enabled when linking with libdebug.lib, currently command
2758         line option --gstack enables stack pointer tracing for over/under
2759         flow, corresponding sources are in debug/gstack
2760
2761 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2762
2763         * doc/sdccman.lyx: updated SDCC version,
2764         * (PIC16 port): update list of command line options,
2765         * src/pic16/device.h (structure pic16_options_t): added field gstack
2766         to enable stack overflow tracing on push/pops,
2767         * src/pic16/device.c (statistics structure): added statistics
2768         structure,
2769         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2770         pic16_dump_int_registers): increase statistics counters for each
2771         * variable which is encountered
2772         * (pic16_dump_usection): emit each .udata variable to its own udata
2773         section,
2774         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2775         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2776         parameters via stack, otherwise use old scheme,
2777         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2778         assembler output file,
2779         * src/pic16/main.c: added command line options --gstack to enable
2780         push/pop tracing for stack overflow,
2781         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2782         instructions): added size of each instruction,
2783         * (pic16_countInstruction): estimate size of instructions in
2784         the_pFile list, inline assembly blocks are not counted,
2785         * (pic16_FixRegisterBanking): trace previous register usage, when
2786         banksel optimizations is greater than 0, don't emit a redudant
2787         banksel directive,
2788
2789 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2790
2791         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2792         * src/pic16/ralloc.c : applied same fix for pic16.
2793         * src/pic/gen.c : tidied it up a little.
2794
2795 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2796
2797         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2798         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2799
2800 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2801
2802         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2803
2804 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2805
2806         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2807         non-reentrant function __modsint in the interrupt function (thus
2808         corrupting math operations during serial I/O)
2809         * device/lib/ser_ir.c: as above, changed buffersize
2810         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2811         256.c,d for zeroing
2812         * doc/Makefile: added option -t for rsync
2813
2814 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2815
2816         * src/SDCCast.h (struct ast),
2817         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2818
2819 2004-10-20 Borut Razem <borut.razem AT siol.net>
2820
2821         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2822         package
2823
2824 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2825
2826         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2827         makefile targets,
2828         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2829         support functions to replace long sequences of MOVFF's from access
2830         bank registers to stack and vice versa,
2831         * src/pic16/device.h: added new field opt_flags, where optimization
2832         flags can be set to enable certain features,
2833         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2834         * pBlock, (genFunction, genEndFunction): surroung loop for
2835         saving/loading used registers in stack with PC_INFO pCodes,
2836         INF_LREGS. Code in between can then be optimized by pCode optimizer
2837         to support function calls,
2838         * (genDataPointerSet): fixed bug which loaded float fields in
2839         structures with corrupt data,
2840         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2841         in a standard way debug info on stderr. Feature used for developing
2842         and debugging only,
2843         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2844         obsolete chunks of code,
2845         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2846         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2847         * pic16/src/pcode.c (pic16_newpCodeInfo,
2848         * (pic16_newpCodeOpLocalRegs),
2849         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2850         feature,
2851         * (pic16_pCodeConstString): printing of the initial value of a
2852         symbol as a comment is inhibited since parsing was already done by
2853         copyStr and output is corrupt,
2854         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2855
2856 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2857
2858         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2859
2860 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2861
2862         * as/mcs51/lkarea.c: removed old K&R style,
2863           (lnksect): changed check on boundary error,
2864           (lnksect2): changed check on boundary error,
2865           (lnksect2): extend XSTK to end of page if size = 1
2866         * as/mcs51/lkmain.c: removed old K&R style,
2867           (Areas51): create l_IRAM symbol
2868         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2869         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2870           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2871         * device/lib/_mullong.c: added version to be compiled with xstack
2872         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2873         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2874         * device/lib/mcs51/crtxstack.asm: fixed comment
2875         * src/SDCCglue.c: maxInterrupts defaults to 0,
2876           (emitMaps): added pdata,
2877           (createInterruptVect): (re)moved default,
2878           (glue): added pdata,
2879           (glue): moved __start__xstack to XSTK with default size 1
2880         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2881           and options.float_rent when options.stackAuto is set,
2882           (linkEdit): only write XDATA_NAME if provided on command line
2883         * src/SDCCmem.h,
2884         * src/SDCCmem.c: added pdata
2885         * src/port.h: added pdata_name to PORT
2886         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2887           (saveRegisters, unsaveRegisters): removed usage of B,
2888           (genMinus): fixed accumulator clash,
2889           (genJumpTab): added comment, this needs another look
2890         * src/mcs51/gen.c: added check for "B in use" paranoia,
2891           added pushB() and popB()
2892         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2893           chance
2894         * src/avr/main.c,
2895         * src/ds390/main.c,
2896         * src/hc08/main.c,
2897         * src/mcs51/main.c,
2898         * src/pic/main.c,
2899         * src/pic16/main.c,
2900         * src/xa51/main.c,
2901         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2902           added PSEG (PAG,XDATA) or NULL to port specifier
2903         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2904         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2905           (_mcs51_genInitStartup): removed __start__xstack equ,
2906           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2907         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2908         * src/z80/gen.c (_rleAppend): fixed warnings
2909         * support/regression/tests/zeropad.c: added pdata test
2910         * .version: bumped to 2.4.6
2911
2912 2004-10-17 Borut Razem <borut.razem AT siol.net>
2913
2914         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2915         as a part of nightly build
2916
2917 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2918
2919         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2920         WREG holds the first byte function parameters,
2921         * (aopForSym): take special case for symbols which are in FARSPACE
2922         but in CODESPACE too,
2923         * (assignResultValue): modified to take into account _G.useWreg,
2924         * (genCall): don't use wreg for parameter passing when function is
2925         declared as reentrant, too, added optimization INCF to stack
2926         pointer when stack parameter count is 1,
2927         * (genFunction, genEndFunction): refurnished and fixed to not using
2928         wreg for passing parameters when function has varargs or is
2929         reentrant, fixed bug with symbol name compare for generating
2930         functions in absolute address,
2931         * (pic16_storeForReturn): refurnished,
2932         * (genCmp): began writing a new version of the function, not ready
2933         yet, therefore it is disabled,
2934         * (genAssign): do not read code memory when assigning a function to
2935         a pointer function,
2936         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2937         array of characters, not pointer,
2938         * (pic16initialComments): in debug mode emit an .ident directive for
2939         the assembler,
2940         * (_process_pragma): emit a new warning type (internal to pic16)
2941         when setting stack to default length, emit a similar warning when
2942         placing a function at absolute address and address is not word aligned
2943         * (_pic16_parseOptions): added 'return TRUE' statement,
2944         * (_pic16_linkEdit): if compiling a source, then add the source's
2945         file object, first in the list of objects to link,
2946
2947 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2948
2949         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2950         * src/pic/main.c : removed VC warning.
2951         * src/pic/gen.c : changed comment.
2952
2953 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2954
2955         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2956         reference to a deprecated symbol _GPTRREG was causing failure to
2957         link. Thanks G. M. Gallant for the info.
2958
2959 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2960
2961         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2962         comments for Bugs item #954788.
2963
2964 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2965
2966         * src/pic16/device.c (pic16_dump_gsection,
2967         * pic16_groupRegistersInSection): handle symbols declared to be in
2968         access bank differently,
2969         * src/pic16/gen.c (struct _G): added field resDirect,
2970         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2971         send values read from stack directly to result and don't allocate
2972         temporary values,
2973         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2974         same registers,
2975         * (pic16_sameRegsOfs): NEW,
2976         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2977         free because they were not allocated from temporary pool,
2978         * pic16_popRegFromString): workaround to fix a problem with
2979         allocating variables twice or never,
2980         * (genGenPointerGet): using PRODL instead of FSR0H,
2981         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2982         instead of FSR0H,
2983         * (genAssign): take advantage of the _G.resDirect flag,
2984         * (genCast): around line 11844, use mov2f instead of directly
2985         MOVFF'ing between operands to account for literal values,
2986         * src/pic16/genutils.c: some new debug functions for gpsim have been
2987         added,
2988         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2989         float with integer part only,
2990         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2991         place variables in access bank
2992         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2993         updated sources to reflect recent changes in gen.c
2994
2995 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2996
2997         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2998         sources that searched for headers in installation path, now the
2999         device/include/pic16 is used,
3000         * src/pic16/glue.c (pic16glue),
3001         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3002         .line directives if not in debug mode, this suppresses assembler's
3003         warnings for ignored directives
3004
3005 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3006
3007         * src/port.h: made reset_regparms prototype void parameter explicit.
3008         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3009         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3010         * doc/sdccman.lyx: documented warning disabling and how to use
3011           printf_large to make it print floats.
3012         * device/include/stdbool.h: NEW
3013         * device/lib/_atof.c,
3014         * device/lib/_divuint.c,
3015         * device/lib/_divulong.c,
3016         * device/lib/expf.c,
3017         * device/lib/printf_large.c,
3018         * device/lib/sincosf.c,
3019         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3020         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3021           a completely reentrant lib.
3022
3023 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3024
3025         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3026         * device/include/pic16/stdio.h: fixed bug with colon
3027
3028 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3029
3030         * device/include/pic16/stdio.h,
3031         * device/include/pic16/stdlib.h,
3032         * device/include/pic16/math.h: NEW
3033         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3034         declared as _naked to reduce overhead
3035         * device/lib/Makefile.in (target port-specific-objects-pic16):
3036         changed * to *.* so to ignore the CVS directory,
3037         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3038         stacked variables back in stack,
3039         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3040         corruption
3041
3042 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3043
3044         * .version: bumped version number to 2.4.5
3045         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3046         * support/Util/SDCCerr.c (messages structure): added entry for
3047         W_POSSBUG2
3048
3049         Large cumulative patch for pic16 port and libraries.
3050         * device/include/pic16/sdcc-lib.h,
3051         * device/include/pic16/stdarg.h,
3052         * device/include/asm/pic16/features.h,
3053         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3054         * device/include/pic16/float.h: changes reentrant keyword with
3055         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3056         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3057         updated target build-libraries to include objects from gptr,
3058         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3059         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3060         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3061         all function headings,
3062         * src/SDCCmain.c: added global parameter userIncDirsSet,
3063         * (parseCmdLine): when option -I is encountered add directory to
3064         userIncDirsSet too,
3065         * src/version.awk: added space between control and long,
3066         * src/pic16/NOTES: added some notes for the port,
3067         * src/pic16/gen.c: added prototype for mov2fp function,
3068         * (fReturnpic16[]): properly named return value registers,
3069         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3070         * (aopForSym): added code to handle symbols with onStack flag set,
3071         symbols onStack are allocated PTRSIZE bytes,
3072         * (aopFreeAsmop): handles special case where asmops are stack objects,
3073         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3074         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3075         added argument lock to trace flaws in allocating temporary registers
3076         when developing port,
3077         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3078         * (pic16_popRegFromString): reenabled allocating a direct register
3079         from string,
3080         * (assignResultValue): various beautifications,
3081         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3082         referenced function argument,
3083         * (genIpush): reenabled to allow stacked arguments, handles only
3084         ic->parmPush iCodes,
3085         * (genCall, genPcall): major changes to allow for variable argument
3086         functions, fixed a bug with falsely restoring stack pointer after
3087         returning from call,
3088         * (genFunction): pending code for critical function,
3089         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3090         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3091         * (genNearPointerGet): fixed bug with indirect reading, was always
3092         reading from INDF0
3093         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3094         pointers,
3095         * (genAddrOf): rewrote code to take address of a stacked function parameter
3096         * (genCast): fixed casting to generic pointer type,
3097         * src/pic16/gen.h: added AOP_STA,
3098         * (struct asmop): added field stk,
3099         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3100         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3101         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3102         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3103         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3104         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3105         generic pointers,
3106         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3107         and library paths,
3108         * (pic16_port structure): generic pointer size is set to 3,
3109         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3110         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3111         compiler warning,
3112         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3113         operand is an iTemp,
3114
3115 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3116
3117         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3118         * debugger/mcs51/simi.c: addapt new syntax of s51
3119
3120 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3121
3122         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3123         * src/pic16/pcode.c: commented out some calls to free() in order to
3124         fix bug #989576,
3125
3126 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3127
3128         * src/SDCCicode.h,
3129         * src/SDCCicode.c (isiCodeInFunctionCall),
3130         * src/avr/ralloc.c (selectSpil),
3131         * src/pic/ralloc.c (selectSpil),
3132         * src/pic16/ralloc.c (selectSpil),
3133         * src/ds390/ralloc.c (selectSpil),
3134         * src/hc08/ralloc.c (selectSpil),
3135         * src/xa51/ralloc.c (selectSpil),
3136         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3137         stack in the middle of a function call sequence (fixes bug #1020268)
3138         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3139         costs associated with the minimum switch case.
3140
3141 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3142
3143         * src/SDCC.lex: fixed bug #1030549
3144
3145 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3146
3147         * src/SDCCcse.h (struct cseDef),
3148         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3149         over a function call if the CSE is derived from a symbol whose
3150         address has been taken (fixes bug #1029883)
3151         * support/regression/tests/bug-1029883: a new regression test for
3152         this bug
3153
3154 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3155
3156         * src/hc08/gen.c (emitinline): fixed bug #1029778
3157         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3158         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3159         and starts toward RFE #905167)
3160
3161 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3162
3163         * src/pic16/gen.c (mov2f): New function to move an operand to
3164         another without considering if it is a literal or a register,
3165         * (pic16_sameRegs): don't check if they are both AOP_REG,
3166         * (AccRsh): removed andmask=0 lines,
3167         * (genLeftShift): duplicated to be improved in future versions,
3168         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3169         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3170         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3171         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3172         * (insertBankSwitch): fixed inserting banksel directives algorithm
3173         for instructions that follow a skip instruction, this fixes a report
3174         for broken subtraction code generation,
3175         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3176         iCode is a left op, just in case result and right share the same
3177         registers
3178
3179 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3180
3181         * src/hc08/main.c,
3182         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3183         preservation of HX
3184         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3185         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3186         on 2004-09-12; it was buggy
3187
3188 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3189
3190         * src/SDCCsymt.h: removed RESULT_CHECK
3191         * src/SDCCast.c,
3192         * src/SDCCglue.c,
3193         * src/SDCCval.c,
3194         * src/pic/glue.c,
3195         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3196
3197 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3198
3199         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3200         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3201         configuration values no more rejected by compiler, they are assigned
3202         to configuration registers with a warning message instead,
3203         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3204         the for-loop so last conf register is emitted too,
3205         * (_pic16_initPaths): link library libsdcc.lib by default,
3206         * (_hasNativeMulFor): modified test for multiplication according to
3207         Raphael Neider's remarks. Integer multiplication is also done with
3208         support functions,
3209         * device/include/pic16/pic18fregs.h: corrected type error in while
3210         testing and including 18f6720 header file
3211
3212 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3213
3214         * src/pic16/device.h (pic16_options): removed field use_crt,
3215         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3216         until an optimization to handle single bits is added,
3217         * (pic16_loadFSR0): moved before genUnpackBits,
3218         * (genAnd): some white lines removed,
3219         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3220         leave_reset flags in pic16_options when using crt modules,
3221
3222 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3223
3224         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3225           for bugs 898889 & 979599. Also used some safer print instructions.
3226
3227 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3228
3229         * src/pic16/device.h (pic16_options_t): added field use_crt,
3230         crt_name, no_crt,
3231         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3232         catch a probable future bug,
3233         * src/pic16/gen.c: aopIdx function commented out,
3234         * (genAssign): commented out old code which used aopIdx,
3235         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3236         code, added if conditionals to take into account the --use-crt
3237         command line options,
3238         * src/pic16/main.c (pic16_optionsTable): added new command line
3239         options, --use-crt= and --no-crt,
3240         * (_pic16_linkEdit): now the proper crt object is added in the
3241         linker command line except than when --no-crt is specified,
3242         * src/pic16/pcode.c,
3243         * src/pic16/pcode.h: added some structures and functions for a new
3244         optimization scheme to compansate for instruction overhead between
3245         same iCodes, this scheme is currently under development and is not
3246         working in any way,
3247         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3248         to && operator,
3249         * device/lib/pic16/startup/crt0i.c,
3250         * device/lib/pic16/startup/crt0iz.c: added global char variable
3251         __uflags to force the generation of an idata section
3252
3253 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3254
3255         * doc/Makefile,
3256         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3257         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3258
3259 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3260
3261         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3262         Frieder) and clarified the default code optimization mode
3263
3264 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3265
3266         * src/SDCC.lex (doPragma, process_pragma),
3267         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3268         "opt_code_size", and "opt_code_balanced"
3269         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3270         regrouped options by category, added support for category headers
3271         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3272         and "--opt-code-size"
3273         * doc/sdccman.lyx: documented these new options and pragmas
3274         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3275         preference into account
3276
3277 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3278
3279         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3280           geniCodePreDec): Fixed bug 904237 by generating a warning
3281         * src/SDCCerr.h,
3282         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3283
3284 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3285
3286         * src/pic/device.c : When no max ram set validate full memory range.
3287         * src/pic/pcode.c,
3288         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3289
3290 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3291
3292         * device/lib/_gptrget.c,
3293         * device/lib/_gptrput.c: updated comment
3294         * device/lib/calloc.c,
3295         * device/lib/free.c,
3296         * device/lib/malloc.c,
3297         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3298         * src/SDCCcse.c (cseBBlock),
3299         * src/SDCCicode.c (printOperand, geniCodeArray),
3300         * src/SDCCicode.h (struct operand): fixed bug 868103
3301         * support/regression/tests/bug-868103.c: added
3302         * src/SDCCast.c (searchLitOp),
3303         * src/SDCCcse.h (struct cseDef),
3304         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3305         * src/SDCCicode.h (struct operand),
3306         * src/SDCCsymt.h (struct sym_link),
3307         * src/avr/gen.c (hasInc),
3308         * src/ds390/gen.c (hasInc),
3309         * src/hc08/gen.c (genPlusIncr, hasInc),
3310         * src/mcs51/gen.c (hasInc),
3311         * src/pic16/glue.c (pic16_printIvalChar),
3312         * src/pic16/ralloc.c (regWithIdx),
3313         * src/xa51/gen.c (hasInc) : removed warnings
3314         * src/SDCCast.c (createBlock): added comment ???
3315         * src/hc08/ralloc.c: updated comments
3316
3317 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3318
3319         * doc/sdccman.lyx: updated section on switch statements, added
3320         section about semaphore locking
3321         * doc/Makefile: added option -info for latex2html
3322         * device/lib/_gptrget.c,
3323         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3324
3325 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3326
3327         * src/pic/device.h,
3328         * src/pic/device.c,
3329         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3330          maxram is less than 0x100.
3331
3332 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3333
3334         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3335
3336 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3337
3338         * src/port.h,
3339         * src/mcs51/main.c,
3340         * src/ds390/main.c,
3341         * src/z80/main.c,
3342         * src/hc08/main.c,
3343         * src/pic/main.c,
3344         * src/pic16/main.c,
3345         * src/avr/main.c,
3346         * src/xa51/main.c
3347         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3348         a jump table is the best form for a switch statement, including
3349         automatic insertion of missing cases to make the case range
3350         continuous. Developed in collaboration with Frieder Ferlemann.
3351
3352 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3353
3354         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3355         accumulator result if it needs sign extension
3356
3357 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3358
3359         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3360
3361 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3362
3363         * device/lib/gbz80/printf.c,
3364         * device/lib/z80/printf.c: removed define for NULL
3365
3366 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3367
3368         * as/xa51/xa_link.c,
3369         * device/examples/ds390/ow390/ad26.c,
3370         * device/examples/ds390/ow390/cnt1d.c,
3371         * device/examples/ds390/ow390/counter.c,
3372         * device/examples/ds390/ow390/ds2480.h,
3373         * device/examples/ds390/ow390/ds2480ut.c,
3374         * device/examples/ds390/ow390/findtype.c,
3375         * device/examples/ds390/ow390/gethumd.c,
3376         * device/examples/ds390/ow390/owllu.c,
3377         * device/examples/ds390/ow390/ownetu.c,
3378         * device/examples/ds390/ow390/swt12.c,
3379         * device/examples/ds390/ow390/swtloop.c,
3380         * device/examples/ds390/ow390/temp.c,
3381         * device/examples/ds390/ow390/temp10.c,
3382         * device/examples/ds390/ow390/thermo21.c,
3383         * device/examples/ds390/ow390/tinilnk.c,
3384         * device/examples/ds390/ow390/tstfind.c,
3385         * device/examples/serialcomm/windows/serial.cpp,
3386         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3387         * device/include/reg51.h: fixed line endings for cvs
3388
3389 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3390
3391         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3392         packRegsForAccUse, packRegisters): new accumulator register
3393         packing algorithm
3394         * support/regression/ports/hc08/support.c (_putchar): suppress
3395         warning of unused variable
3396         * src/SDCCicode.c: added SWAP entry to codeTable
3397
3398 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3399
3400         * device/lib/sprintf.c: forgot to add this file before previous commit
3401
3402 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3403
3404         * src/pic16/gen.c (genPackBits): added operand right in function
3405         parameters, load result directly if p_type is POINTER (that is
3406         called by genNearPointerSet)
3407         * (genUnPackBits): added operand left in function parameters,
3408         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3409         FSR0 if accessing bitfields,
3410
3411 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3412
3413         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3414           _print_format; updated printf, sprintf, vsprintf
3415         * device/include/asm/default/features.h: corrected comment/define
3416         * device/lib/Makefile.in: added sprintf.c
3417         * device/lib/libsdcc.lib: added sprintf module
3418         * device/lib/printf_large.c,
3419         * device/lib/vprintf.c,
3420         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3421           into these 3 files
3422         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3423         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3424         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3425           hc08 test
3426         * support/regression/tests/zeropad.c: define idata as data for hc08
3427
3428 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3429
3430         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3431         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3432         labels are referenced at least once (even if a reference is not found)
3433         * src/hc08/gen.c (emitcode): set isComment flag for comments
3434         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3435         loads), rules 6a..6b (optimize jumps to return)
3436
3437 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3438
3439         * device/lib/acosf.c (acosf),
3440         * device/lib/asinf.c (asinf),
3441         * device/lib/atanf.c (atanf),
3442         * device/lib/ceilf.c (ceilf),
3443         * device/lib/cosf.c (cosf),
3444         * device/lib/coshf.c (coshf),
3445         * device/lib/cotf.c (cotf),
3446         * device/lib/fabsf.c (fabsf),
3447         * device/lib/floorf.c (floorf),
3448         * device/lib/log10f.c (log10f),
3449         * device/lib/logf.c (logf),
3450         * device/lib/sinf.c (sinf),
3451         * device/lib/sinhf.c (sinhf),
3452         * device/lib/sqrtf.c (sqrtf),
3453         * device/lib/tanf.c (tanf),
3454         * device/lib/tanhf.c (tanhf),
3455         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3456         replaced all instances of "reentrant" in the library functions
3457         defined in math.h with this macro.
3458         * support/regression/tests/float_trans.c: reenabled test for hc08
3459
3460 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3461
3462         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3463         erroneously deleted
3464
3465 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3466
3467         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3468         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3469         multi-byte volatile operands are used
3470         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3471         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3472         initialization to area GSINIT0 so that it would always precede
3473         any static initializers in GSINIT
3474         * support/regression/tests/zeropad.c: fixed idata define for hc08
3475         * support/regression/tests/bug-927659.c,
3476         * support/regression/tests/float_trans.c: disabled tests for hc08
3477         pending missing library routines
3478         * .version: increased version number to 2.4.4 - hc08 port now passes
3479         regression tests
3480
3481
3482 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3483
3484         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3485         * Makefile.common.in,
3486         * as/Makefile,
3487         * as/hc08/Makefile.in,
3488         * as/mcs51/Makefile.in,
3489         * as/z80/Makefile.in,
3490         * debugger/mcs51/Makefile.in,
3491         * device/include/Makefile.in,
3492         * device/lib/Makefile.in,
3493         * doc/Makefile,
3494         * link/Makefile,
3495         * link/z80/Makefile.in,
3496         * packihx/Makefile.in,
3497         * sim/ucsim/main_in.mk,
3498         * sim/ucsim/avr.src/Makefile.in,
3499         * sim/ucsim/doc/Makefile.in,
3500         * sim/ucsim/gui.src/serio.src/Makefile.in,
3501         * sim/ucsim/hc08.src/Makefile.in,
3502         * sim/ucsim/s51.src/Makefile.in,
3503         * sim/ucsim/xa.src/Makefile.in,
3504         * sim/ucsim/z80.src/Makefile.in,
3505         * src/Makefile.in,
3506         * support/cpp2/Makefile.in,
3507         * support/librarian/Makefile,
3508         * support/makebin/Makefile: added DESTDIR to the install path proposed
3509         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3510         * doc/sdccman.lyx: added DESTDIR documentation
3511
3512 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3513
3514         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3515         instruction for interrupt handlers, use fast returns when returning
3516         from high priority interrupts
3517
3518 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3519
3520         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3521         code generation
3522         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3523         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3524         bugs, ported much of Bernhard's code from mcs51
3525         * src/mcs51/gen.c (genSend),
3526         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3527         than one when calling a reentrant function
3528         * device/lib/_mullong.c: defined an alternate struct layout for big
3529         endian ports (hc08)
3530
3531 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3532
3533         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3534         test
3535
3536 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3539         are sane and complete before asking the port its prefered parameter
3540         passing method (fixes bug #1017633)
3541         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3542         and _ret3
3543
3544 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3545
3546         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3547         problem in bitfields >= 8 bits.
3548
3549 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3550
3551         * src/SDCCsymt.c: undid changes that were not meant to be committed
3552
3553 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3554
3555         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3556
3557 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3558
3559         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3560           copied and wrong bit got inverted
3561
3562 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3563
3564         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3565         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3566         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3567         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3568         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3569         assignments to bitfields at known addresses
3570         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3571         reads from bitfields at known addresses
3572         * src/hc08/ralloc.c (packRegisters),
3573         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3574         genhc08Code): optimize pointer get values used as conditionals
3575         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3576         and branch
3577
3578 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3579
3580         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3581         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3582         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3583         as conditionals
3584
3585 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3586
3587         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3588
3589 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3590
3591         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3592         related problems
3593
3594 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3595
3596         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3597
3598 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3599
3600         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3601         mcs51 port
3602
3603 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3604
3605         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3606
3607 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3608
3609         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3610         cases use more compact code.
3611
3612 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3613
3614         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3615
3616 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3617
3618         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3619
3620 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3621
3622         * src/SDCCsymt.h,
3623         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3624         parameter of changePointer() from symbol* to sym_link*
3625         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3626         * src/SDCCsymt.c (compareType): void* type is castable to other
3627         pointers, but not necesarily an exact match.
3628         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3629         is no longer blindly treated as an exact match.
3630         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3631
3632 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3633
3634         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3635
3636 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3637
3638         * src/pic/gen.c,
3639         * src/pic/pcode.c,
3640         * src/pic/ralloc.h,
3641         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3642
3643 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3644
3645         * src/pic/device.c,
3646         * src/pic/device.h,
3647         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3648
3649 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3650
3651         * src/mcs51/gen.c (emitcode): fixed bug #992819
3652
3653 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3654
3655         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3656           there's no need to make it worse
3657
3658 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3659
3660         * src/mcs51/ralloc.c (deassignLR),
3661         * src/ds390/ralloc.c (deassignLR),
3662         * src/hc08/ralloc.c (deassignLR),
3663         * src/z80/ralloc.c (deassignLR),
3664         * src/pic/ralloc.c (deassignLR),
3665         * src/pic16/ralloc.c (deassignLR),
3666         * src/avr/ralloc.c (deassignLR),
3667         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3668         rlivePoint): fixed another part of bug #971834
3669
3670 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/z80/main.c: enabled "critical" keyword
3673         * src/z80/mappings.i,
3674         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3675         functions (fixes bug #979646)
3676         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3677
3678 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3679
3680         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3681           such as c:\mydir.
3682
3683 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3684
3685         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3686           doesn't disable too much optimizations
3687
3688 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3689
3690         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3691
3692 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3693
3694         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3695
3696 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3697
3698         * src/pic/gen.c tidied up tabs
3699         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3700         * src/pic/main.c tidied up tabs
3701         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3702         * src/pic/pcoderegs.c tidied up tabs
3703         * src/pic/ralloc.c tidied up tabs
3704
3705 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3706
3707         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3708         to S_FIXED for pic16 port and when symbol is not in level 0,
3709         allocate for S_REGISTER storage class and pic16 port, too,
3710         * src/pic16/device.h: prototype for checkSym,
3711         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3712         * (pic16_assignConfigWordValue): test the value and the mask to
3713         validate that the value is suitable for the configuration word,
3714         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3715         collect extern declared symbols, don't emit symbol twice, check
3716         first if symbol is in publics set first,
3717         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3718         * added command line '--fstack' which enables an experimental
3719         feature for stack access, too buggy to be used yet...
3720         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3721         * (pic16_allocDirReg): when register has storage class S_REGISTER
3722         allocate in pic16_dynAccessRegs,
3723         * device/include/pic16/pic18f????.h: modified configuration word
3724         naming convention, words started as CONFIG0H but should be CONFIG1H
3725
3726 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3727
3728         * device/include/mcs51reg.h: fixed bug 970993
3729
3730 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3731
3732         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3733         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3734         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3735         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3736         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3737         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3738           error/warning numbers,
3739           added function setWarningDisabled()
3740         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3741         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3742           _memcmp.c _memmove.c calloc.c realloc.c free.c
3743         * support/regression/tests/malloc.c: added tests for new functionality
3744         * support/regression/tests/zeropad.c: added tests for truncated initializers
3745           and initialized char arrays starting with '\x0'
3746         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3747
3748 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3749
3750         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3751
3752 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3753
3754         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3755         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3756         peephole 177.e. Thanks to anonymous
3757
3758 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3759
3760         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3761         function isn't used in the source but referenced as a
3762         variable initializer then declare it as extern in .asm file
3763
3764 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3765
3766         * .version: increased version number to 2.4.3
3767
3768         Adding version extension according to ChangeLog CVS revision
3769         * src/Makefile.in (target all): added dependency 'version.h'
3770         * (rule version.h): added rule to create version.h from ChangeLog,
3771         * (rule dep): added dependency version.h,
3772         * src/version.awk: AWK script to create version.h
3773         * src/SDCCdwarf2.c (dwWriteModule),
3774         * src/SDCCglue.c (initialComments),
3775         * src/SDCCmain.c (printVersionInfo): modified to write after
3776         version string the version extension number,
3777         * src/SDCCutil.c: included "version.h"
3778         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3779         number,
3780         * src/SDCCutil.h: added prototype for getBuildNumber
3781
3782         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3783         includeDirsSet, too,
3784         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3785         const char [] is found in function prototype...
3786
3787         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3788         moving to WREG with source is already in WREG,
3789         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3790         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3791         * (aopForSym): stack'ed symbols are partially supported, added
3792         if-clause to support symbols in FARSPACE,
3793         * (sameRegs): added test for AOP_ACC to see if registers are same,
3794         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3795         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3796         * (pic16_popRegFromString): will not allocate a new register if it
3797         doesn't find one by name, bug may have introduced...
3798         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3799         * (genIpush): revived to use pic16 port's stack,
3800         * (genAddrOf): added incomplete case for stack'ed operand,
3801         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3802         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3803         can handle multibyte operands,
3804         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3805         * (pic16initialComments): added message for MPLAB compatibility
3806         mode enabled,
3807         * src/pic16/main.h: prototype for pic16_mplab_comp,
3808         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3809         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3810         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3811         because of increased complexity of procedure,
3812         * (_process_pragma): stack pragma changed to format 'stack pos len',
3813         emit symbol '_stack_end' to conform with gplink,
3814         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3815         to search for register,
3816         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3817         PO_GPR_REGISTER,
3818         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3819         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3820         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3821         case for PO_GPR_REGISTER,
3822         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3823         dies, the new era is ahead !...
3824         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3825         pic16_dynInternalRegs,
3826         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3827         * (pic16_allocDirReg): minor optimizations and bug fixes,
3828         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3829
3830         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3831         load stack and frame pointer with address of 'stack_end' symbol
3832
3833 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3834
3835         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3836         without source code but only variable initializers
3837
3838 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3839
3840         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3841         external are not declared as extern to reduce overhead while linking
3842
3843 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3844
3845         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3846
3847 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3848
3849         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3850           Yee Keat for the patch
3851         * src/SDCCast.c (decorateType): fixed bug #979599
3852         * src/ds390/gen.h: removed local fReturnSizeDS390
3853         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3854         * src/ds390/gen.c (genAnd, genOr, genXor),
3855         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3856
3857 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3858
3859         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3860         add relFilesSet to $3, manipulate $2 to handle linking of object
3861         files without source files in command line,
3862         * device/include/pic16 (all headers): added ID location macros,
3863         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3864         entries for ID location bytes,
3865         * (pic16_assignIdByteValue): NEW,
3866         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3867         added field dumpcalltree to pic16_options_t,
3868         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3869         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3870         emitting rFalseIfx label after check_carry label,
3871         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3872         pic16_emitDIRegs), NEW
3873         * (pic16glue): dump .calltree file when option --calltree found,
3874         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3875         * (_pic16_genAssemblerPreamble): emit ID locations after
3876         configuration registers,
3877         * (pic16_linkCmd): modifications of the link command,
3878         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3879         * (pic16_pCodeInitRegisters): don't init stack registers,
3880         * (pic16_findPrevInstruction): fixed bug,
3881         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3882         bug with immediate registers,
3883         * (buildCallTree): traces stack push and pop,
3884         * (pct2): dump also stack usage for each function,
3885         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3886         * (pic16_allocDirReg): various modifications,
3887         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3888         fixed to 1,
3889
3890 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3891
3892         * src/pic16/pcode.c: removed buggy double colon
3893
3894 2004-07-01 Borut Razem <borut.razem AT siol.net>
3895
3896         * support/scripts/sdcc.nsi: added include/pic16 to setup
3897
3898 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3899
3900         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3901         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3902         target 'clean',
3903         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3904         specific command line arguments. Also added sample lkr script
3905         for placing a variable at a specific memory bank.
3906         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3907         at a specific memory bank,
3908         * (pic16_dump_isection): fixed bug which caused string literals to
3909         be omitted when dumping idata section,
3910         * (pic16_groupRegistersInSection): added code to handle registers
3911         in specific memory banks,
3912         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3913         public, all references are renamed too,
3914         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3915         AOP_DPTR2,
3916         * (pic16_storeForReturn): added case to handle when dest is WREG,
3917         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3918         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3919         pic16_rel_udata, check to see if that register is marked as being
3920         a member of a specific memory bank,
3921         * (pic16_printIvalCharPtr): added code to add string literals either
3922         to code or the idata sections,
3923         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3924         also accept the 'udata' pragma,
3925         * src/pic16/main.h: new structure types sectName and sectSym
3926         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3927         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3928         * (pic16_findPrevInstruction): fixed, it returned nothing,
3929         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3930         instruction combinations,
3931         * (pic16_FixRegisterBanking): heavily reorganised,
3932         * (pic16_AnalyzeBanking): if generating banksel directives is
3933         disabled, then don't call FixRegisterBanking at all,
3934         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3935         completely removed,
3936         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3937
3938 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3939
3940         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3941         Phuah Yee Keat <yk.phuah AT nestac.com>
3942
3943 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3944
3945         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3946         correctly the IVT even if it is relocated to some other location
3947
3948 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3949
3950         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3951         * device/include/pic16/pic18f2220.h: NEW,
3952         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3953         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3954         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3955         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3956         nodefaultlibs, ivt_loc is the location of the interrupt vector
3957         table, and nodefaultlibs signs that default libraries should not be
3958         linked in link stage,
3959         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3960         according to --ivt-loc argument,
3961         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3962         when pragma stack is found,
3963
3964 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3965
3966         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3967         256 (range check), 257 (do while), 258.a-f (bit banging
3968         f.e. on 3-wire SPI bus)
3969
3970 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3971
3972         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3973         variables used exclusively within a loop
3974
3975 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3976
3977         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3978
3979 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3980
3981         * src/SDCClrange.c (computeClash): fixed bug #971834
3982
3983 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         * src/mcs51/gen.c (genCmp): fixed bug #975903
3986         * src/hc08/gen.c (operandsEqu),
3987         * src/ds390/gen.c (operandsEqu),
3988         * src/z80/gen.c (operandsEqu),
3989         * src/pic/gen.c (operandsEqu),
3990         * src/pic16/gen.c (operandsEqu),
3991         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3992         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3993
3994 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3997
3998 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3999
4000         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
4001         default case in switch statement,
4002         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4003         to eliminate problem with initialisation of pointers, but problem
4004         still exists,
4005         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4006         * (emitStaticSegment): removed various lines emitting debug info,
4007         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4008         added processor registers for utilizing EEPROM,
4009         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4010         configurable and set 8
4011
4012 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4013
4014         * .version: increased version number to 2.4.2,
4015
4016         Cumulative patch for pic16 port
4017         * src/pic16/device.c: changed scheme to dump initial values for
4018         variables in idata segment, all print_idata* functions were removed,
4019         now the pic16_printIval* will be called,
4020         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4021         * _pic16_printPointerType, pic16_printPointerType,
4022         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4023         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4024         NEW, similar to the respective functions in SDCCglue.c,
4025         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4026         way, emitting hex bytes,
4027         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4028
4029 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4030
4031         * src/avr/ralloc.c (serialRegAssign),
4032         * src/xa51/ralloc.c (serialRegAssign),
4033         * src/pic/ralloc.c (serialRegAssign),
4034         * src/pic16/ralloc.c (serialRegAssign),
4035         * src/hc08/ralloc.c (serialRegAssign),
4036         * src/z80/ralloc.c (serialRegAssign),
4037         * src/ds390/ralloc.c (serialRegAssign),
4038         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4039
4040 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4041
4042         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4043         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4044
4045 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4046
4047         Cumulative patch for pic16 port:
4048         * src/pic16/device.h (typedef PIC16_device) modified fields for
4049         defining microcontrollers,
4050         * src/pic16/device.c: added new info for all devices in Pics16 array,
4051         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4052         to be optimised out by the pCode optimiser,
4053         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4054         specially, bug reported by G.M. Gallant,
4055         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4056         as force'd so that cannot be optimised out by pCode optimiser,
4057         * src/pic16/pcode.c,
4058         * src/pic16/pcodepeeph.c,
4059         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4060         they are disabled by default, but can be enabled explicit with
4061         command argument --denable-peeps, for testing,
4062         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4063         --pomit-ivt in COMPILE_FLAGS
4064
4065 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4066
4067         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4068           compilation on MSVC
4069
4070 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4071
4072         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4073
4074 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4075
4076         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4077         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4078
4079 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4080
4081         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4082         would only assign 0x300001 register.
4083
4084 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4085
4086         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4087         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4088
4089 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4090
4091         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4092         for ds80c400
4093         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4094         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4095         added peephole 254 (left shift), 255 (jump table)
4096
4097 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4098
4099         * device/lib/Makefile.in: removed comment line with model-pic16,
4100         * (target port-specific-objects-pic16): the libraries and objects
4101         are copied to the build directory form the device/lib/pic16/bin
4102         directory
4103
4104         Cumulative patch concerning pic16 port:
4105         * library directory has been re-organized,
4106         * added support for PIC18F1220,
4107         * added headers and library sources for chips 18f1220,18f6520,
4108         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4109
4110         * configuration registers setting has changed, now each supported
4111         device has a complete description of the registers it uses,
4112         * all initialisations are moved to idata sections, these section
4113         can be absolute or relocatable,
4114         * fixed initialisation of codespace variables,
4115         * fixed warning about PCLATU and gpsim,
4116         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4117         * (genAssign): use table reads when assigning from variables in codespace,
4118         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4119         char/int variables placed in codespace,
4120         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4121         registers set in .asm file, no need for --pomit-config-words anymore,
4122         * (pic16glue): some 8051 legacy segments are commented out
4123         (to be removed completely),
4124         * added support for alternative assembler and linker with --asm=
4125         and --link= command line arguments,
4126         * peepholes are disabled automatically in the port, no need to
4127         specify on command line,
4128         * port supports natively char/int/long multiplication, but converts
4129         all divisions to support functions,
4130         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4131         to the file set in variable $2,
4132         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4133         strings in ASCII format and not in hex,
4134         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4135         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4136         allocate proper register if iCodes aren't temporary,
4137
4138 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4139
4140         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4141
4142 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4143
4144         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4145         is commented out
4146
4147 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4148
4149         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4150         computed address is reused
4151         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4152         multi-byte bitfields
4153
4154 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4155
4156         * src/z80/gen.c: (genArrayInit): must check for pointers too
4157
4158 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4159
4160         * support/regression/tests/zeropad.c: never meant to commit the
4161           nestedstruct test: removed, added check for GCC version
4162
4163 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4164
4165         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4166         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4167         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4168           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4169           bugs 928906 and 954082 half-empty initializers
4170         * src/SDCCsymt.h,
4171         * src/SDCCsymt.c (getAllocSize): added for above fix
4172         * src/z80/gen.c (genArrayInit): fixed bug 741044
4173         * support/regression/tests/zeropad.c: added tests
4174
4175 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4176
4177         * src/pic16/device.c (pic16_dump_section): corrected bug which
4178         caused some symbols of the libraries to be misplaced
4179
4180 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4181
4182         * src/pic16/glue.c,
4183         * src/pic16/ralloc.h,
4184         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4185         to fix conflict with pic port
4186
4187 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4188
4189         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4190         externs configuration variables,
4191         * src/pic16/ralloc.h,
4192         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4193         prototype in header, commented out some debug messages
4194
4195 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4196
4197         * src/pic16/glue.c,
4198         * src/pic16/main.c,
4199         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4200         for gpasm COFF object generation. Thanks to D. Hawkins for
4201         his patch info
4202
4203 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4204
4205         * src/ds390/main.c,
4206         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4207         Brock for spotting this)
4208         * src/ds390/gen.c (genEndFunction),
4209         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4210         interrupt handler and critical. Disable push/pop optimizations when
4211         peephole optimizations disabled.
4212
4213 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4214
4215         Updated pic16 library sources and headers.
4216         * device/lib/pic16/pic18f*/ ,
4217         * device/include/pic16/*.h: modified to handle structured SFR
4218         definitions
4219
4220 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4221
4222         * src/port.h (PORT structure): added hook initPaths, now each
4223         port can declare its own default search paths,
4224         which can been seen with the --print-search-dirs option,
4225         see pic16 port for example,
4226         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4227         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4228         * (doPrintSearchDirs): NEW, replaces in a central manner the
4229         printing of search dirs which was split in set*Paths functions,
4230         * (main): added call to port->initPaths and doPrintSearchDirs,
4231         * src/avr/main.c,
4232         * src/ds390/main.c,
4233         * src/hc08/main.c,
4234         * src/izt/i186.c,
4235         * src/izt/tlcs900h.c,
4236         * src/mcs51/main.c,
4237         * src/pic/main.c,
4238         * src/pic16/main.c: modified port structures to reflect addition of
4239         initPaths hook,
4240
4241         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4242         * (pic16_dump_section): for registers in same address reserve memory once,
4243         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4244         to no_banksel,
4245         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4246         result is greater in size than right or left,
4247         * (pic16_genUMult8X8_8): there are some cases where the result can
4248         be 16 bits size, so handle these,
4249         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4250         * (pic16_outBitC): modified to emit pcodes,
4251         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4252         or not,
4253         * (genDivOneByte): implemented algorithm to divide 8-bits,
4254         * (genCmp): uncommented goto, but issues still exist,
4255         * (genAnd): fixed a bug with variables >8bits,
4256         * (genPackBits): optimization added that uses BCF/BSF to change a
4257         single bit,
4258         * (genAssign): fixed bug when assigning floating point literals,
4259         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4260         __sdcc_gsinit_startup label,
4261         * src/pic16/main.c (_pic16_init): removed search directory
4262         initialisations,
4263         * (_pic16_initPaths): NEW, used to initialise search directories,
4264         * (_hasNativeMulFor): support functions for all except char/int
4265         multiplication, and char division,
4266         * (PIC16_port struct): modified entry for native mul support,
4267         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4268         no_banksel option,
4269         * (buildCallTree): call to register_usage is ifdef'ed out,
4270
4271 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4272
4273         * device/include/string.h: applied Stas Sergeev's patch to make this
4274         header file compatible with the preprocessor -Wundef option
4275         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4276         failure (fixes bug #941458)
4277
4278 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4281         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4282         that the variable, not the function, should be static
4283         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4284         to be consistent with non-literal case
4285
4286 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4287
4288         * src/SDCCast.c (isConformingBody): fixed bug #949967
4289         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4290         convilong): fixed bug #952086
4291
4292 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCCmem.c (allocVariables): fixed bug #955321
4295
4296 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/hc08/main.c (_hc08_genAssemblerEnd),
4299         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4300         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4301         completely eliminated the use of a temporary file
4302         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4303         when more than one file linked
4304         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4305
4306 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4307
4308         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4309         which fixes bug #543481
4310         * support/regression/tests/bug-751703.c: fixed comments left from a
4311         cut and paste error
4312         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4313         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4314         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4315         scopes
4316         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4317         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4318         are now changed to underscores in moduleName
4319
4320 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4321
4322         * as/mcs51/lkmem.c: better fix for bug #954173
4323
4324 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4325         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4326
4327         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4328         * device/include/c8051f000.h,
4329         * device/include/c8051f120.h,
4330         * device/include/c8051f300.h,
4331         * device/include/c8051f310.h,
4332         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4333         PWM16) and detab'ed
4334
4335 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4336
4337         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4338         and mailing lists, doc'ed --no-peep-comments, removed reference
4339         to knoppix (newest version has no LyX/LaTeX), other minor changes
4340         * src/SDCCglue.c (glue): save 2 bytes stack space with
4341         option --main-return. The ljmp could probably be avoided too
4342
4343 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4344
4345         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4346
4347 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4348
4349         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4350         * src/SDCCopt.c (isLocalWithoutDef),
4351         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4352         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4353         (credit to Maarten Brock for patch #949363, on which this is based)
4354         * support/regression/tests/bug-751703.c: some test cases of extern used
4355         within inner scopes.
4356
4357 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4358
4359         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4360         SPEC_STRUCT
4361         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4362         struct definitions
4363         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4364         dwWriteLabel): fix to create valid debugger symbols even when
4365         the module name has non-alphanumeric symbols in it
4366         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4367         when a variable's allocation has been optimized away
4368
4369
4370 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4371
4372         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4373         * src/hc08/main.c,
4374         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4375         * src/mcs51/main.c,
4376         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4377         * src/ds390/main.c,
4378         * src/z80/gen.c (z80_emitDebuggerSymbol),
4379         * src/z80/main.c,
4380         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4381         * src/pic/main.c,
4382         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4383         * src/pic16/main.c,
4384         * src/avr/gen.c (avr_emitDebuggerSymbol),
4385         * src/avr/main.c,
4386         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4387         * src/xa51/main.c,
4388         * src/SDCCdebug.c (emitDebuggerSymbol),
4389         * src/SDCCdebug.h,
4390         * src/port.h: added a debugger struct to the port struct. Added a
4391         callback for defining debugger symbols
4392
4393         * src/SDCCast.c (createLabel),
4394         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4395         with isitmp = 1
4396         * src/SDCCicode.h,
4397         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4398         iCode back to the ast for the function
4399
4400         * src/hc08/ralloc.c (hc08_assignRegisters),
4401         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4402         unneeded fields from the regs struct.
4403         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4404         pushReg() & pullReg() functions instead of emitcode()
4405
4406         * src/hc08/gen.c (genLabel, genhc08Code),
4407         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4408
4409         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4410         debugger hooks
4411
4412         * src/hc08/gen.c (genEndFunction, genhc08Code),
4413         * src/hc08/gen.h,
4414         * src/mcs51/gen.c (genEndFunction, gen51Code),
4415         * src/mcs51/gen.h,
4416         * src/ds390/gen.c (genEndFunction, gen390Code),
4417         * src/ds390/gen.h,
4418         * src/z80/gen.c (genEndFunction, genZ80Code),
4419         * src/z80/gen.h,
4420         * src/z80/z80.h,
4421         * src/pic/gen.c (genEndFunction, genpic14Code),
4422         * src/pic/gen.h,
4423         * src/pic16/gen.c (genEndFunction, genpic16Code),
4424         * src/pic16/gen.h,
4425         * src/avr/gen.c (genEndFunction, genAVRCode),
4426         * src/avr/gen.h,
4427         * src/xa51/gen.c (genEndFunction, genXA51Code),
4428         * src/xa51/gen.h,
4429         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4430         specific code to cdbFile.c and out of the backend code generators
4431
4432         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4433         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4434         starting address is now 0
4435
4436         * as/hc08/asm.h,
4437         * as/hc08/m08pst.c,
4438         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4439         assembler directive for DWARF support
4440         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4441
4442         * src/src.dsp,
4443         * src/Makefile.in,
4444         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4445
4446 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4447
4448         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4449         and inappropriate peephole optimization in jump tables
4450
4451 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4452
4453         * as/hc08/m08pst.c,
4454         * src/SDCCglue.c: sdccopt works for the hc08 port now
4455
4456 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4457
4458         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4459
4460 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4461
4462         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4463
4464 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4465
4466         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4467         rules
4468         * src/SDCCmain.c,
4469         * src/SDCCglobl.h,
4470         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4471         comments from the peephole optimizer replacement rules
4472         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4473         symbols
4474         * src/SDCCcse.c (updateSpillLocation),
4475         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4476         equivalents
4477         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4478         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4479         objects far pointers
4480
4481 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4482
4483         * src/SDCCsymt.h: a missing part of my last change
4484         * src/pic/ralloc.c (regTypeNum),
4485         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4486
4487 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * src/SDCCicode.h,
4490         * src/SDCCicode.c (aggrToPtrDclType),
4491         * src/SDCCptropt.h,
4492         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4493         ptrPseudoSymConvert),
4494         * src/pic/ralloc.c (regTypeNum),
4495         * src/pic16/ralloc.c (regTypeNum),
4496         * src/hc08/ralloc.c (regTypeNum),
4497         * src/ds390/ralloc.c (regTypeNum),
4498         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4499         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4500
4501 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4502
4503         * link/z80/lkmain.c (afile),
4504         * as/hc08/lkmain.c (afile),
4505         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4506         prevent a pointer problem when a filename has no directory and
4507         no extension specified.
4508
4509 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4510
4511         * link/z80/lkmain.c (afile): allow periods in directory names
4512         * link/z80/lkmain.c (afile),
4513         * as/mcs51/lkmain.c (afile),
4514         * as/hc08/lkmain.c (afile): allow linker script file to have an
4515         extension other than ".lnk"
4516         * link/z80/lklex.c (getfid),
4517         * link/z80/lkmain.c (parse),
4518         * as/mcs51/lklex.c (getfid),
4519         * as/mcs51/lkmain.c (parse),
4520         * as/hc08/lklex.c (getfid),
4521         * as/hc08/lkmain.c (parse): Support comments in the linker script
4522         file on lines by themselves and after filenames
4523
4524 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4525
4526         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4527
4528 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4529
4530         * src/z80/peeph-z80.def: removed some peephole rules that don't
4531         work with multibyte arithmetic (fixed bug #937126)
4532         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4533         to registers and not global variables
4534         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4535         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4536         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4537         checking for assignments not internally generated (fixed bug #931895)
4538         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4539         structure member (fixed bug #930072)
4540
4541 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4542
4543         * src/SDCCmain.c (linkEdit),
4544         * src/hc08/main.c (_hc08_parseOptions),
4545         * as/hc08/Makefile.in,
4546         * as/hc08/aslink.h,
4547         * as/hc08/asm.h,
4548         * as/hc08/m08pst.c,
4549         * as/hc08/lkrloc.c (relr, rele),
4550         * as/hc08/lkarea.c (lnkarea)
4551         * as/hc08/lkmain.c (afile, parse),
4552         * as/hc08/lkelf.c: support for ELF output
4553         * as/hc08/lks19.c (s19),
4554         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4555
4556 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4557
4558         * as/mcs51/lkihx.c: Fixed bug #899105.
4559
4560 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4561
4562         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4563         .dsp files from Unix to DOS.
4564
4565 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4566
4567         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4568         function pointers; we have been compliant for several months now.
4569         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4570         change that was accidently commented out
4571         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4572         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4573         bug #922319
4574
4575 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4576
4577         * src/hc08/gen.c: output of all of the internal debugging information
4578         is now controlled by the D() macro; it is disabled by default
4579
4580 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4583         harder to keep the same registers during a CAST iCode
4584         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4585         long via int can be done in a single cast, if the signedness is
4586         correct.
4587         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4588         putchar() in tinibios.c in ds390's library
4589
4590 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4591
4592         * src/SDCCast.c (decorateType): fixed bug #898889,
4593         cast result of a literal complement too
4594         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4595         fixed check for bitfields
4596
4597 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4598
4599         * src/SDCCicode.c (geniCodeLogic): made it static,
4600         (geniCodeLogicAndOr): added in order to fix bug #905492,
4601         (ast2iCode): fixed bug #905492
4602         * support/regression/tests/bug-905492.c: added
4603         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4604         (processParms): fixed bug #927659: don't copy parms, this will clear
4605         decorated flag
4606         * support/regression/tests/bug-927659.c: added
4607
4608 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4609
4610         * src/SDCCast.c (addCast): don't cast float to char
4611         * device/lib/libsdcc.lib: added _memmove
4612
4613 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4614
4615         * device/lib/large/Makefile: fixed parallel execution by
4616         replacing `make` by `$(MAKE)`
4617
4618 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4619
4620         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4621         offsets (fixes bug #923936)
4622
4623 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4624
4625         * device/lib/small/Makefile: fixed parallel execution by
4626         replacing `make` by `$(MAKE)`
4627
4628 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4629
4630         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4631
4632 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4633
4634         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4635         * src/regression/Makefile: Regression test was not running.
4636
4637 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4638
4639         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4640         complement if possible
4641         * src/SDCCval.c (valComplement),
4642         * src/SDCCicode.c (operandOperation): fixed complement of literal
4643         * support/regression/tests/onebyte.c (testComplement): added
4644
4645 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4646
4647         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4648         return an optimized tree; actually replace actParm with the new tree
4649         * src/SDCCast.h: added some parantheses to remove side effects
4650         * support/regression/tests/bug-920866.c
4651
4652 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4653         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4654         Bit operands were not being handled properly in the pic14 port.
4655         (now src/regression/add.c passes again).
4656
4657 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4658
4659         * src/SDCC.y (labeled_statement): case and default no longer require
4660         a following statement (RFE #893037)
4661
4662 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4663
4664         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4665         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4666         disabled (fixes bug #916294)
4667         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4668         "mov a,acc"; patch provided by Lenny Story
4669         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4670
4671 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4672
4673         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4674         functions
4675         * src/ds390/gen.c (genFunction, genEndFunction),
4676         * src/ds390/ralloc.c (ds390_assignRegisters),
4677         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4678         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4679         pushed if there are parameters passed on the stack. Also, a cleaner
4680         way to decide if r0/r1 should be pushed/popped. (Together they fix
4681         bug #918693)
4682
4683 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4684
4685         * doc/sdccman.lyx,
4686         * device/lib/mcs51/crtpagesfr.asm,
4687         * device/lib/mcs51/crtxinit.asm,
4688         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4689         to avoid confusion with Si Lab's SFRPAGE register.
4690
4691 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4692
4693         * src/SDCCglue.c (emitMaps): allow public sfr variables
4694         * src/SDCCglue.c (initialComments): include compiler build date
4695         with compiler version and put the timestamp of the generated
4696         assembly file on a serperate line to be less confusing.
4697         * src/port.h: added genInitStartup hook
4698         * src/avr/main.c,
4699         * src/ds390/main.c,
4700         * src/hc08/main.c,
4701         * src/pic/main.c,
4702         * src/pic16/main.c,
4703         * src/xa51/main.c,
4704         * src/z80/main.c: genInitStartup initialize as NULL (default to
4705         historical behaviour)
4706         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4707         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4708         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4709         library instead of hard coding it into the compiler.
4710         * support/regression/ports/mcs51-stack-auto/spec.mk,
4711         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4712         * device/lib/mcs51/Makefile,
4713         * device/lib/small/Makefile,
4714         * device/lib/large/Makefile,
4715         * device/lib/mcs51/crtpagesfr.asm,
4716         * device/lib/mcs51/crtstart.asm,
4717         * device/lib/mcs51/crtxclear.asm,
4718         * device/lib/mcs51/crtxinit.asm,
4719         * device/lib/mcs51/crtclear.asm,
4720         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4721         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4722         and into user configurable files.
4723         * device/lib/clean.mk: clean mcs51 directory too
4724         * support/regression/tests/longlit.c: added static to T1 declaration
4725         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4726         accesses in the initialization code
4727
4728 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4729
4730         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4731         OSCTRIMVAL as noted in bug #916008
4732
4733 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4736         in loops with multiple exits (reported as incorrect registers
4737         used by Martin Helmling in Sdcc-user list)
4738
4739 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4740
4741         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4742         made ds390 register extensions look less like error messages
4743
4744 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4745
4746         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4747         reported by Adam Wozniak in Sdcc-user list
4748
4749 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4750
4751         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4752         arithmetic optimizations, added debug output
4753
4754 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4755
4756         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4757         * sdcc.spec: updated and split sdcc into 3 rpms
4758         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4759         needed for literals of LEFT_OP and '+'
4760         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4761         introduced RESULT_TYPE_NOPROM
4762         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4763         left shift
4764         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4765         limited promotion to int only for '*'
4766         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4767
4768 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4769
4770         * src/pic16/gen.c (genSkip),
4771         (genc16bit2lit), (gencjneshort): commented out
4772         (is_LitOp): new helper function, checks operand type
4773         (genCmpEq): rewritten
4774
4775 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4776
4777         * support/regression/tests/bug-908454.c: added
4778
4779 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4780
4781         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4782         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4783         (geniCodeCast): cosmetic, don't preserve bit storage class
4784         (geniCodeLeftShift): added promotion
4785         (geniCodeLogic): fixed regression
4786         * src/SDCCsymt.c (computeTypeOr): accept bits too
4787         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4788
4789 2004-03-07  Borut Razem <borut.razem AT siol.net>
4790
4791         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4792
4793 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4794
4795         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4796         version of pic16_genPackRegisters which does not check if ic is a
4797         CAST operator,
4798         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4799         function cause string1.c regression test fails
4800
4801 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4802
4803         * sim/ucsim/configure.in,
4804         * sim/ucsim/configure,
4805         * sim/ucsim/doc/Makefile.in: use docdir
4806         * src/SDCC.y: fixed sbit atrributes
4807         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4808         * src/SDCCast.c (decorateType): |^& need special promotion handling
4809         * src/SDCCast.h,
4810         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4811         * src/SDCCsymt.h (computeType),
4812         * src/SDCCicode.c: computeType() needs op
4813         * src/SDCCsymt.c (checkTypeSanity),
4814         * doc/sddman.lyx: "plain" bitfields are unsigned
4815         * src/SDCCsymt.c (computeTypeOr): added
4816         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4817         |^& ops
4818         * src/SDCCval.c (val*): computeType() needs op
4819         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4820         * support/regression/tests/onebyte.c: added tests for |^&
4821
4822 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4823
4824         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4825         for writing icode into asm output.
4826
4827 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4828
4829         * src/pic16/device.c: added some debug lines enabled
4830         with macro DEBUG_CHECK,
4831         * src/pic16/genarith.c: more debug in genPlus,
4832         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4833         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4834         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4835         * (aopForSym): onStack symbols are re-placed in data memspace,
4836         and onStack flag is cleared,
4837         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4838         copy temporary pcodeop,
4839         * (genPcall): added warning for not updating PCLATU,
4840         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4841         always true for pic16 port,
4842         * (genMultOneWord): NEW, supports integer multiplication,
4843         * (genMult): modified to call genMultOneWord,
4844         * (ifxForOp): added warning when return NULL,
4845         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4846         flag is set before call to operandFromSymbol for implicit
4847         added structures,
4848         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4849         options.intlong_rent are set by default,
4850         * (_hasNativeMulFor): modified to allow port generation of integer
4851         multiplication,
4852         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4853         set regtype to REG_SFR for all registers, restricting seting the
4854         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4855
4856 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4857
4858         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4859         more than 500 times in the regression tests
4860
4861 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4862
4863         * support/Util/SDCCerr.h,
4864         * support/Util/SDCCerr.c,
4865         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4866         enumerator_list),
4867         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4868         for symbol conflicts.
4869         * support/valdiags/tests/enum.c,
4870         * support/valdiags/tests/tentdecl.c,
4871         * support/valdiags/tests/struct.c: expect possible error messages
4872         referring to original symbol definitions.
4873         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4874         * src/SDCCsymt.h,
4875         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4876
4877 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4878
4879         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4880
4881 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4882
4883         * src/pic16/ralloc.c (newReg): fixed bug #908929
4884
4885 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4886
4887         * src/ds390/gen.c: added missing #include "main.h"
4888
4889 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4890
4891         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4892         checking if symbol is already in set,
4893         * src/pic16/device.h: prototype for checkAddSym,
4894         * src/pic16/gen.c: (_G): added entry interruptvector,
4895         * (assignResultValue): removed some commented out lines,
4896         * (genFunction): check for ISR via sym->type, absolute section for
4897         interrupt code is created via a new pBlock, the goto instruction is
4898         placed now correctly at the interrupt vector position, changed all
4899         references from ivec to _G.interruptvector,
4900         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4901         is the interrupt is a high priority one, same for return from ISR,
4902         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4903         externs to calls of checkAddSym,
4904         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4905         pic16_pcode_verbose flag is set,
4906         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4907         * src/pic16/pcoderegs.c: message about how many registers are saved
4908         will only be emitted if pic16_pcode_verbose flag is set,
4909
4910 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4911
4912         * src/ds390/ralloc.h,
4913         * src/ds390/ralloc.c (ds390_regWithIdx),
4914         * src/ds390/gen.c (emitcode),
4915         * src/ds390/main.h,
4916         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4917         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4918         ds390operandCompare, getRegsRead, getRegsWritten,
4919         initializeAsmLineNode): customized instruction size calculation for
4920         ds390, started basis for some register optimizations
4921         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4922         corresponding assembly output
4923         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4924         missing push/pop of r0/r1. Optimized push/pops
4925
4926 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4927
4928         * src/mcs51/main.c (instructionSize): fixed ACALL size
4929         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4930
4931 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4932
4933         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4934         the sorting of rlist with NULL elements
4935         * (print_idataType, print_idata): NEW to create idata sections
4936         * src/pic16/device.h: idataSymSet new variable
4937         * src/pic16/gen.c (genFunction): fixed some bugs in string
4938         comparing, improved the absolute section creation for ISRs,
4939         added FSR0L/FSR0H in registers that are saved in an ISR,
4940         * (genInline): fixed the processing of inline snippets,
4941         now they undergo no process by the peephole optimizer
4942         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4943         are placed in idataSymSet,
4944         * (pic16emitStaticSeg): extern symbols are added in externs,
4945         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4946         switching when aboslute variables are placed in access bank memory
4947         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4948         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4949         commented out with #if,
4950         * (pic16_packRegisters): reintroduce the check for CAST because some
4951         symbols are not correctly handled,
4952         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4953         pCodeInstruction instead of pCode,
4954         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4955         pCodeAsmDir definition,
4956         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4957         directive, then the argument directive is emitted without the leading
4958         tab, hack for inline labels which must be in the first column,
4959         * (compareLabel,pic16_findNextInstruction),
4960         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4961         * (insertBankSwitch): modified for the new pCodeAsmDir,
4962
4963 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4964         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4967         instance,
4968         * (pushSide): commented out with #if,
4969         * (assignResultValue): fixed some typos in saving
4970         registers,
4971         * (genPcall): FIXED and sync'ed with genCall,
4972         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4973         * (genNearPointerGet): fixed to handle some more cases,
4974         implementation scheme via table reads,
4975         * (genConstPointerGet): modified to access code memory correct,
4976         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4977         and improved to handle some cases
4978         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4979         instead of "RETLW" for init data
4980         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4981         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4982         variables are placed in access bank memory (<0x80 and >=0xf80),
4983         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4984         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4985         TBLWT_POSTDEC,TBLWT_PREINC
4986         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4987         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4988         directives
4989         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4990         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4991         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4992         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4993
4994 2004-02-29  Borut Razem <borut.razem AT siol.net>
4995
4996         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4997         support/Util/findme.h, support/Util/system.h: enhance binary relative
4998         search for lib and include by using findProgramPath()
4999
5000 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5001
5002         * src/SDCCpeeph.h,
5003         * src/SDCCpeeph.c (pcDistance),
5004         * src/port.h,
5005         * src/mcs51/ralloc.h,
5006         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5007         * src/mcs51/main.h,
5008         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5009         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5010         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5011         size calculation port specific, started basis for some register
5012         optimizations
5013         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5014         missing push/pop of r0/r1. Optimized push/pops
5015         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5016         * device/lib/_modsint.c (_modsint),
5017         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5018         and stack version so regression tests pass
5019
5020 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5021
5022         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5023         * src/SDCCast.c (decorateType): catch another small optimization
5024         with '?' operator
5025         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5026         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5027         modified to finally use computeType() all over SDCC,
5028         see Feature Request #877103
5029         * src/SDCCval.h: cosmetic
5030         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5031         valCompare(); regression tested in muldiv.c
5032         * support/regression/tests/muldiv.c (testMod): mod sign follows
5033         dividend only
5034
5035 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5036
5037         * src/SDCCast.c (decorateType): fixed bug #902362
5038         * doc/INSTALL.txt: fixed install instructions for win32
5039
5040 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5041
5042         * device/include/Makefile.in (install): fixed by replacing spaces
5043         by tabs
5044         * doc/README.txt,
5045         * doc/INSTALL.txt: updated for release
5046         * doc/sdccman.lyx: added warning for --xstack being buggy
5047
5048 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5049
5050         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5051         to eliminate build warnings.
5052         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5053
5054 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5055            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5056
5057         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5058         removed -penable-stack, added comment for stack pragma, added
5059         warning for not initializing the stack/frame registers, removed
5060         comment at interrupts section
5061
5062         Stack is made permanent, there is no ability to disable stack usage.
5063         * src/pic16/device.h,
5064         * src/pic16/device.c: removed all references to USE_STACK macro,
5065         * src/pic16/device.c (pic16_dump_section): when no elements in
5066         rlist, free rlist before return,
5067         * (pic16_dump_int_registers): NEW, internal registers are a new set
5068         of general purpose registers reused by each function,
5069         * (checkAddReg): returns 1 if registers is added to set,
5070         * (pic16_groupRegistersInSection): when a registers is of type
5071         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5072         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5073         SRCASECMP macro is moved here from device.c
5074         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5075         PO_PCLATU, PO_PRODL, PO_PRODH,
5076         * (pic16_pCodeOpType, genMinus,
5077         changed compares to "a" register, with AOP_ACC,
5078         * (pic16_genPlus): fixed some bugs and indented properly,
5079         * (pic16_addSign): changed size to size+offset in the MOVWF
5080         instruction,
5081         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5082         multiply 8-bit operand by literal, result is 8-bit,
5083         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5084         multiply 2 8-bit operand, result is 8-bit,
5085         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5086         genUMult8X*_16,
5087         * src/pic16/gen.c: changed accUse to contain WREG only,
5088         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5089         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5090         true, do not use immediate addressing any more unless sym is a
5091         pointer in codespace,
5092         * (aopForRemat): do not use immediate addressing when symbol not in
5093         codespace and when symbol's address is requested,
5094         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5095         accUse size (= 1),
5096         * (aopGet): added case for AOP_ACC and don't return "accumulator
5097         bug" but WREG instead,
5098         * (popGetTempReg): pushes contents of temporary register in stack,
5099         * (popReleaseTempReg): pops contents of temporary register from
5100         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5101         * (pic16_popGet): separated case AOP_ACC to return register WREG
5102         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5103         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5104         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5105         the use of immediate pointers to certain cases only.
5106
5107         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5108         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5109         * (assignResultValue, genCall, genRet): modified to use the new
5110         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5111         genPcall is still broken,
5112         * (genFunction): added code to create 'A' type pBlocks when
5113         interrupt functions are generated, code not extensively tested yet,
5114         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5115         * (genEndFunction): modified so ISRs pop stored registers from stack,
5116         * (genMultOneByte): cleanup,
5117         * (AccRsh): added flag andmask, to and result with appropriate mask,
5118         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5119         * (genDataPointerGet): fixed and reenabled its use,
5120         * (genNearDataPointerGet): bugs fixed,
5121         * (genDataPointerSet): bugs fixed,
5122         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5123         pic16_DumpSymbol, pic16_DumpOp,
5124         * src/pic16/genutils.h: function prototypes for the above functions,
5125         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5126         pointers,
5127         * (pic16emitRegularMap): many many many improvements, but needs a
5128         major cleanup,
5129         * src/pic16/main.c: enable_stack in pic16_options is removed,
5130         * (_pic16_parseOptions): removed command line options -penable-stack,
5131         * (_process_pragma): emit stack symbol only when stack pragma is
5132         processed,
5133         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5134         redirected to FSR0L/FSR0H pair,
5135         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5136         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5137         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5138         for immediates,
5139         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5140         * (dumpPicOptype): NEW,
5141         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5142         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5143         with movff instruction,
5144         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5145         added pic16_int_regs, some packRegsFor* functions are commented out,
5146         because produce errors,
5147         * src/pic16/NOTES: minor modifications
5148
5149 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5150
5151         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5152         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5153         --pack-iram.
5154         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5155         * as/mcs51/lkaomf51.c: fixed bug #895763
5156
5157 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5158
5159         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5160
5161 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5162
5163         * doc/sdccman.lyx: added details about the HC08 storage classes and
5164         interrupts, fixed the register usage info for z80 & gbz80
5165
5166 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5167
5168         * doc/sdccman.lyx: added more pic16 port documentation
5169         * device/include/pic16/: added header pic18fregs.h
5170
5171 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5172
5173         * doc/sdccman.lyx: added Vangelis' contribution
5174
5175 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5176
5177         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5178         extend to the next CALL or PCALL, not just to the next CALL.
5179
5180 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5181
5182         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5183
5184 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5185
5186         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5187         bug #895752 and a better fix for bug #716790
5188
5189 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5190
5191         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5192
5193 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5194
5195         * doc/sdccman.lyx: minor changes, minor changed
5196
5197 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5198
5199         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5200         which can't handle SDCC_NEWONEBYTEOPS,
5201         (geniCodeMultiply): removed conversion from mult to shift for pic14
5202         and pic16
5203
5204 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5205
5206         * src/hc08/gen.h,
5207         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5208         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5209         thus fixing bug #895406
5210
5211 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5212
5213         * device/lib/_modsint.c,
5214         * device/lib/_modslong.c: sign follows divisor only
5215         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5216         signs or signedness can be ignored
5217         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5218         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5219         added optimization for IFX,
5220         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5221         arguments;
5222         reenabled optimization for IFX, which was removed on 2004-01-11
5223         * src/SDCCast.h: added return type IFX
5224         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5225         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5226         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5227         SDCC_OLDONEBYTEOPS selects the old behaviour
5228         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5229         changed again and commented promotion rule
5230         * src/SDCCval.c (valDiv): promotion no longer necessary
5231         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5232         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5233         rewritten
5234         * support/regression/tests/onebyte.c: added
5235
5236 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5237
5238         * gen.c (genInline): reverted to old code for assemnling inline
5239         code because of bug reported James Chadd
5240
5241 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5242
5243         * ralloc.h: missing declarations from previous patch,
5244         seems that patch for ralloc.h was never applied, fixed
5245
5246 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5247            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5248
5249         * pcode.c,
5250         * pcode.h,
5251         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5252         indirect addressing. Marked FSR0 as deprecated
5253         * gen.c (pointerCode): commented out, not needed now
5254         (pic16_popGet2p): new MOVFF helper function
5255         (genGenPointerGet),
5256         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5257         (shiftRLong): removed duplicate debugging info
5258
5259 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * src/ds390/gen.c (genNearPointerGet),
5262         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5263         optimization with bits, but not bitfields.
5264         * src/ds390/ralloc.c (packRegisters),
5265         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5266
5267 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5268
5269         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5270
5271 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5272
5273         * src/SDCCsymt.h,
5274         * src/SDCCicode.c (operandFromSymbol),
5275         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5276         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5277         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5278         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5279         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5280         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5281         bug #892038
5282         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5283         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5284         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5285         * src/SDCCsymt.c (newSymbol),
5286         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5287         enumerator_list),
5288         * src/SDCCval.h,
5289         * src/SDCCval.c (newiList): fixed bug #885705
5290
5291 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5292
5293         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5294         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5295
5296 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5297
5298         * device/include/c8051f120.h,
5299         * device/include/c8051f300.h,
5300         * device/include/c8051f310.h: added/updated header files for Silicon
5301         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5302         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5303         in new section Submitting patches
5304
5305 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5306
5307         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5308         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5309         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5310         genGenPointerSet),
5311         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5312         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5313         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5314         genGenPointerSet),
5315         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5316         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5317         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5318         genGenPointerSet),
5319         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5320         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5321         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5322         genGenPointerSet): fixed bug #892400
5323         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5324         to eliminate build warnings.
5325         * src/SDCCast.c (processParms),
5326         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5327         fixed bug 751859
5328         * support/valdiag/valdiag.py: added GCC to the list of defines active
5329         when compiling with gcc
5330
5331 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5332
5333         * support/Util/SDCCerr.h,
5334         * support/Util/SDCCerr.c,
5335         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5336         with an incomplete type (fixed bug #883734)
5337         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5338
5339 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5340
5341         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5342
5343 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * src/SDCCast.c (decorateType),
5346         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5347         function pointer implementation
5348         * support/regression/tests/funptrs.c: added tests to verify both forms
5349         of function pointers work correctly. Added tests to verify parameters
5350         are passed in the correct order.
5351
5352 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5353
5354         * device.c (regCompare): registers are sorted by ascending
5355         address and increasing size,
5356         * main.c (_pic16_finaliseOptions): removed the declaration
5357         of compiler macro MCU. Now a macro of the format pic18fxxxx
5358         will be defined from the command line
5359
5360 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5361             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5362
5363         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5364         PCOP_RLCF was overwritten!
5365         * gen.c (genSkip): commented out calls to pic16_emitcode,
5366         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5367         * (genlshTwo),
5368         * (genRRC): added debugging info,
5369         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5370         overwritten while shifting,
5371         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5372         overwritten while shifting,
5373         * (AccLsh),
5374         * (AccRsh),
5375         * (shiftLLeftOrResult),
5376         * (shiftRLeftOrResult),
5377         * (shiftRLong),
5378         * (shiftLLong): Implemented with pic16_emitpcode
5379         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5380         * (genLeftShift): Fixed bug, operand for shift by variable always
5381         was "and"ed with 0x0f,
5382         * (genLeftShiftLiteral),
5383         * (genrshTwo),
5384         * (genRightShiftLiteral): added debugging info,
5385         * (genrshFour): added comment,
5386         * (genRightShift): determined signedness from operand "left"
5387         instead of "result"
5388
5389 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5390
5391         * src/SDCCicode.c (geniCodeParms),
5392         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5393         function pointers, fixed function pointer bugs #861242 and #861896
5394
5395 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5396
5397         * device/include/c8051f000.h,
5398         * device/include/c8051f120.h,
5399         * device/include/c8051f300.h: added header files for Silicon
5400         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5401
5402 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5403
5404         * src/SDCCast.c (processParams): added new type flow and restructured
5405         (gatherAutoInit): added new type flow
5406         (addCast): cosmetic changes
5407         (getLeftResultType): added new type flow for array indices, patch
5408         provided by Stas, see FR #877103
5409         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5410         array index patch by Stas
5411         * src/SDCCast.h: added prototype getResultTypeFromType()
5412         * src/SDCCval.h,
5413         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5414         * src/pic/glue.c (pic14emitStaticSeg),
5415         * src/pic16/glue.c (pic16emitStaticSeg),
5416         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5417         for initialization of symbols
5418         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5419         * support/Util/SDCCerr.h:
5420         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5421         * .version: bumped version number to 2.3.8
5422         * device/include/Makefile.in (install),
5423         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5424         avoid warnings
5425
5426 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5427
5428         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5429         Slade Rich fixed an optimization bug
5430         * src/pic/pcodepeep.c,
5431         * src/pic/pcoderegs.c
5432         * doc/Makefile (install): added test for directory
5433
5434 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5435
5436         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5437         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5438         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5439         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5440         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5441         * as/mcs51/asexpr.c (term),
5442         * as/hc08/asexpr.c (term): fixed bug #887146
5443
5444 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         * src/z80/gen.c (genMult): handle single byte result product
5447         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5448         DUMMY_READ_VOLATILE (fixed bug #886367)
5449
5450 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5451
5452         * support/regression/tests/libmullong.c: fixed logic, on little endian
5453         hosts we ended without a mullong_wrapper()
5454
5455 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5456
5457         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5458         virus/worm forged address usage.
5459
5460 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5461
5462         Fixed promotion, it should be done on AST level:
5463         * src/SDCCast.c (addCast): added promotion to int
5464         (decorateType): updated call to upCast()
5465         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5466         usualUnaryConversions()
5467
5468 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5469
5470         * support/regression/tests/literalop.c (mulWrapper): Added a
5471         wrapper to remove integer overflow warnings.
5472
5473         * support/regression/tests/float_trans.c: Made work on host.
5474
5475         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5476         location of sz80.
5477
5478         * support/regression/generate-cases.py (main): Changed from inline
5479         to a main method.
5480
5481         * doc/Makefile (install): Changed to depth first to get rid of
5482         missing directory install warning.
5483
5484         * as/Makefile (install-doc): Made work on Mac.
5485
5486 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5487
5488         * src/SDCCast.c: added an additional type flow in decorateType() of
5489         opposite direction, see feature request #860006; it's enabled at runtime
5490         by setting the environment variable SDCC_NEWTYPEFLOW
5491         * src/SDCCast.h: changed prototype of decorateType()
5492         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5493         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5494         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5495         see feature request #877103
5496         * src/SDCCval.c: updated call of decorateType()
5497         (valBitwise): fixed bug #882876
5498         (valMinus): added promotion
5499         (valLogicAndOr): result is unsigned
5500         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5501         * src/SDCCsymt.c (computeType),
5502         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5503         must not cause an unsigned operation
5504         * src/pic/glue (pic14emitRegularMap),
5505         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5506
5507 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5508
5509         * src/pic/pcode.c (PCodeID): commented out left over debug code
5510
5511 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5512
5513         * support/valdiag/tests/overflow.c: added shift tests
5514         * src/pic/device.c,
5515         * src/pic/gen.c,
5516         * src/pic/gen.h,
5517         * src/pic/glue.c,
5518         * src/pic/main.c,
5519         * src/pic/pcode.c,
5520         * src/pic/pcode.h,
5521         * src/pic/pcodepeep.c,
5522         * src/pic/pcoderegs.c,
5523         * src/pic/ralloc.c,
5524         * src/pic/ralloc.h: applied patch from Slade Rich;
5525         added support for multiple code pages and multiple RAM banks on the
5526         PIC 14 port. The ASM files now no longer simply assume all the
5527         code / RAM are in the same page / bank. This means the linker can
5528         safely allocate code/RAM of separate ASM files to different pages/banks.
5529         * doc/sdccman.lyx: added Slade's tips
5530         * src/mcs51/peeph.def: fixed bug #880768
5531
5532 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5533
5534         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5535         * src/SDCCast.c (decorateType): fixed bug #880197
5536
5537 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5538
5539         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5540         getopt.h.
5541
5542         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5543         strtof is not part of C89 and isn't included with Mac OS X.
5544
5545 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5546
5547         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5548         shiftL2Left2Result): fixed bug #879326
5549         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5550         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5551         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5552         address fetch for clr instruction
5553         * device/lib/hc08/_mulint.c: created optimized assembly version
5554         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5555
5556 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5557
5558         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5559         proposed in FR #877103
5560
5561 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5562
5563         * src/SDCCval.c (cheapestVal): added missing checks
5564         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5565         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5566
5567 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5568
5569         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5570         equal operands
5571
5572 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5573
5574         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5575         loaded with the linker search paths (-L arguments) and the libraries
5576         to be linked with the current source (-l arguments). Changes
5577         currently will affect only the pic16 port.
5578         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5579         include path the port specific paths and port specific libraries,
5580         * gplink command now contains the $3 argument,
5581         * src/pic16/device.h,
5582         * src/pic16/device.c,: structure PIC_device is made public and
5583         renamed to PIC16_device, the same for variable Pics which is renamed
5584         to Pics16. Updated all references to them.
5585         * src/pic16/glue.c (pic16glue): corrected bug with code
5586         initialization which bypassed the variable initializations block.
5587
5588         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5589         COMPILE_FLAGS and added the --nostdinc option
5590
5591 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5592
5593         * device/include/mc68hc908jb8.h: Register defs for another member
5594         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5595
5596 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5597
5598         Documenting changes from previous commits.
5599         * configure.in (version 1.56),
5600         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5601         when generating output files to configure the pic16 library,
5602         but now I've commented it out, since gputils aren't installed in the
5603         SF compile farm, so library won't compile
5604
5605         * device/lib/Makefile.in (version 1.56): initially I've added in
5606         target 'all' the prerequestive 'model-pic16' so it compiled the
5607         pic16 library, but now I've commented it out for the same reasons
5608         above,
5609         * added targets 'model-pic16' and 'objects-pic16' to compile the
5610         library
5611         * added target 'port-specific-objects-pic16' to handle the
5612         generated libraries and copy them into the build/ directory
5613         * added target 'clean-intermediate-pic16' to clean intermediate
5614         files into pic16 directory
5615         * in target 'installdirs' added line to create directory pic16 in
5616         the installation path
5617
5618         * device/include/Makefile.in (version 1.11): in target 'install'
5619         added lines to copy all header files to installation path,
5620         * in target 'installdirs' added line create directory for pic16
5621         headers in the installation path
5622
5623 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5624
5625         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5626          a function call
5627
5628 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5629
5630         * configure,
5631         * device/lib/configure.in,
5632         * device/lib/configure: fixed for autoconf 2.57
5633
5634 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5635
5636         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5637         option so that it actually works. Made it specific to the z80, since
5638         the gbz80 doesn't have these kinds of I/O ports.
5639
5640 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5641
5642         * device/include/z180.h,
5643         * device/lib/_memcpy.c,
5644         * device/lib/_memmove.c,
5645         * device/lib/_mulint.c,
5646         * device/lib/ser_ir.c,
5647         * device/lib/ser_ir_cts_rts.c,
5648         * device/lib/_strcmp.c,
5649         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5650         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5651         portmode; added deprecation warning for bank= and protmode= forms.
5652         Also, guard against buffer overflow.
5653         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5654
5655 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5656
5657         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5658         changed interrupt vector table generation to only emit declared vectors.
5659         * device/include/Makefile.in: added missing backslash
5660         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5661
5662 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5663
5664         Mainly changes to support compilation of the device libraries
5665         * src/pic16/device.c: stack is allocated via symbol and not
5666         via literal number. The symbol is placed in the corresponding
5667         position of the data ram
5668         * (pic16_dump_section): relocatable and absolute uninitialized
5669         data are now emitted in sorted order to reduce section naming,
5670         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5671         weren't marked as being in the access bank,
5672
5673 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5674
5675         Added portion of GNU PIC Library under the directory
5676         device/include/pic16 and device/lib/pic16. These files
5677         contain the declarations of SFRs for the PIC18Fxx2 devices.
5678         The directory is initialized via configure from toplevel.
5679
5680 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5681
5682         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5683         the spilllocations to be compared correctly
5684
5685 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5686
5687         * src/SDCCast.c (decorateType): fixed bug introduced today
5688
5689 2004-01-12  Borut Razem <borut.razem AT siol.net>
5690
5691         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5692         doc/sdccman.lyx: upper case pragmas are deprecated
5693
5694 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5695
5696         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5697         in simpler and even better code
5698
5699 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5700
5701         * src/SDCCicode.c (operandOperation): fixed bug #874819
5702         * src/SDCCast.c (decorateType): fixed
5703         char foo (unsigned long ul) { return ul > 0; }
5704
5705 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5706
5707         * doc/sdccman.lyx: Moved and added some sections, small changes
5708         all over. Telling LaTeX to be less strict with word spacing
5709         to better keep the right margin. Changed some notes about
5710         maintainance of the ports in section 3.2.1 - is it OK like this?
5711
5712 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5713
5714         SDCC source changes:
5715         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5716         convilong): modified to inform the pic16 port that builtin functions
5717         are external
5718
5719         PIC16 PORT specific changes:
5720         * src/pic16/device.c pic16_dump_equates() added,
5721         processor registers declared internally by the port are emitted in
5722         the translation as equates,
5723         * src/pic16/gen.c: inline code is passed unprocessed to the
5724         translation,
5725         * (pic16_popGetLit2): fnuction modified to take second operand as
5726         pCodeOp pointer and not as literal,
5727         * (popRegFromIdx): prefixed with pic16_,
5728         * (pic16_popCombine2): modified to receive already allocated pCode
5729         operands,
5730         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5731         * (genFunction): initializes local stack frame and pushes on stack
5732         all the registers used by this function,
5733         * (genEndFunction): restores all registers from stack and restores
5734         stack frame,
5735         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5736         improvements,
5737         * (pic16glue): changed the program startup sequence,
5738         * added new dbName code 'A' for functions placed in absolute section
5739         * src/pic16/main.c: added function attribute _naked,
5740         * added pragma 'code' to place a fnuction at an absolute address,
5741         * added command line arguments --debug-ralloc and --pcode-verbose,
5742         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5743         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5744         * (pic16_newpCodeOpLit2): modified to take the second operand as
5745         pCodeOp pointer,
5746         * (pic16_printpBlock): modified to emit each function in a separate
5747         section,
5748         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5749         UPPER for immediate operands,
5750         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5751         instruction,
5752         * src/pic16/peeph.def: all peepholes with movff are commented out,
5753         because there is a problem in the pcode peep optimizer,
5754         * src/pic16/ralloc.c: the register allocator can now reuse local
5755         function symbols for another function. This saves register usage.
5756         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5757
5758         Added file src/pic16/NOTES with information about program writing on
5759         the current port version.
5760
5761 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5762
5763         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5764         and peephole 252 (array access)
5765
5766 2004-01-09  Borut Razem <borut.razem AT siol.net>
5767
5768         * src/SDCCmain.c : fixed #872250: -l command line defined library
5769           files are scanned before standard library files
5770
5771 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5772
5773         * src/SDCCast.c (decorateType): fixed bug #874046
5774
5775 2004-01-09  Borut Razem <borut.razem AT siol.net>
5776
5777         * support/scripts/sdcc.nsi: remove previous installation
5778
5779 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5780
5781         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5782         bytes for last interrupt vector (mcs51)
5783         * sdcc.spec: fixed typo
5784
5785 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5786
5787         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5788         gen51Code): more efficient parameter receive for --model-large
5789         ("bug" #845294)
5790
5791 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5792
5793         * src/ds390/main.c,
5794         * src/z80/main.c: added missed needLinkerScript flags (more than
5795         one port structure defined in these file)
5796         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5797         bug #795325
5798
5799 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5800
5801         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5802         * src/port.h: added flag needLinkerScript in port->linker
5803         structure to inform whether to create a .lnk file or not,
5804         * src/avr/main.c,
5805         * src/ds390/main.c,
5806         * src/hc08/main.c,
5807         * src/mcs51/main.c,
5808         * src/pic/main.c,
5809         * src/pic16/main.c,
5810         * src/xa51/main.c,
5811         * src/z80/main.c: changed appropriately to configure
5812         needLinkerScript flag
5813         * src/pic/gen.c,
5814         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5815         * src/pic/glue.c: added variable udata_section_name to
5816         override default uninitialized data segment definition for
5817         devices only with SHAREBANK memory (reported from Erik Epetrich)
5818         * (pic14emitOverlay): modified to emit a commented overlay segment
5819         directive when no overlay data exist
5820         * (picglue): modified to emit uninitialized data segment
5821         according to udata_section_name
5822         * src/pic/main.c (_pic14_parseOptions): added command line
5823         options --udata-section-name=[name] to override default
5824         udata definition name
5825         * modified _linkCmd and _asmCmd to include compiler passed
5826         arguments via -W option
5827         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5828         object file from '.rel' to '.o' in port->linker structure,
5829         changed size of fptr from 2 to 3 in port structure
5830
5831 2004-01-07  Borut Razem <borut.razem AT siol.net>
5832
5833         * support/scripts/sdcc.nsi: update PATH
5834         * support/scripts/sdcc.ico: craeted
5835
5836 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5837
5838         * device/include/Makefile.in: fix install
5839         * doc/Makefile: fix install
5840
5841 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5842
5843         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5844         in bug #860505
5845         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5846         how the function variable allocation summary is displayed; also
5847         include information about variables allocated to the overlay
5848         segment
5849
5850 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5851
5852         * as/mcs51/lkmain.c: Help about -Y option
5853         * as/mcs51/lkarea.c: Fixed gcc warnings
5854
5855 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5856
5857         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5858         fixed warning
5859         * support/valdiag/tests/overflow.c: added
5860         * src/SDCCast.c (decorateType),
5861         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5862         LEFT_OP (left shift)
5863
5864 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5865
5866         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5867         (default behaviour).
5868
5869 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         A python script to validate compiler diagnostic messages. It can be
5872         used to verify that sdcc complains about bad c source code and
5873         gives a good location of the error.
5874         * support/valdiag/Makefile,
5875         * support/valdiag/valdiag.py,
5876         * support/valdiag/tests/*
5877
5878 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5881         * src/SDCCsymt.c (newEnumType),
5882         * src/SDCCsymt.h
5883         * support/Util/SDCCerr.c,
5884         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5885         enum related bugs.
5886         * support/regression/tests/enum.c: added test for enum values that
5887         require at least 2 bytes of storage.
5888
5889 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5890
5891         * src/common.h: added ifndef/define/endif macros
5892         around the header file.
5893         Bug reported from Jesus Calvino-Fraga
5894
5895 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5896
5897         * sdcc.spec: updated
5898         * device/include/Makefile.in: don't install CVS directories
5899         * device/lib/Makefile.in: added removal of CVS directories after install
5900         * doc/Makefile: fixed install, added local_icons
5901         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5902         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5903         * src/ds390/gen.c (genRightShift): fixed bug #870788
5904         * src/SDCCast.c (decorateType): fixed bug #870781
5905
5906 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5907
5908         PIC16 port related changes:
5909         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5910         added variable stackPos,
5911
5912         * gen.c: genCall, assignResultValue: added support for
5913         pushing/retrieving function parameters to/from stack,
5914         genFunction,genEndFunction: setup stack frame for the
5915         generated function,
5916         genAddrOf: will be changed according to bug 863624
5917
5918         * added files genutils.c and genutils.h which contain gen*
5919         debugged and optimised functions extracted from gen.c
5920
5921         * glue.c: added variable 'externs' which holds extern symbols,
5922         pic16emitRegularMap: is modified to properly handle relocatable
5923          symbols under the new scheme,
5924         pic16createInterruptVect: is modified
5925         pic16printPublics: is modified to emit 'global' assembler directives,
5926         added pic16_printExterns to print extern symbols,
5927         pic16glue: initializes stack/frame pointer in the beginning of
5928         the assembly output. Temporary hack, will be corrected later,
5929         because gplink yet does not support stack and SDCC does not
5930         yet support a type of crt0.o object to create the final binary.
5931
5932         * Removed many lines that contain 8051 legacy code.
5933         * The code is finally placed under a 'code' directive.
5934         * Added port specific options.
5935
5936         * _process_pragma: simplified since now we do not need *special*
5937         include file to define SFR registers. But a separate header
5938         will be needed. This will be developed later.
5939         * _pic16_parseOptions: added, parses port specific options:
5940         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5941         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5942         --preplace-udata-with=
5943
5944         * _pic16_setDefaultOptions: modified to initialize section names,
5945         but hack is temporarly out of order since it needs improvement.
5946         * _pic16_genAssemblerPreamble: configuration words are emitted by
5947         their address instead of their name. This part is incomplete and
5948         supports only the 18Fxx2 devices. Other devices will emit an error
5949         during assembly since they do not contain the same set of config
5950         registers
5951         * _pic16_genIVT: is modified,
5952
5953         * pcode.c: added definitions for some hardware registers that are needed
5954         for stack support
5955         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5956         All PCI entries are updated. Now LFSR is supported.
5957         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5958         * added pic16_newpCodeOpLit2 to support instructions with
5959         two literal arguments
5960         * pic16_pCode2str: corrected code that emits assembler instructions
5961         with two literal operands and those that have an access bit modifier
5962         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5963         this fixes a bug which caused some labels to be lost, when an
5964         assembler directive was added, i.e. banksel,
5965         * pic16_FixRegisterBanking: improved logic that causes the insertion
5966         of bank switching,
5967         * InlineFunction: functions that are called once, are not any more
5968         inlined. This can be a port option in the future,
5969
5970         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5971
5972         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5973         hold the corresponding uninitialized symbols,
5974         * pic16_allocProcessorRegister: registers have explicit marked the
5975         accessBank field,
5976         * pic16_allocInternalRegister: registers are explicit marked as
5977         not used,
5978         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5979         processing list, so bit registers were lost,
5980         *
5981
5982         * ralloc.h: added field 'accessBank' and original symbol operand
5983         in register definition,
5984         * removed the field isMapped from register definition,
5985
5986         ** Several functions have been removed from various sources:
5987         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5988         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5989         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5990         pic16_assignRelocatableRegisters
5991
5992         ** others have been introduced:
5993         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5994         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5995
5996 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5997
5998         * support/scripts/inc2h.pl: changed definition of BIT_AT
5999         to emit 'sbit at' instead of 'bit at'. This was a request.
6000
6001         PIC16 port related preliminary changes:
6002         * gen.c: prefixed function popRegFromString with
6003         pic16_ and all references to it corrected
6004         * pcode.c: all pic16_pc_* hardware registers prefixed
6005         with underscore (_),
6006         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6007         * ralloc.c: newReg(): when register is REG_SFR then
6008         set address to rIdx,
6009         pic16_allocProcessorRegister(): marks register wasUsed=0
6010         pic16_writeUsedRegs(): added a call to assign processor
6011         registers via pic16_assignFixedRegisters
6012
6013 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6014
6015         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6016         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6017         variables in unused register banks.  Also the SSEG is placed
6018         wherever there is enough space for it, and IDATA can be anywhere
6019         in internal RAM.  For now compile using -Wl-Y[stack_size].
6020         The mem file is different for this option as well, since it
6021         makes no sense of talking about DSEG lenght.
6022
6023 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6024
6025         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6026         in certain cases, e.g. when ROM assignment, patch provided
6027         from Albert den Haan.
6028
6029 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6030
6031         Many signedness and type propagation fixes:
6032         * src/SDCCicode.c: made geniCodeCast() static
6033         replaced SPEC_ by IS_ (cosmetic)
6034         (operandOperation): fixed div and mod operation
6035         (usualBinaryConversions): added support for promotion of char
6036         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6037         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6038         (geniCodeAdd): an array index will stay unsigned, even if promoted
6039         from char to int
6040         (geniCodeArray): ditto
6041         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6042         * src/SDCCsymt.c (computeType): added more support for char;
6043         promotion of char is selectable by promoteCharToInt, fixed signedness
6044         for all cases
6045         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6046         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6047         * src/SDCCval (val*): replaced signedness calculation by
6048         computeType()
6049         rearranged if-branches (cosmetic)
6050         (valShift): added warning W_SHIFT_CHANGED
6051         (valCompare): fixed problem with different types
6052         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6053         * support/regression/tests/literalop.c: added many cases
6054         * support/regression/tests/ast_constant_folding.c: changed finally to
6055         'unsigned int'
6056         * .version: new year, new version: 2.3.7
6057         * src/SDCCmain.c (main): applied patch #866468
6058         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6059         provided by Scott Bronson
6060         * doc/sdccman.lyx: updated documentation for sdcdb
6061         updated and added chapter tips
6062
6063 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6064
6065         * src/SDCCsymt.h: missing from yesterday's commits
6066
6067 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6068
6069         * src/SDCC.y (struct_or_union_specifier),
6070         * support/Util/SDCCerr.c,
6071         * support/Util/SDCCerr.h: verify that struct & union tags are used
6072         as declared.
6073
6074 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6075
6076         * src/SDCCglobl.h: missing from yesterday's commits
6077
6078 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6079
6080         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6081         sft_attributes, struct_declaration, parameter_declaration,
6082         type_name, start_block, declaration_list),
6083         * src/SDCC.lex (check_type): support redefinition of typedef names
6084
6085 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6086
6087         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6088         aligned xdata arrays. Erik helped me with the if clause.
6089
6090 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6091
6092         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6093         warning
6094
6095 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6096
6097         * src/SDCCast.h,
6098         * src/SDCCast.c (newAst_),
6099         * src/SDCCicode.h,
6100         * src/SDCCicode.c (ast2iCode, newiCode),
6101         * src/SDCCglobl.h,
6102         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6103         expr, statement, expression_statement, selection_statement,
6104         iteration_statement, expr_opt, jump_statement): foundation for tracking
6105         sequence points
6106         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6107         point code too)
6108
6109 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * support/Util/SDCCerr.c,
6112         * src/SDCCast.h,
6113         * src/SDCCast.c (createCase, createDefault, decorateType),
6114         * src/SDCClabel.c (labelUnreach),
6115         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6116         to error messages.
6117         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6118         (with thanks to Stas Sergeev)
6119         * device/include/time.h,
6120         * device/lib/time.c (CheckTime): suppress unreachable code warning
6121
6122 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6123
6124         * src/SDCCast.c (createIvalCharPtr),
6125         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6126         bug #753752)
6127         * support/regression/tests/nullstring.c: tests for these two bugs
6128
6129 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6130
6131         * support/Util/SDCCerr.h,
6132         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6133         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6134         about storage class and 'at' used inside struct or union
6135         * src/SDCCBBlock.c (iCodeFromeBBlock),
6136         * src/SDCCcse.c (ifxOptimize),
6137         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6138         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6139         printIval, emitStaticSeg, emitOverlay),
6140         * src/SDCClabel.c (deleteIfx),
6141         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6142         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6143         gatherAutoInit, processParms),
6144         * support/Util/SDCCerr.h,
6145         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6146         reporting for post-parse errors.
6147
6148 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6151         implicit casts via union; they don't work on big endian systems
6152         (possible fix for bug #861138)
6153
6154 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6155
6156         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6157         * src/mcs51/main.c: fixed the fix for bug #737001
6158
6159 2003-12-15  Borut Razem <borut.razem AT siol.net>
6160
6161         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6162
6163 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * support/makebin/makebin.c: put output in binary mode
6166
6167 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6168
6169         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6170         xdata and data memory on startup. Set the environment variable
6171         SDCC_NOGENRAMCLEAR to disable this.
6172         * src/mcs51/peephole.def,
6173         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6174         (allows non-interrupt and interrupt code to safely compete for a resource
6175         without the non-interrupt code having to disable interrupts)
6176
6177 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6178
6179         * src/SDCCicode.c (geniCodeAdd),
6180         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6181         with valFromType if type might be a pointer and host is big endian).
6182         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6183         types, not just integer types.
6184         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6185         multiply defined with mismatching "at" address.
6186
6187 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6188
6189         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6190         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6191         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6192         with embedded nulls (fixed bug #753752)
6193
6194 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6195
6196         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6197         Apparently this did not see much testing (endless loop)
6198
6199 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6202
6203 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6204
6205         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6206         gracefully handle NULL memmap pointers
6207
6208 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6209
6210         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6211         instead of deleting the iCode when an operand is volatile
6212         * src/z80/gen.c (genDummyRead),
6213         * src/mcs51/gen.c (genDummyRead),
6214         * src/ds390/gen.c (genDummyRead),
6215         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6216         not just IC_RIGHT
6217         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6218         * src/SDCC.y: fixed bug #850420
6219
6220 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6221
6222         Applied z80 i/o port patch from Peter Townson and fixed some operators
6223         to better handle operands in A register.
6224         * device/include/z180.h
6225         * src/SDCC.y
6226         * src/SDCCglue.c
6227         * src/z80/gen.c
6228         * src/z80/gen.h
6229         * src/z80/main.c
6230         * src/z80/peeph-z80.def
6231         * src/z80/peeph.def
6232         * src/z80/z80.h
6233
6234 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6235
6236         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6237
6238 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6239
6240         * device/lib/hc08/_mullong.c: Removed extra #endif
6241
6242 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6243
6244         * sim/ucsim/hc08.src/inst.cc,
6245         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6246         carries from x to h
6247         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6248         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6249         * device/include/stdarg.h: fixed varargs for hc08
6250         * device/lib/Makefile.in,
6251         * device/lib/hc08/Makefile,
6252         * device/lib/hc08/_mulint.c,
6253         * device/lib/hc08/_mullong.c: fixed some endian problems
6254
6255 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6256
6257         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6258         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6259         * device/lib/_gptrget.c,
6260         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6261
6262 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6263
6264         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6265         * src/SDCCast.c (astErrors): fixed bug #846007
6266         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6267
6268 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * src/SDCCast.c (decorateType): disabled a transformation I added in
6271         revision 1.188 (access to fields of a structure at an absolute address);
6272         it breaks with bitfields, extern declarations, and gcse analysis.
6273         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6274         could be assigned through a pointer, so don't complain.
6275         * src/SDCCast.c (astErrors),
6276         * src/SDCCast.h,
6277         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6278
6279 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6280
6281         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6282         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6283         output of __config directives, since gpasm now supports them
6284         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6285         pre-processor macro, i.e. -DMCU=p18f452
6286         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6287         and modified to handle 'cast' icode similarly to '=' icode
6288         * src/pic16/device.h (typedef struct PIC_device): added field
6289         'extMIface' to indicate that chip has external memory interface
6290         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6291         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6292         18F8720
6293
6294 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         * src/SDCC.y (pointer): fixed bug #846006
6297         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6298         * src/SDCCast.c (decorateType): fixed bug #846009
6299         * src/ds390/peeph.def,
6300         * src/ds390/gen.c (genAnd, genOr),
6301         * src/mcs51/peeph.def,
6302         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6303
6304 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6305
6306         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6307         * src/SDCCdflow.c
6308         * src/SDCCcse.c
6309         * src/SDCCcse.h
6310         * src/SDCCBBlock.h
6311         * src/SDCCBBlock.c
6312
6313 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6314
6315         fixed bug #845089
6316         * src/SDCCbitv.h,
6317         * src/SDCCbitv.c: added function to free a bitvector
6318         * src/SDCClrange.h,
6319         * src/SDCClrange.c: added function to recompute the liveranges
6320         * src/avr/ralloc.c,
6321         * src/ds390/ralloc.c,
6322         * src/hc08/ralloc.c,
6323         * src/mcs51/ralloc.c,
6324         * src/pic/ralloc.c,
6325         * src/pic16/ralloc.c,
6326         * src/xa51/ralloc.c,
6327         * src/z80/ralloc.c: recompute the liveranges after register packing
6328
6329 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6330
6331         * src/SDCCloop.c (newInduction): fixed bug #845630
6332
6333 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6336         inadvertantly left behind from my 2003-11-12 change
6337
6338 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6339
6340         Updated headers I neglected to commit yesterday.
6341         * src/SDCClrange.h,
6342         * src/SDCCicode.h
6343
6344 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6347         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6348         * src/SDCCopt.c (eBBlockFromiCode),
6349         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6350         the creation of the key hash table from the sequencing so it can be used
6351         earlier (for some GCSE bug fixes still pending)
6352
6353 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6354
6355         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6356         * support/regression/tests/addsub.c: testing genPlus shortcut
6357
6358 2003-11-15  Borut Razem <borut.razem AT siol.net>
6359
6360         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6361
6362 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6363
6364         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6365         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6366         ordering is immaterial.
6367         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6368
6369 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6372         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6373         (SIGSEV) of bug #840381
6374         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6375         unlink new file before rename if new and old filenames are the same)
6376
6377 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6378
6379         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6380         uninitialized variables) for the mcs51. Set environment variable
6381         SDCC_GENRAMCLEAR to test.
6382         xdata initialization slightly shorter
6383
6384 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6385
6386         * src/SDCCsymt.h,
6387         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6388         #838241 & 780691 (basicly the same bug)
6389         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6390         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6391
6392 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6393
6394         * src/SDCCmain.c (linkEdit): "fix" #834252
6395
6396 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6397
6398         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6399         * src/SDCCast.h,
6400         * src/SDCC.y: fixed bug #819403
6401
6402 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6405         the reentrant attribute.
6406         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6407         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6408         simulation
6409         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6410         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6411         erroneously reduced to a literal.
6412         * src/hc08/ralloc.c (packRegisters, rematStr),
6413         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6414         some cases
6415
6416 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6417
6418         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6419         * doc/sdccman.lyx: changed from 'article' to 'book'
6420         * doc/Makefile: readded test_suite_spec and cdbfileformat
6421
6422 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6423
6424         * device/include/stdlib.h: include malloc.h to comply with ANSI
6425         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6426
6427 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6428
6429         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6430         * doc/clean.mk: also remove *.out files
6431         * doc/sdccman.lyx: some additions, larger top/bottom margins
6432
6433 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6434
6435         * src/SDCC.y: fixed bug #837365
6436         * support/regression/tests/bitopcse.c
6437         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6438         a symbol (might be valop instead)
6439         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6440         * device/lib/clean.mk: added hc08 to the cleaning list
6441
6442 2003-11-04  Borut Razem <borut.razem AT siol.net>
6443
6444         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6445           made 2003-11-04
6446         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6447           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6448           malloc is declared in standard stdlib.h
6449
6450 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6451
6452         * device/lib/hc08/Makefile: need to clean .rel not .o files
6453         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6454
6455 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6456
6457         * src/port.h,
6458         * src/hc08/main.c,
6459         * src/mcs51/main.c,
6460         * src/ds390/main.c,
6461         * src/z80/main.c,
6462         * src/avr/main.c,
6463         * src/pic/main.c,
6464         * src/pic16/main.c,
6465         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6466         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6467         tests (which uses the port's oclsExpense function)
6468         * src/SDCC.y,
6469         * src/SDCCast.c,
6470         * src/SDCCicode.c,
6471         * src/hc08/gen.c,
6472         * src/ds390/gen.c,
6473         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6474
6475 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6476
6477         * src/SDCCcse.c (ifxOptimize),
6478         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6479         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6480         deleting the IFX iCode.
6481         * src/hc08/ralloc.c: reduced unneeded slocs
6482         * src/hc08/gen.c: fixed bug in asmopToBoolean
6483
6484 2003-11-04  Borut Razem <borut.razem AT siol.net>
6485
6486         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6487           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6488           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6489           transferred to configure
6490
6491 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6492
6493         Use headers defined in the C[++] standards:
6494         * sim/ucsim/gui.src/serio.src/fileio.cc
6495         * sim/ucsim/gui.src/serio.src/frontend.cc
6496         * sim/ucsim/gui.src/serio.src/main.cc
6497         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6498         * support/Util/NewAlloc.c
6499         * as/hc08/lklibr.c
6500         * as/mcs51/lklibr.c
6501         * as/z80/aslist.c
6502         * as/z80/assym.c
6503
6504 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6505
6506         * Added MSVC projects for hc08 assembler and linker:
6507         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6508         /as/hc08/link_hc08.dsp
6509
6510 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6511
6512         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6513
6514 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6515
6516         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6517
6518 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6519
6520         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6521
6522 2003-10-31  Borut Razem <borut.razem AT siol.net>
6523
6524         * support/cpp2/cpplib.h,
6525           support/cpp2/cpplib.c,
6526           support/cpp2/cpplex.c,
6527           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6528           to switch _asm block preprocessing on / off. Default is
6529           #pragma preproc_asm +
6530
6531 2003-10-31  Borut Razem <borut.razem AT siol.net>
6532
6533         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6534           when outputting comment blocks (when executed with -C option) and
6535           _asm (SDCPP specific) blocks
6536
6537 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6538
6539         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6540
6541 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6542
6543         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6544
6545 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6546
6547         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6548         * src/SDCCast.c (decorateType): fixed bug #832664
6549
6550 2003-10-31  Borut Razem <borut.razem AT siol.net>
6551
6552         * support\cpp2\cpplex.c: fixed for SDCPP:
6553           comments(when executed with -C option) and _asm blocks
6554           were included even if they where in skipped #if block.
6555           Applied solution from GCC cpp 3.3.2
6556
6557 2003-10-31  Borut Razem <borut.razem AT siol.net>
6558
6559         * src/SDCC.lex: sdcc now understands both formats:
6560           '# <line_number> <file_name>' and
6561           '#line <line_number> <file_name>'
6562         * support/cpp2/cppmain.c: sdcpp now generates the standard
6563           '# <line_number> <file_name>' instead of former
6564           '#line <line_number> <file_name>'
6565
6566 2003-10-30  Borut Razem <borut.razem AT siol.net>
6567
6568         * support/cpp2/cpphash.h,
6569         * support/cpp2/cpplib.h
6570         * support/cpp2/cpplex.c,
6571         * support/cpp2/cppmain.c,
6572         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6573
6574 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6575
6576         Fixed a number of problems revealed by bug #827883.
6577         * src/SDCCloop.c (loopInvariants): Spill location of the
6578         result operand should be recomputed if extracted from
6579         a loop. Also, don't extract assignments of an iTemp
6580         from a literal.
6581         * src/SDCCast.c (isConformingBody): loop reversal should
6582         not occur if the control variable is involved with a
6583         relational operator.
6584
6585 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6586
6587         * .version: bumped to 2.3.6 to reflect the big improvements
6588         made by Erik and Klaus. Thanks!
6589
6590 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6591
6592         Replaced the livrange code.
6593         * src/SDCClrange.c: added new LR code
6594         * src/SDCCloop.c,
6595         * src/SDCCBBlock.h: removed remainig parts from old LR code
6596         * src/ds390/ralloc.c,
6597         * src/ds390/gen.c: minor fixes to make it work with new code
6598
6599 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6600
6601         * as/hc08/asm.h,
6602         * as/hc08/lkrloc.c,
6603         * src/hc08/gen.c,
6604         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6605         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6606         (tweaked fix for bug #818696)
6607
6608 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6609
6610         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6611
6612 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6613
6614         * src/SDCCmain.c,
6615         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6616         * src/mcs51/gen.c (gencjneshort),
6617         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6618         more efficient (per Scott Bronson's suggestion)
6619
6620 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6621
6622         Extended the semantics of the critical keyword to include
6623         individual statements. See RFE #827755 and #799831
6624         * src/SDCC.y
6625         * src/SDCCicode.c
6626         * src/SDCCopt.c
6627         * src/SDCCast.c
6628         * support/Util/SDCCerr.c
6629         * support/Util/SDCCerr.h
6630         * src/mcs51/gen.c
6631         * src/ds390/gen.c
6632         * src/hc08/gen.c
6633
6634 2003-10-19  Borut Razem <borut.razem AT siol.net>
6635
6636         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6637
6638 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6641         Fixed bug #818696
6642         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6643         and predecrement operand is displayed
6644
6645 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6646
6647         * src/SDCCval.c (valMinus): fixed bug #826041
6648
6649 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6650
6651         Some hc08 related updates that I missed earlier
6652         * sim/ucsim/stypes.h
6653         * support/regression/ports/hc08/spec.mk
6654
6655 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6656
6657         New target "hc08" for the Motorola 68hc08 family of micros
6658
6659         * configure
6660         * configure.in
6661         * Makefile
6662         * src/hc08/*
6663         * src/SDCCmain.c
6664         * src/port.h
6665         * sim/ucsim/hc08.src/*
6666         * sim/ucsim/configure.in
6667         * src/ucsim/configure
6668         * sim/ucsim/packages_in.mk
6669         * as/hc08/*
6670         * as/Makefile
6671         * device/include/mc68hc908qy.h
6672         * device/lib/hc08/*
6673         * device/lib/Makefile.in
6674         * support/regression/ports/hc08/*
6675         * support/regression/Makefile
6676
6677 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6678
6679         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6680         regression test
6681         * src/ds390/gen.c (genCast): fixed bug #821957
6682
6683 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6684
6685         * device/lib/logf.c: "fixed" overlay bug
6686         * support/regression/ports/host/spec.mk: added m library
6687         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6688         * support/regression/tests/float_trans: added (for Eric)
6689
6690 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6691
6692         * src/mcs51/gen.c (genCpl): fixed bug
6693         http://sf.net/mailarchive/message.php?msg_id=6263915
6694
6695 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6696
6697         * src/SDCCast.c (decorateType): added extended constant folding
6698         * src/SDCCsymt.c (computeType): cleanup
6699         * src/SDCCval.c (valShift): minor optimization
6700         * support/regression/tests/ast_constant_folding.c: added
6701
6702 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6703
6704         * src/SDCCmain.c: removed some unintended changes
6705
6706 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6707
6708         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6709         * src/z80/gen.c: fixed part of bug #817589
6710         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6711
6712 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6713
6714         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6715         * src/SDCCcflow.c
6716         * src/SDCCcse.c
6717         * src/SDCCdflow.c
6718         * src/SDCClabel.c
6719         * src/SDCClrange.c
6720         * src/SDCCmem.c
6721         * src/SDCCopt.c
6722         * src/SDCCpeeph.c
6723         * src/SDCCset.c
6724         * src/avr/ralloc.c
6725         * src/ds390/ralloc.c
6726         * src/izt/ralloc.c
6727         * src/mcs51/ralloc.c
6728         * src/pic/ralloc.c
6729         * src/pic16/ralloc.c
6730         * src/xa51/ralloc.c
6731         * src/z80/ralloc.c
6732         * src/z80/gen.c: removed unused label "release:"
6733
6734 2003-10-06  Borut Razem <borut.razem AT siol.net>
6735
6736         * src/SDCC.lex: removed definition of unused variables
6737           save_optimize and save_options
6738
6739 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6740
6741         * clean.mk: removed '=' in "-maxdepth=1"
6742         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6743         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6744
6745 2003-10-06  Borut Razem <borut.razem AT siol.net>
6746
6747         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6748           my_unput() replaced by unput()
6749
6750 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6751
6752         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6753         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6754         type-punned pointer will break strict-aliasing rules"
6755         Old LR behaviour is again default; Klaus' LR can be choosen by
6756         defining the environment variable LRKLAUS
6757         * src/SDCCBBlock.h
6758         * src/SDCCloop.c
6759         * src/SDCClrange.c
6760         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6761         * clean.mk: fixed removal of files in bin/CVS/
6762         * device/lib/clean.mk: fixed removal of directories small and large
6763         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6764         * src/SDCCicode.c,
6765         * src/SDCCval.c: removed superflous test for pedantic
6766
6767 2003-10-05  Borut Razem <borut.razem AT siol.net>
6768
6769         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6770           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6771           message "unmatched #pragma SAVE and #pragma RESTORE"
6772
6773 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6774
6775         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6776           assembly, critical functions, atomic, nojtbound)
6777
6778 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6779
6780         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6781         * src/SDCCBBlock.h
6782         * src/SDCCloop.c
6783         * src/SDCCloop.h
6784         * src/SDCClrange.c
6785
6786 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6787
6788         * src/z80/gen.h,
6789         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6790         * src/mcs51/gen.h
6791         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6792         * src/ds390/gen.h
6793         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6794         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6795         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6796
6797 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6798
6799         * src/z80/gen.c (genRet): fixed bug #524753
6800         * src/z80/gen.c (genCast): fixed internal error on cast from
6801         pointer to long
6802         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6803         fix for bug #477835 to the z80
6804         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6805         for tracking iCodes in the peephole optimizer for z80
6806
6807 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6808
6809         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6810         the other part of bug #814548
6811         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6812
6813 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6814
6815         * src/SDCCcse.c: fixed part of bug #814548
6816
6817 2003-09-28  Borut Razem <borut.razem AT siol.net>
6818
6819         * src/asm.c: rewrite of printILine() to use temporary file instead
6820           a pipe
6821         * src/xa51/main.c: commented out declaration of int rewinds
6822
6823 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6824
6825         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6826
6827 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6828
6829         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6830         * src/asm.c (printILine): Fixed bug #811015
6831
6832 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6833
6834         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6835         freeing.
6836
6837 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6840         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6841         to correctly handle general case of AOP_PAIRPTR
6842         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6843
6844 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6845
6846         * src/mcs51/ralloc.c (fillGaps),
6847         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6848         register positioning bug)
6849
6850 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6851
6852         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6853
6854 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6855
6856         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6857         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6858         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6859         (ralloc doesn't intentionally do this now, but perhaps later)
6860         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6861         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6862         register positioning bugs (Fixed bug #762602 and #795325)
6863         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6864         (Fixed bug #808779)
6865         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6866         lines that --i-code-in-asm generates
6867
6868 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6869
6870         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6871         trying to fclose a FILE* that was already closed.
6872
6873 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6874
6875         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6876         of const struct should be treated as if const themselves)
6877
6878 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6879
6880         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6881
6882 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6883
6884         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6885         Unix (/n) and DOS (/r/n) line terminations.
6886
6887 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6888
6889         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6890         bug #613775
6891
6892 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6893
6894         * src/mcs51/gen.c (genFunction, genEndFunction),
6895         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6896         and restore of EA so that stack offsets to parameters are
6897         correct when using both critical and reentrant/stack-auto.
6898         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6899         size (can be triggered in error if sloc is shared between
6900         different sized objects)
6901         * device/include/float.h: fixed macros to explicitly use
6902         unsigned long where needed
6903
6904 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6905
6906         Feature req. 799831: added code to allow nesting of critical functions
6907         * src/mcs51/gen.c (genFunction, genEndFunction)
6908         * src/ds390/gen.c (genFunction, genEndFunction)
6909
6910 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6911
6912         * src/SDCCsymt.c (sclsFromPtr),
6913         * src/SDCCsymt.h,
6914         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6915         support for standard C idiom of memory mapped variables; for
6916         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6917         to xdata int at 0x1234 tempvar = 1.
6918         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6919         provided by Akiya ISHIDA
6920
6921 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6922
6923         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6924         * src/SDCCval.c (constVal): added reduction from int to char
6925         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6926         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6927         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6928         to ignore the sign
6929         * support/regression/tests/shifts.c: fixed
6930
6931 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6932
6933         * src/z80/gen.c (genXor): Fixed bug #805445
6934
6935 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6936
6937         Fixed bug #621531 (const & volatile confusion in the type chain).
6938         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6939         refer to the const or volatile state of the pointer itself.
6940
6941         * src/SDCCast.c
6942         * src/SDCCglue.c
6943         * src/SDCCicode.c
6944         * src/SDCCsymt.c
6945         * src/SDCCval.c
6946         * src/SDCC.y
6947         * src/SDCCsymt.h
6948         * src/pic/gen.c
6949         * src/pic/ralloc.c
6950         * src/pic16/gen.c
6951         * src/pic16/ralloc.c
6952         * support/regression/tests/const.c
6953
6954 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6955
6956         When checking for duplicated modules, use absolute paths
6957         instead of relative paths.  Files changed:
6958
6959         * as/mcs51/lklib.c
6960         * link/z80/lklib.c
6961
6962 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6965
6966 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6967
6968         * device/include/string.h: added size_t typedef, changed
6969         prototypes to use size_t, eliminated separate reentrant and
6970         non-reentrant declarations, added _memmove declaration
6971         * device/lib/_memcpy.c: changed to use size_t instead of int,
6972         changed /4 to >>2 to avoid division library call
6973         * device/lib/_memcmp.c,
6974         * device/lib/_memset.c,
6975         * device/lib/_strncat.c,
6976         * device/lib/_strncpy.c,
6977         * device/lib/_strncmp.c: changed to use size_t instead of int
6978         * device/lib/_memmove.c: new file (fixed bug #772294)
6979         * device/lib/Makefile.in: added _memmove.c
6980         * device/lib/z80/asm_strings.s: fixed bug #772290
6981         * support/regression/tests/bitfields.c: attempt to fix host assertion
6982         failure on amd64-unknown-linux2.2
6983
6984 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6985
6986         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6987         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6988         * as/z80/asmain.c (main): fixed bug #801766
6989
6990 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6991
6992         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6993         compilers
6994
6995 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6996
6997         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6998         reported in bug #800609
6999
7000 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
7001
7002         * Top header beautifications in src/pic16 directory:
7003           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7004           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7005           pcoderegs.h, ralloc.c, ralloc.h
7006         * main.c: added top header and GPL license notice
7007         * pcode.c: fixed the if-conditional warning
7008
7009 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7010
7011         * device/lib/_mullong.c: replaced int by short for gcc
7012
7013 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7014
7015         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7016         and JUMPTABLE iCodes properly now (worked by accident before)
7017         * src/mcs51/gen.c (leftRightUseAcc),
7018         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7019         iCode properly now. Use getSize instead of nRegs since a & b
7020         aren't part of the nRegs tally.
7021
7022 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7023
7024         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7025         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7026           before instructions that use the _STATUS register
7027
7028 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7029
7030         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7031         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7032         fetching of the pointer
7033         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7034         copied from genNearPointerSet()
7035         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7036         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7037         If they pop r0/r1 they must be called in the opposite order than aopOp().
7038         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7039         (resp. --stack-auto), prepared for --xstack
7040
7041 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7042
7043         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7044
7045 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7046
7047         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7048         these ports have their own __sdcc_external_start()
7049
7050 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7053         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7054         type for bits was changed. It resulted in bit variables becoming
7055         global, which is not permitted in PIC 14 assembly output.
7056
7057 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7058
7059         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7060
7061 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7062
7063         Z80 and MCS51 linkers complaint if a public symbol is defined
7064         in more than one library module:
7065
7066         * as/mcs51/lklib.c
7067         * link/z80/lklib.c
7068         * as/mcs51/Makefile.in
7069
7070 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7071
7072         A few small changes that speed up the peephole optimizer.
7073
7074         * src/SDCCpeeph.c
7075
7076 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7077
7078         Try to make the peephole optimizer smarter by maintaining
7079         an association between the assembly source code and the
7080         iCodes that originated them. Put this information to use
7081         with a new peephole rule condition "notVolatile" so that
7082         the rules can be aggressive yet still safe.
7083
7084         * src/SDCCpeeph.c
7085         * src/SDCCpeeph.h
7086         * src/mcs51/gen.c
7087         * src/mcs51/peeph.def
7088
7089 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7090
7091         Fixed bug #741761
7092
7093         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7094         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7095         if the left or right operand symbols have the accuse flag set.
7096
7097 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7098
7099         Changed the type of the result of the ! (NOT) operator to char;
7100         previously it returned the same type as the source. This allows
7101         us to eliminate all the genFloatNot functions (all of its target
7102         implementations were very buggy) since !float can use the same
7103         code as !long now.
7104
7105         * src/SDCCicode.c (ast2iCode): ! returns char
7106         * src/mcs51/gen.c (genNot, genNotFloat),
7107         * src/ds390/gen.c (genNot, genNotFloat),
7108         * src/z80/gen.c (genNot, genNotFloat),
7109         * src/pic/gen.c (genNot, genNotFloat),
7110         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7111
7112 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7115         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7116            during interrupts. Ensure WSAVE is located at a shared bank address.
7117         2. Fixed page selection in some places
7118         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7119            the registers name strings.
7120         4. Fixed "signed / unsigned compare" compiler warnings.
7121         5. The PIC port manages its own allocation of the general purpose
7122            registers, but makes no attempt to reuse them. As a result when
7123            compiling it soon runs out of general purpose registers. Some
7124            additional code was added to the files pcode.c and device.c to walk
7125            through the function call tree and rename the registers so that they
7126            get reused.
7127
7128         * src/pic/device.c
7129         * src/pic/gen.c
7130         * src/pic/glue.c
7131         * src/pic/pcode.c
7132         * src/pic/pcode.h
7133         * src/pic/ralloc.c
7134         * src/pic/ralloc.h
7135         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7136         genPlus() & genMinus() when the result is the same as left or right
7137
7138 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7139
7140         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7141
7142 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7143
7144         Made bitfield a distinct type from bit so that bitfields
7145         convert as per ANSI C and bits retain their traditional
7146         boolean style behaviour. Implemented bitfield support in
7147         the z80 port.
7148
7149         * src/SDCCsymt.h,
7150         * src/SDCCsymt.c,
7151         * src/SDCCast.c,
7152         * src/cdbFile.c,
7153         * src/mcs51/gen.c,
7154         * src/ds390/gen.c: bit v bitfield split
7155         * src/z80/gen.c: New support for bitfields
7156         * support/regression/tests/bitfields.c: reenabled z80,
7157         added more tests
7158
7159 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7160
7161         Rules 246.x, 247.x relate to bitfields, the others speed up
7162         access to xdata mapped I/O devices.
7163
7164         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7165
7166 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7167
7168         Cleaned up genPackBits and genUnpackBits and added two helper
7169         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7170         for literal assignments in genPackBits (thanks to Frieder for
7171         reminding me).
7172
7173         * src/mcs51/gen.c
7174         * src/ds390/gen.c
7175
7176 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7177
7178         Fixed bug #748310 (pointer to function type mishandled when the
7179         function name is omitted). Also fixed a SIGSEGV when a function
7180         attribute (reentrant, etc) is used on a non-function or on a
7181         function but misplaced before the parameter list.
7182
7183         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7184         bug #748310
7185         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7186         * support/Util/SDCCerr.h,
7187         * support/Util/SDCCerr.c: Added func attr misuse error msg
7188
7189 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7190
7191         Fixed bug #787649 by anonymous
7192         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7193         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7194
7195 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7196
7197         Fixed numerous bitfield problems.
7198
7199         * src/SDCC.y: More bitfield related error checking
7200         * src/SDCCsymt.h,
7201         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7202         * support/Util/SDCCerr.h,
7203         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7204         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7205         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7206         * support/regression/tests/bitfields.c: tests added
7207
7208 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7209
7210         Made the constant following the "interrupt" keyword optional. If
7211         omitted, the function will not automatically be given an entry
7212         in the interrupt vector table (similar to #pragma NOIV, but
7213         less syntacticly kludgy). The interrupt number is also now
7214         range checked. Also fixed a bug in the high order bit example
7215         in the manual.
7216
7217         * src/SDCC.y
7218         * src/SDCCmem.c
7219         * src/SDCCglue.c
7220         * src/SDCCsymt.h
7221         * support/Util/SDCCerr.c
7222         * support/Util/SDCCerr.h
7223         * doc/sdccman.lyx
7224
7225 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7226
7227         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7228         * src/SDCCicode.c (operandOperation): rewritten some ops
7229         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7230         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7231         other type
7232         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7233         be re-activated by defining REDUCE_LITERALS)
7234         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7235         unsigned, but are signed by default
7236         * src/SDCCval.c (constVal): rearranged
7237         * src/SDCCval.c (valMod): preliminary fix
7238         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7239         * support/regression/literalop.c: added, work in progress
7240
7241 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7242
7243         Generate warnings for useless declarations like "char data;"
7244         that don't do what new users expect.
7245
7246         * src/SDCC.y
7247         * support/Util/SDCCerr.h
7248         * support/Util/SDCCerr.c
7249
7250 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7251
7252         * src/SDCCval.c (valMult): fix overflow detection of negative int
7253
7254 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7255
7256         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7257
7258         Changes to support big endian targets:
7259
7260         * src/ports.h
7261         * src/SDCCglue.c
7262         * src/avr/main.c
7263         * src/ds390/main.c
7264         * src/izt/i186.c
7265         * src/mcs51/main.c
7266         * src/pic/main.c
7267         * src/pic16/main.c
7268         * src/xa51/main.c
7269         * src/z80/main.c
7270
7271 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7272
7273         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7274         * device/lib/time.c: fixed warning "integer overflow in expression"
7275
7276 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7277
7278         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7279         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7280         constants are unsigned; added recognition of "u" flag for unsigned
7281         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7282         * src/SDCCval.c (valDiv, valMod): fixed signdness
7283         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7284         signedness of modulo, left and right shift
7285         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7286         * support/Util/SDCCerr.h: added warning W_INT_OVL
7287         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7288         * src/SDCCast.c (ast_print): improved output of constants
7289
7290 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7291
7292         Fixed some warnings when building with MSVC:
7293
7294         * as\mcs51\asdata.c
7295         * as\z80\asdata.c
7296         * as\mcs51\asm.h
7297         * as\z80\asm.h
7298         * link\z80\aslink.h
7299         * link\z80\lkdata.c
7300         * link\z80\lkeval.c
7301         * link\z80\lkgb.c
7302         * link\z80\lkihx.c
7303         * link\z80\lks19.c
7304         * link\z80\lksym.c
7305         * support\cpp2\cpplib.c
7306         * src\ds390\gen.c
7307         * src\mcs51\gen.c
7308
7309 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7310
7311         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7312
7313 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7314
7315         * support\librarian\clean.mk: Do not remove Makefile.
7316         * support\librarian\Makefile: added.
7317
7318 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7319
7320         Added librarian to MSVC build:
7321         * all.dsp
7322         * sdcc.dsw
7323         * support\librarian\librarian.dsp
7324
7325         'configure' not needed for librarian, removed:
7326         * support\librarian\configure
7327         * support\librarian\configure.in
7328         * support\librarian\config_in.h
7329         * support\librarian\Makefile.in
7330
7331         Hopefully these ones built the librarian and the rest of sdcc properly:
7332         * Makefile
7333         * Makefile.common.in
7334
7335         Messed up 'configure', so revert to previous version:
7336         * configure
7337         * configure.in
7338
7339 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7340
7341         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7342         there, while the mantissa of a double is "only" 53 bits wide.
7343
7344 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7345
7346         Adding sdcclib to the build.  MSVC project coming soon.
7347         Files added/changed:
7348
7349         * support\librarian\clean.mk
7350         * support\librarian\configure
7351         * support\librarian\configure.in
7352         * support\librarian\config_in.h
7353         * support\librarian\Makefile.bcc
7354         * support\librarian\Makefile.in
7355         * support\librarian\sdcclib.c
7356         * Makefile.bcc
7357         * Makefile
7358         * Makefile.common.in
7359         * configure
7360         * configure.in
7361
7362 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7363
7364         Linker now complaints if linked modules have conflicting options, for
7365         example, one compiled using --model-large and another one compiled with
7366         --model-small.  The following files were modified:
7367
7368         * as\mcs51\asdata.c
7369         * as\mcs51\aslink.h
7370         * as\mcs51\asm.h
7371         * as\mcs51\asmain.c
7372         * as\mcs51\asout.c
7373         * as\mcs51\i51pst.c
7374         * as\mcs51\lkdata.c
7375         * as\mcs51\lklibr.c
7376         * as\mcs51\lkmain.c
7377         * as\z80\asdata.c
7378         * as\z80\asm.h
7379         * as\z80\asmain.c
7380         * as\z80\asout.c
7381         * as\z80\z80pst.c
7382         * link\z80\aslink.h
7383         * link\z80\lkdata.c
7384         * link\z80\lklibr.c
7385         * link\z80\lkmain.c
7386         * src\SDCCglue.c
7387
7388 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7389
7390         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7391         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7392
7393 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7394
7395         * src/z80/mappings.i: fix _mul[us][int,long] entries
7396
7397 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7398
7399         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7400
7401 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7402
7403         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7404         * support/regression/tests/bitopcse.c: added
7405         fixed warning:
7406         * src/avr/gen.c:
7407         * src/pic/gen.c:
7408         * src/pic16/gen.c:
7409         * src/z80/gen.c:
7410         * src/xa51/gen.c:
7411
7412 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7413
7414         added support for new library format to z80, gbz80 linkers:
7415         *link/z80/aslink.h
7416         *link/z80/lklex.c
7417         *link/z80/lklib.c
7418         *link/z80/lklist.c
7419
7420 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7421
7422         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7423         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7424
7425 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7426
7427         added DUMMY_READ_VOLATILE:
7428         * src/SDCC.y:
7429         * src/avr/gen.c:
7430         * src/xa51/gen.c:
7431         * src/z80/gen.c:
7432         * src/pic/gen.c:
7433         * src/pic16/gen.c:
7434         * src/mcs51/gen.c:
7435         * src/ds390/gen.c:
7436         * src/SDCCcse.c (algebraicOpts): many improvements
7437         * src/SDCCcse.h: removed algebraicOpts()
7438         * src/SDCCicode.c (picDummyRead): added
7439
7440 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7441
7442         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7443         "Insufficient space in data memory".
7444
7445 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7446
7447         * src/mcs51/gen.c: fixed bug #771358
7448         * src/z80/gen.c: fixed bug #759087
7449
7450 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7451
7452         * src/pic16/glue.c: minor cleanup by Vangelis
7453
7454 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7455
7456         * device/include/regc515c.h: fixed #758477
7457         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7458         * device/lib/_gptrput.c: saved a few bytes
7459         * my tab spacing is 8, yours too?)
7460         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7461         * device/lib/serial.c: process RX bytes earlier than TX bytes
7462         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7463
7464 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7465
7466         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7467
7468 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7469
7470     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7471
7472 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7473
7474         * device/lib/Makefile.in: bad fix, reverted to 1.43
7475
7476 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7477
7478         * device/lib/Makefile.in: added missing z80 object files
7479
7480 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7481
7482         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7483         pic16 progress by Vangelis:
7484         * src/SDCCglobl.h:
7485         * src/SDCCmain.c:
7486         * src/pic/Makefile:
7487         * src/pic:
7488         * pic/Makefile:
7489         * pic16/device.c:
7490         * pic16/device.h:
7491         * pic16/gen.c:
7492         * pic16/gen.h:
7493         * pic16/genarith.c:
7494         * pic16/glue.c:
7495         * pic16/main.c:
7496         * pic16/pcode.c:
7497         * pic16/pcode.h:
7498         * pic16/pcodepeep.c:
7499         * pic16/peeph.def:
7500
7501 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7502
7503     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7504
7505 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7506
7507     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7508     added gbz80 build to MSVC project.
7509     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7510     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7511     from 8051 stuff and setup so it links using a .lnk file.
7512
7513 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7514
7515     * support/librarian/sdcclib.c: sdcc librarian.
7516     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7517     with sdcclib.
7518
7519 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7520
7521     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7522
7523 2003-07-02  Borut Razem <borut.razem AT siol.net>
7524
7525         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7526         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7527         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7528         src/xa51/main.c, src/z80/main.c:
7529         virtualization of glue() function: each port has it's own glue function,
7530         which is accessed by do_glue function pointer in PORT.general structure
7531
7532 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7533
7534         * DS800C400 fun, improved ROM interface and tinibios.
7535
7536 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7537
7538         * More support for DS80C400. Now includes beginning of interface to ROM.
7539
7540 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7541
7542         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7543
7544 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7545
7546         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7547
7548 2003-06-19  Borut Razem <borut.razem AT siol.net>
7549
7550         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7551
7552 2003-06-19  Borut Razem <borut.razem AT siol.net>
7553
7554         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7555         fixed Z80 port - crt0.o: cannot open.
7556
7557 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7558
7559         * support/Util/MySystem.c (merge_command): revert bad fix
7560
7561 2003-06-18  Borut Razem <borut.razem AT siol.net>
7562
7563         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7564
7565 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7566
7567         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7568         option --use-stdout sends errors to stdout instead of stderr.
7569
7570 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7571
7572         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7573
7574 2003-06-15  Borut Razem <borut.razem AT siol.net>
7575
7576         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7577         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7578         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7579         fixed width array of pointers replaced with sets;
7580         multiple include and lib paths ared transferred to preprocessor and linker
7581         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7582         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7583         fixed width array of pointers
7584         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7585         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7586         fixupPath(), getPathDifference()
7587         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7588         fixed width array of pointers
7589
7590 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7591
7592         * src/pic16/ralloc.c: fix warnings
7593         * src/pic16/pcode.c: fix warning
7594
7595 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7596
7597          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7598         know all the details, but essentially this set of changes enable
7599         the pic16 port to generate movff instructions and generate assembler
7600         directives,
7601         * src/SDCCmain.c:
7602         * src/pic16/gen.c:
7603         * src/pic16/glue.c:
7604         * src/pic16/pcode.c:
7605         * src/pic16/device.c:
7606         * src/pic16/main.c:
7607         * src/pic16/pcode.h:
7608         * src/pic16/pcoderegs.c:
7609         * src/pic16/ralloc.c:
7610         * src/pic16/ralloc.h:
7611
7612 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7613
7614         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7615         added option --vc, so sdcc errors and warnings are compatible with
7616         Microsoft Visual Studio.
7617
7618 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7619
7620         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7621           device/lib/libfloat.lib: added atof function.
7622
7623 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7624
7625         * doc/sdccman.lyx: updated to Lyx 1.3
7626         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7627         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7628         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7629
7630 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7631
7632         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7633
7634 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7635
7636         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7637           additions to the "related tools/documentation" section
7638
7639 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7640
7641         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7642
7643 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7644
7645         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7646         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7647
7648 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7649
7650         * doc/sdccman.lyx: fix double dash and other minor things
7651         * doc/Makefile: fix double dash
7652
7653 2003-05-28  Karl Bongers(patches from Martin Helmling)
7654         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7655           condition and ignore commands.
7656
7657 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7658
7659         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7660           is in parts still quite out of date, I did changes as far as I felt makes sense
7661           for a non-native english speaker.
7662           Please feel free to add to the manual or to correct my changes.
7663         * doc/Makefile: undid touching the date of intermediate tex files.
7664
7665 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7666
7667         * doc/sdccman.lyx: Manual has an index now
7668
7669 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7670
7671         Finalize muluint/mulsint and mululong/mulslong merging:
7672         * device/lib/_mulint.c
7673         * device/lib/_mullong.c
7674         * device/lib/gbz80/mul.s
7675         * device/lib/gbz80/stubs.s
7676         * device/lib/z80/mul.s
7677         * device/lib/z80/stubs.s
7678         * src/SDCCsymt.c (initCSupport)
7679
7680 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7681
7682         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7683         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7684           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7685           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7686           instead of /Zm500.
7687
7688 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7689
7690         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7691           the regression tests I'm not brave enough to enable 245.b, 245.c
7692         * doc/sdccman.lyx: added latex preamble for hyperref package.
7693           Using pdflatex this will give you a hyperlinked pdf file with
7694           bookmarks. (prepend '%' before /usepackage if this breaks something)
7695
7696 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7697
7698          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7699
7700 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7701
7702         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7703
7704 2003-05-21    <johan AT balder>
7705
7706         * src/SDCCglue.c (printIval): fixed bug #739934
7707
7708 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7709
7710         Applied patch from bug 737905 (renamed yylineo to mylineno):
7711         * src/altlex.c
7712         * src/SDCCast.c
7713         * src/SDCglobl.h
7714         * src/SDCC.lex
7715         * src/SDCCsymt.c
7716         * src/SDCCval.c
7717         * src/pic16/pcode.c: Cleaned warnings
7718         * src/pic16/pcodeflow.c: Cleaned warnings
7719         * src/pic16/pcoderegs.c: Cleaned warnings
7720
7721 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7722
7723         * src/pic16/pcode.c: Cleaned warnings
7724         * src/pic16/pcodepeep.c: Cleaned warnings
7725         * src/pic16/ralloc.c: Cleaned warnings
7726
7727 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7728
7729         * doc/sdccman.lyx: fixed bug 739745
7730         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7731
7732 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7733
7734         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7735         it can be defined with CFLAGS when running configure
7736         * src/SDCCmain.c: fixed compiling + linking with object files
7737
7738 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7739
7740         * configure.in: configure for pic16 port,
7741             added --disable-pic16-port
7742         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7743         * src/SDCCmain.c: linkOptions is changed to set *,
7744             added if/endif conditional macros to remove options help
7745             messages from optionsTable when a port is not configured, added
7746             support for the PIc16 port in the ports table, when executing
7747             the compiler with no port specified on command line, a default
7748             port is selected with the new macro DEFAULT_PORT which is
7749             defined in port.h, in setDefaultOptions() linkOptions is removed
7750             from initialization assignment, since now it is a set,
7751             parseCmdLine uses setParseWithComma for linkOptions, in
7752             linkEdit() linkOptions are accessed with new function indexSet()
7753             which returns the i'th item of a set variable. See SDCCset.c, in
7754             linkEdit() when calling buildCmdLine(), added linkOptions as
7755             last argument. Now users can pass arguments to gplink via the
7756             -Wl option, main() uses pic16glue() to glue up pic16 programs
7757         * src/SDCCpeeph.c: various changes to support pic16
7758         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7759             return the i'th item of the set
7760         * src/SDCCset.h: added function prototype for indexSet()
7761         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7762         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7763         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7764             added macro DEFAULT_PORT
7765         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7766         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7767             generated
7768         * src/pic16/glue.c: commented out some error producing lines
7769         * src/pic16/main.c: __config directives are commented out to stop
7770             gpasm complaining and test the linkage with gplink, _linkCmd and
7771             _asmCmd changed to be more gplink and gpasm friendly
7772         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7773             produced an error when parsed, peep rule 12 is added to utilize
7774             movff, but it is commented out since the pCode does not support
7775             yet a command with 2 address arguments
7776
7777 2003-05-18    <johan AT balder>
7778
7779         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7780         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7781 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7782
7783         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7784   Added feature to script commands from file.
7785
7786 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7787
7788         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7789         * src/SDCCutil.c: include ctype.h for win32
7790
7791 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7792
7793         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7794
7795 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7796
7797         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7798   Fixed so you can set breakpoints prior to run, run does not stop
7799   on entry now.  Add tbreak.  Other enhancements and fixes for use
7800   with ddd.
7801
7802 2003-05-12  Borut Razem <borut.razem AT siol.net>
7803
7804         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7805
7806 2003-05-11  Borut Razem <borut.razem AT siol.net>
7807
7808         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7809         the path of bin directory, so that PATH is the only env. variable, which has to be set
7810         in case of standard installation.
7811         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7812         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7813         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7814
7815 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7816
7817         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7818         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7819         temp files are in the port dir; clean the gen/test directory when
7820         generating new test.c
7821         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7822         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7823         * support/regression/tests/zeropad.c: added
7824
7825 2003-05-09    <johan AT balder>
7826
7827         * src/SDCCglue.c: fixed bug #597940
7828
7829 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7830
7831         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7832   cache sfr, optimize next,step, fix off by one sourceline,
7833   support ddd list function.
7834         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7835
7836 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7837
7838         * support/regression/HTMLgen.py: added compare_s2f()
7839         * support/regression/Makefile: redo 1.27
7840         * support/regression/generate-cases.py: redo 1.5
7841
7842 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7843
7844         * support/regression/tests/float.c: workaround 33 bit hex constant
7845         * support/regression/tests/simplefloat.c: fix division for host
7846
7847 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7848
7849         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7850         that tame's the PIC's over-aggressive optimizer.
7851
7852 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7853
7854          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7855          support for MSVC.
7856
7857 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7858
7859         Initial support for DS80C400. "Hello world" runs on TINIm400
7860         (with polled I/O).
7861
7862 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7863
7864          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7865          * Some notes on ddd usage added in debugger/README
7866          Martin Helmling adding more features and fixes for ddd GUI debugger.
7867          Code added for nexti, stepi, up, down, and other adjustments.
7868
7869 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7870
7871         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7872         * src/pic/peeph.def Added two rules to optimize carry manipulation
7873         * src/pic/* removed debug printfs
7874
7875 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7876
7877         * debugger/mcs51/cmd.c: added header newalloc.h
7878
7879 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7880
7881         * as/Makefile: new EXEEXT
7882         * as/z80/Makefile: remove trailing slash of BUILDIR
7883         * as/z80/clean.mk: new EXEEXT
7884         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7885         * support/cpp2/Makefile.in: new EXEEXT
7886         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7887
7888 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7889
7890         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7891         EXEEXT was introduced to fix all related problems with targets
7892         "clean", "install" and "uninstall"; a couple of further flaws
7893         especially with "clean" have been fixed too
7894         * as/mcs51/Makefile.in
7895         * as/mcs51/clean.mk
7896         * as/z80/Makefile
7897         * Makefile
7898         * clean.mk
7899         * debugger/mcs51/Makefile.in
7900         * debugger/mcs51/clean.mk
7901         * link/z80/Makefile
7902         * link/z80/Makefile.in
7903         * link/z80/clean.mk
7904         * link/Makefile
7905         * packihx/Makefile.in
7906         * packihx/clean.mk
7907         * sim/ucsim/Makefile
7908         * sim/ucsim/clean.mk
7909         * sim/ucsim/avr.src/Makefile.in
7910         * sim/ucsim/avr.src/clean.mk
7911         * sim/ucsim/s51.src/Makefile.in
7912         * sim/ucsim/s51.src/clean.mk
7913         * sim/ucsim/xa.src/Makefile.in
7914         * sim/ucsim/xa.src/clean.mk
7915         * sim/ucsim/z80.src/Makefile.in
7916         * sim/ucsim/z80.src/clean.mk
7917         * sim/ucsim/main_in.mk
7918         * sim/ucsim/packages_in.mk
7919         * sim/ucsim/gui.src/Makefile.in
7920         * sim/ucsim/gui.src/serio.src/Makefile.in
7921         * sim/ucsim/gui.src/serio.src/clean.mk
7922         * src/Makefile.in
7923         * src/clean.mk
7924         * support/cpp2/Makefile.in
7925         * support/cpp2/clean.mk
7926         * support/makebin/Makefile
7927         * support/makebin/clean.mk
7928         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7929         * doc/sdccman.lyx: --program-suffix no longer needed
7930
7931 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7932
7933          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7934          Martin Helmling added support for ddd GUI debugger.
7935          Code added to display assembly, set variables, and other commands
7936          to interface to ddd.
7937
7938 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7939
7940         * as/Makefile: fix target clean
7941         * as/clean.mk: fix target clean
7942         * as/z80/clean.mk: fix target clean
7943
7944 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * Makefile.common.in: added  AT EXEEXT AT
7947         * configure.in: removed all mingw32 stuff
7948         * configure: rebuilt from configure.in
7949         * doc/sdccman.lyx: updated section "installation"
7950         * support/scripts/sdcc_mingw32: adapted to configure
7951         * support/scripts/sdcc_cygwin_mingw32: added
7952
7953 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7954
7955         * src/pic Added object file support for the PIC port
7956         * src/pic Applied patch from Craig Franklin (this started the object file support)
7957         * src/regression Updated the PIC regression tests for object files
7958
7959 2003-04-20  Borut Razem <borut.razem AT siol.net>
7960
7961         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7962           lklex.c: In function `getfid':
7963           lklex.c:203: warning: array subscript has type `char'
7964         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7965           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7966         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7967           stack handling macros
7968
7969 2003-04-19  Borut Razem <borut.razem AT siol.net>
7970
7971         * "handling space characters in file path" task:
7972         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7973         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7974         * support/Util/MySystem.h: make it self-sufficient
7975         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7976           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7977           handling space characters in file path
7978         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7979           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7980         * support/Util/MySystem.c: handling space characters in executable's path
7981
7982 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7983
7984         * as/z80/Makefile: fix permanent rebuild of z80
7985         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7986         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7987
7988 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7989
7990         * src/SDCCopt.c: add special case optimization to replace modulo by
7991           a power of two with a bitwise AND.
7992
7993 2003-04-18    <johan AT balder>
7994
7995         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7996
7997 2003-04-17    <johan AT balder>
7998
7999         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
8000         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
8001
8002 2003-04-13  Borut Razem <borut.razem AT siol.net>
8003
8004         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8005         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8006           fixed mingw problem in adl_NORMALIZE_PATH
8007
8008 2003-04-12  Borut Razem <borut.razem AT siol.net>
8009
8010         * fixed "#pragma SAVE/RESTORE can not be nested":
8011         * src/SDCC.lex: reworked pragma handling functions
8012         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8013         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8014
8015 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCutil.c (pathEquivalent): defined but not used
8018         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8019         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8020         * configure: rebuilt from configure.in
8021         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8022         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8023         * device/include/Makefile.in: replace sdcc_datadir
8024         * device/lib/Makefile.in: replace sdcc_datadir
8025         * Makefile.common.in: add LDFLAGS from configure
8026         * packihx/Makefile.in: use LDFLAGS
8027         * src/Makefile.in: use LDFLAGS
8028         * support/cpp2/Makefile.in: add LDFLAGS from configure
8029         * support/makebin/Makefile: use LDFLAGS
8030         * .version: bumped version number to 2.3.5
8031
8032 2003-04-12  Borut Razem <borut.razem AT siol.net>
8033
8034         * completed "different paths" task:
8035         * src/SDCCmacro.c: fixed bug in handling quotes
8036         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8037         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8038
8039 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8040
8041         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8042
8043 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8044
8045         * ds390/gen.c ds390/peeph.def: fix bug 706781
8046
8047 2003-04-11  Borut Razem <borut.razem AT siol.net>
8048
8049         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8050
8051 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8052
8053         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8054         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8055          set - this bit used to not be set...).
8056         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8057           bad code in PIC Port
8058         * src/regression/and2.c added to test bug 609268
8059         * src/regression/Makefile added and2.c to regression test
8060
8061
8062 2003-04-08    <johan AT CP255758-A>
8063
8064         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8065         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8066         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8067
8068 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8069
8070         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8071         fix bug #487815
8072         * support/cpp2/Makefile.in: fix bug #487815
8073         * configure: rebuilt from configure.in
8074         * Makefile.common.in: docdir changed, new path suffixes
8075         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8076         * sdcc_vc_in.h: reflect changes from sdccconf.h
8077         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8078         * src/SDCCutil.h: remove BINDIR hack
8079         * doc/sdccman.lyx: update new path hierarchy
8080
8081 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8082
8083         * src/SDCCpeeph.c: added okToRemoveSLOC test
8084
8085 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8086
8087         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8088
8089 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8090
8091         * src/SDCCpeeph.c: added labelIsReturnOnly test
8092         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8093
8094 2003-04-05    <johan AT balder>
8095
8096         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8097         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8098         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8099         * src/SDCCast.c: fixed a warning
8100         * src/SDCCast.h: fixed a warning
8101         * src/SDCCicode.c (operandFromAst): fixed a warning
8102
8103 2003-04-04    <johan AT balder>
8104
8105         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8106         * src/SDCCast.c (decorateType): fixed bug #715076
8107         * src/SDCC.y: fixed bug #702907
8108
8109 2003-04-03    <johan AT balder>
8110
8111         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8112         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8113         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8114         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8115         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8116
8117 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8118
8119         * _decdptr.c: fix return values
8120         * _gptrget.c: fix return values
8121         * _gptrgetc.c: fix return values
8122         * _gptrput.c: fix return values
8123         * _mulint.c: fix return values
8124         * as/z80/Makefile: fix 'make -j' problem
8125
8126 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8127
8128         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8129         * configure.in: big cleanup, updated to autoconf 2.5x
8130         * configure: rebuilt from configure.in
8131         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8132         * sdcc_vc_in.h: reflect changes from sdccconf.h
8133         * doc/Makefile: fixed a flaw in "make install"
8134
8135 2003-04-02    <johan AT balder>
8136
8137         * src/ds390/gen.c (genCmp): no comments
8138         * src/mcs51/gen.c (genCmp): no comments
8139         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8140         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8141
8142 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8143
8144         * support/regression/generate-cases.py: place generated file in given sub directory
8145         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8146         * support/regression/Makefile: improvements for 'make -j';
8147         side effect: it's simpler and faster now
8148
8149 2003-03-31  Borut Razem <borut.razem AT siol.net>
8150
8151         * src/z80/main.c: link-{port} and as-{port} defined without path
8152         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8153
8154 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8155
8156         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8157
8158 2003-03-30  Borut Razem <borut.razem AT siol.net>
8159
8160         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8161           changed type of list parameter to set
8162         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8163         * src/port.h: changed type of do_assemble() parameter to set
8164         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8165           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8166           definition of "cppoutfilename" macro with NULL value in preProcess()
8167         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8168         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8169         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8170           replaced with set *binPathSet
8171         * shash_add() deallocates the item, if allready exsists, before adding the new one
8172         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8173
8174 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8175
8176         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8177           a nested for loop bug in the PIC port
8178         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8179           for loops
8180
8181 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8182
8183         * support/Util/dbuf.h: remove C++ stuff to make it portable
8184
8185 2003-03-28  Borut Razem <borut.razem AT siol.net>
8186
8187         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8188           literal strings in stringLiteral()
8189         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8190         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8191           to the project
8192
8193 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8194
8195         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8196
8197 2003-03-26    <johan AT balder>
8198
8199         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8200         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8201         * src/SDCCast.c (decorateType): fixed " -v < 3"
8202
8203 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8204
8205         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8206         Added Lenny Story's debug infrastructure changes:
8207         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8208         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8209         * src/cdbFile.c: added
8210         * src/SDCCdebug.c: added
8211         * src/SDCCdebug.h: added
8212         * src/SDCCast.c (createFunction)
8213         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8214         * src/SDCCmain.c (parseCmdLine, main)
8215         * src/SDCCmem.c (redoStackOffsets)
8216         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8217         * src/SDCCsymt.h
8218         * src/common.h
8219         * src/avr/gen.c (genAVRCode)
8220         * src/ds390/gen.c (gen390Code)
8221         * src/mcs51/gen.c (gen51Code)
8222         * src/pic/gen.c (genpic14Code)
8223         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8224         * src/xa51/gen.c (genXA51Code)
8225         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8226
8227 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8228
8229         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8230         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8231
8232 2003-03-22    <johan AT balder>
8233
8234         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8235
8236 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8239         * doc/cdbfileformat.lyx: added, written by Lenny Story
8240         * doc/Makefile: added cdbfileformat.lyx
8241         * doc/clean.mk: added cdbfileformat.lyx
8242
8243 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8244
8245         * src/mcs51/peeph.def: fix bug #705773
8246
8247 2003-03-20    <johan AT balder>
8248
8249         An sfr/sbit can have an "at #" AND an initializer
8250         * src/SDCCsymt.c (checkSClass):
8251         * src/SDCCmem.c (allocGlobal):
8252         * src/SDCCmem.c (allocLocal):
8253         * src/SDCCast.c (createBlock):
8254
8255 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8258
8259 2003-03-16    <johan AT balder>
8260
8261         Undid the hackup of const and volatile, the problem is much bigger
8262         * src/SDCC.y:1.65
8263         * src/SDCCast.c:1.171
8264         * src/SDCCglue.c:1.138
8265         * src/SDCCicode.c:1.146
8266         * src/SDCCsymt.c:1.150
8267         * src/SDCCval.c:1.65
8268
8269 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8270
8271         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8272         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8273
8274 2003-03-13    <johan AT balder>
8275
8276         Hackup const and volatile modifiers in type chains a bit:
8277         * src/SDCC.y:1.63
8278         * src/SDCCast.c:1.169
8279         * src/SDCCglue.c:1.136
8280         * src/SDCCicode.c:1.143
8281         * src/SDCCsymt.c1.146
8282         * src/SDCCsymt.h1.59
8283         * src/SDCCval.c:1.63
8284
8285 2003-03-12    <johan AT balder>
8286
8287         * src/SDCCBBlock.h: more LRH debugging junk
8288         * src/SDCCcflow.h: more LRH debugging junk
8289         * src/SDCCloop.c: more LRH debugging junk
8290         * src/SDCC.y (struct_declaration): fixed bug #697590
8291         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8292         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8293         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8294
8295 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8296         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8297         test function names must now match exactly).
8298         * src/SDCCcse.c: added special case in findCheaperOp to allow
8299         extending a short integer. Makes less awful code for bug 700121 test case.
8300
8301 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8302
8303         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8304         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8305
8306 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8307
8308         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8309         actually called (operandsNotEqual() was called for all
8310         operandsNotEqualX tests).
8311
8312 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8313
8314         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8315         with shorter literals. Fixes bug 700121.
8316
8317 2003-03-11    <johan AT balder>
8318
8319         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8320
8321 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8322
8323         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8324         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8325
8326 2003-03-10  Borut Razem <borut.razem AT siol.net>
8327
8328         * src/SDCCmain.c: pipe preprocessor's output
8329         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8330         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8331         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8332         which closes all pipes in pipeSet set
8333         * src/SDCCset.c: free deleted item in function deleteSetItem()
8334         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8335         moved from z80 to src subproject
8336         * .version: increased version number to 2.3.4
8337
8338 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8339
8340         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8341         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8342         * support/regression/ports/xa51/spec.mk: fix typo
8343
8344 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8345
8346         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8347
8348 2003-03-09  Borut Razem <borut.razem AT siol.net>
8349
8350         * src/SDCCmain.c: pipe preprocessor's output
8351         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8352         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8353         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8354         which closes all pipes in pipeSet set
8355         * src/SDCCset.c: free deleted item in function deleteSetItem()
8356         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8357         moved from z80 to src subproject
8358
8359 2003-03-09  Borut Razem <borut.razem AT siol.net>
8360
8361         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8362         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8363         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8364         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8365         * src/SDCCglobl.h: unification of WIN32 native definitions
8366
8367 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8368
8369         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8370
8371 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8372
8373         * src/configure.in:   check for endianess (even while cross-compiling)
8374         * src/configure:      check for endianess (even while cross-compiling)
8375         * src/configure_in.h: check for endianess (even while cross-compiling)
8376         * src/avr/gen.c:        remove old endianess stuff
8377         * src/mcs51/gen.c:      remove old endianess stuff
8378         * src/ds390/gen.c:      remove old endianess stuff
8379         * src/pic/gen.c:        remove old endianess stuff
8380         * src/pic/genarith.c:   remove old endianess stuff
8381         * src/pic/glue.c:       fix endianess check
8382         * src/pic16/gen.c:      remove old endianess stuff
8383         * src/pic16/genarith.c: remove old endianess stuff
8384         * src/pic16/glue.c:     fix endianess check
8385         * src/xa51/gen.c:       remove old endianess stuff
8386         * src/z80/gen.c:        fix endianess check
8387         * src/SDCCglue.c:       fix endianess check
8388         * src/ds390/peeph.def: fix bug 700036
8389
8390 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8391
8392         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8393         * src/configure: find appropriate data-types on host for SDCC's int and long
8394         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8395         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8396         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8397
8398 2003-03-07    <johan AT balder>
8399
8400         Just a big NOOP:
8401                 some minor cleanups before the big shot
8402                 OP_DEFS and OP_USES now use Kevin's protection
8403                 new option --nolabelopt
8404
8405         * src/SDCCBBlock.c:
8406         * src/SDCCast.c,:
8407         * src/SDCCcflow.c:
8408         * src/SDCCcse.c:
8409         * src/SDCCicode.c:
8410         * src/SDCCicode.h:
8411         * src/SDCClabel.c:
8412         * src/SDCCloop.c:
8413         * src/SDCCmain.c:
8414         * src/ds390/ralloc.c:
8415         * src/mcs51/ralloc.c:
8416         * src/pic/ralloc.c:
8417         * src/xa51/ralloc.c:
8418         * src/z80/ralloc.c:
8419
8420 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8421
8422         * src/pic/pcode.c (get_op): fix 64 bit warnings
8423         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8424         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8425         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8426         * support/regression/tests/malloc.c: fix 64 bit warnings
8427
8428 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8429
8430         * src/mcs51/gen.c (genMinus): fixed bug 696436
8431
8432 2003-03-02  Borut Razem <borut.razem AT siol.net>
8433
8434         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8435
8436 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8437
8438         * configure.in: test for mkstemp
8439         * sdccconf_in.h: add HAVE_MKSTEMP
8440
8441 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8442
8443         * device/include/ctype.h: removed warning while using --stack-auto
8444         * device/include/malloc.h: removed warning while using --stack-auto
8445         * device/include/string.h: removed warning while using --stack-auto
8446
8447 2003-02-23  Borut Razem <borut.razem AT siol.net>
8448
8449         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8450         because NDEBUG is defined (see man assert)
8451         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8452
8453 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8454
8455         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8456         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8457
8458 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8459
8460         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8461         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8462
8463 2003-02-18    <johan AT balder>
8464
8465         * as/mcs51/asmain.c (asmbl): module can start with a digit
8466         * as/z80/asmain.c (asmbl): module can start with a digit
8467
8468 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8471         * src/asm.c: fix pipe() for Mingw32
8472
8473 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8474
8475         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8476         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8477         make -V work again; --c1mode reads now from stdin
8478         * doc/sdccman.lyx: added --c1mode
8479         * support/Util/SDCCerr.c: new messages for c1 mode
8480         * support/Util/SDCCerr.h: new messages for c1 mode
8481         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8482
8483 2003-02-15    <johan AT balder>
8484
8485         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8486
8487 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         * doc/sdccman.lyx: Environment variables, -o and other minor things
8490
8491 2003-02-14    <johan AT balder>
8492
8493         * src/xa51/main.c: before anyone really tries to use it :)
8494
8495         * Install doc's in share/sdcc/doc
8496         * removed some obsolete files
8497         * Do a proper make distclean and uninstall
8498         M Makefile.common.in
8499         R sdccbuild.sh
8500         M as/Makefile
8501         M device/include/Makefile.in
8502         M device/lib/Makefile.in
8503         M doc/sdccman.lyx
8504         M link/Makefile
8505         M sim/ucsim/doc/Makefile.in
8506         M src/clean.mk
8507         R src/avr/peeph.rul
8508         R src/xa51/peeph.rul
8509         M support/cpp2/Makefile.in
8510         M support/makebin/Makefile
8511
8512
8513 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8514
8515         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8516
8517 2003-02-10  Borut Razem <borut.razem AT siol.net>
8518
8519         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8520         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8521         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8522         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8523         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8524         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8525         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8526         src/z80/Makefile.bcc: Borland Makefile cleanup
8527         * as/z80/Makefile.bcc: Added Borland Makefile
8528         * support/cpp2/borland.h: Removed
8529
8530 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8531
8532         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8533         * src/SDCC.lex: new pragma NOIV
8534         * src/SDCCglobl.h: new pragma NOIV
8535         * src/SDCCmem.c: new pragma NOIV
8536
8537 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8538
8539         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8540
8541 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8542
8543         * src/SDCCmain.c: signal handling is switched off by --debug
8544         * doc/Makefile: small fix for install; use clean.mk again
8545         * doc/clean.mk: clean *.pdf and *.html too
8546
8547 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8548
8549         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8550         * device/lib/printfl.c: fix a ds390 bug by making it portable
8551         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8552         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8553         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8554         * debugger/mcs51/cmd.c: converted multi-line string literals
8555         * sim/ucsim/globals.cc: converted multi-line string literals
8556         * src/SDCCmain.c: introduced signal handler to remove temp files
8557         * doc/Makefile: small tweaks, implement clean
8558         * doc: removed generated files
8559
8560 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8561
8562         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8563         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8564         Address Record is not correctly generated for DS390."
8565
8566 2003-02-02  Borut Razem <borut.razem AT siol.net>
8567
8568         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8569         * as/mcs51/asm.h: fixed compilation with Borland C
8570         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8571         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8572         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8573         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8574         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8575         src/z80/Makefile.bcc: delete $(LIB) only if exist
8576         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8577
8578 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8579
8580         * device/include/malloc.h: introduced NULL
8581         * device/include/string.h: introduced NULL
8582         * device/include/stdlib.h: introduced NULL
8583         * device/lib/_memcpy.c: removed NULL
8584         * device/lib/_strcat.c: removed NULL
8585         * device/lib/_strchr.c: removed NULL
8586         * device/lib/_strcmp.c: removed NULL
8587         * device/lib/_strcpy.c: removed NULL
8588         * device/lib/_strcspn.c: removed NULL
8589         * device/lib/_strlen.c: removed NULL
8590         * device/lib/_strncat.c: removed NULL
8591         * device/lib/_strncmp.c: removed NULL
8592         * device/lib/_strncpy.c: removed NULL
8593         * device/lib/_strpbrk.c: removed NULL
8594         * device/lib/_strrchr.c: removed NULL
8595         * device/lib/_strspn.c: removed NULL
8596         * device/lib/_strstr.c: removed NULL
8597         * device/lib/_strtok.c: removed NULL
8598         * device/lib/malloc.c: removed NULL, include own header
8599
8600 2003-02-02    <johan AT balder>
8601
8602         * 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
8603         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8604         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8605         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8606         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8607         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8608
8609 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8610
8611         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8612         area 'DATA'"
8613
8614 2003-02-01    <johan AT balder>
8615
8616         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8617
8618 2003-01-31    <johan AT CP255758-A>
8619
8620         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8621
8622 2003-01-30    <johan AT balder>
8623
8624         * src/SDCCBBlock.c: automatic bug detection
8625         * src/SDCCicode.c: automatic bug detection
8626
8627 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8628
8629         * src/SDCCglobl.h:   now --xram-size 0 works
8630         * src/SDCCmain.c:    now --xram-size 0 works
8631
8632 2003-01-29    <johan AT balder>
8633
8634         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8635
8636 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8637
8638         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8639         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8640         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8641         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8642         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8643         * src/SDCCmain.c:    Added options --xram-size and --code-size
8644
8645 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8646
8647         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8648         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8649
8650 2003-01-27    <johan AT balder>
8651
8652         * src/SDCC.y: fixed bug #613764
8653
8654 2003-01-26    <johan AT balder>
8655
8656         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8657         * src/SDCCsymt.h: fixed bug #673374
8658         * src/SDCCglue.c: fixed bug #661910
8659         * src/SDCCast.c: fixed bug #458099 and 673374
8660
8661 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8662
8663         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8664         * as/mcs51/strcmpi.h: added
8665         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8666         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8667         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8668         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8669         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8670         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8671         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8672         * as/mcs51/Makefile.aslink: new module strcmpi
8673         * as/mcs51/Makefile.asx8051: new module strcmpi
8674         * as/mcs51/Makefil.bcc: new module strcmpi
8675         * as/mcs51/Makefile.in: new module strcmpi
8676         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8677
8678 2003-01-26    <johan AT balder>
8679
8680         * src/SDCCglue.c: reverted back to 1.124
8681         * src/SDCCast.c: reverted back to 1.156
8682         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8683
8684 2003-01-25    <johan AT balder>
8685
8686         * src/SDCCglue.c: A better fix for bug #661910
8687         * src/SDCCast.c: A better fix for bug #661910
8688         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8689
8690 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8691
8692         * src/Makefile.in: remove spawn.o
8693         * src/SDCCmain.c: remove spawn.h
8694         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8695         * src/spawn.c: removed
8696         * src/spawn.h: removed
8697         * support/regression/ports/ds390/spec.mk: link with -r
8698
8699 2003-01-24    <johan AT CP255758-A>
8700
8701         * src/ds390/gen.c (aopOp): fixed bug #667458
8702         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8703         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8704         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8705
8706 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8707
8708         * src/mcs51/peeph.def: better assembler identation by Frieder
8709         * src/mcs51/gen.c: better assembler identation by Frieder
8710
8711 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8712
8713         * as/z80/string.h: removed for gcc 3.2
8714         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8715         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8716
8717 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8718
8719         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8720         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8721         * support/regression/Makefile: separate temp files for ports
8722         * support/regression/generate-cases.py: separate temp files for ports
8723         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8724         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8725
8726 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * moved tinitalk to device/examples/ds390
8729
8730 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8731
8732         * as/mcs51/lkmem.c: rflag is for DS390
8733         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8734         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8735                          (linkEdit): move mem- and map-files the same way as ihx-files
8736         * src/z80/main.c (_setDefaultOptions): removed --generic
8737         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8738         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8739         * src/pic/glue.c (picglue): --c1mode works again
8740         * src/pic16/glue.c (pic16glue): --c1mode works again
8741         * src/asm.c (printCLine): fix #660034
8742
8743 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8744
8745         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8746         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8747         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8748         * as/mcs51/lkmem (summary): better fix for sp problem
8749         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8750         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8751         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8752                                               remove --stack-after-data
8753
8754 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8757         * src/SDCCutil.c (join): ugly bug: missing '\0'
8758         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8759
8760 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8761
8762         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8763         * src/port.h: typo
8764         * src/pic/main.c (_asmCmd): gpasm supports -o
8765         * src/z80/main.c: more general macros
8766         * device/lib/Makefile.in: remove intermediate files
8767
8768 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8769
8770         * .version: Bumped version number to 2.3.3
8771         * src/SDCCBBlock.c: new option -o
8772         * src/SDCCglobl.h: new option -o
8773         * src/SDCCglue.c: new option -o
8774         * src/SDCCmain.c: new option -o
8775         * src/asm.c: new option -o
8776         * src/ds390/main.c: new option -o
8777         * src/pic/glue.c: new option -o
8778         * src/pic/pcode.c: new option -o
8779         * src/pic/ralloc.c: new option -o
8780         * src/pic16/glue.c: new option -o
8781         * src/pic16/pcode.c: new option -o
8782         * src/pic16/ralloc.c: new option -o
8783         * src/z80/main.c: new option -o
8784         * device/lib/Makefile.in: use -o
8785         * support/regression/ports/ds390/spec.mk: use -o
8786         * support/regression/ports/gbz80/spec.mk: use -o
8787         * support/regression/ports/mcs51/spec.mk: use -o
8788         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8789         * support/regression/ports/z80/spec.mk: use -o
8790         * support/regression/ports/ucz80/spec.mk: use -o
8791         * support/regression/ports/xa51/spec.mk: use -o
8792         * support/regression/fwk/lib/timeout.c: fix usage string
8793
8794 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8795         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8796
8797 2003-01-07    <johan AT balder>
8798
8799         * src/SDCCast.c (decorateType): fixed bug #600035
8800
8801 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8802         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8803         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8804         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8805         * src/pic/pcode.c: outcommented unused variable to remove warnings
8806         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8807
8808 2003-01-06    <karl AT turbobit.com>
8809         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8810    regression tests.
8811
8812 2003-01-06    <johan AT balder>
8813
8814         * src/SDCCicode.c: fixed array add
8815
8816 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8817         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8818         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8819
8820 2003-01-04    <johan AT balder>
8821
8822         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8823
8824 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8825         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8826
8827 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8828         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8829         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8830
8831 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8832         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8833
8834 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8835         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8836
8837 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8838         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8839
8840 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8841
8842     * in \sdcc\as\mcs51\ changed these files in order to create an
8843     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8844     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8845     following files to include the previous two files: aslink.dsp,
8846     Makefile.aslink, Makefile.bcc, and Makefile.in.
8847
8848     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8849     .adb instead of .cdb
8850
8851 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8852
8853         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8854         value from option --iram-size.
8855
8856 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8857
8858         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8859         dram[] array.
8860
8861 2002-09-18    <wiml AT hhhh.org>
8862
8863         * SDCClrange.h: exposed setFromRange() and setToRange()
8864         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8865           packRegsForAccUse() (bug 542397)
8866         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8867           multiple times and emitting the fetch operations more than once
8868           added aopGetUsesAcc() function to allow binary operators to
8869           fetch their operands in the correct order; made genMinus() emit
8870           compact code for X = LITERAL - Y
8871
8872 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8873         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8874         sprintf() in line 1267.
8875
8876 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8877         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8878         like ports.
8879
8880 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8881         Changes to aslink (All the changes are marked with 'JCF'):
8882
8883         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8884         summary().
8885
8886         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8887         area BSEG.  Also moves, if possible, the DATA area down into the internal
8888         ram so more space is available.
8889
8890         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8891         sflag.
8892
8893         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8894         not bytes.  Function summary() which creates a memory usage summary
8895         file with extension .mem.  Reports of overlaping stack and small stack
8896         size.  If the space for the stack is less than 16 bytes aslink trows a
8897         warning.
8898
8899         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8900         the 8051.  Option 'y' for memory summary output file.
8901
8902         Changes to sdcc (All the changes are marked with 'JCF'):
8903
8904         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8905
8906         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8907         overlaying area for it (uses RegBankUsed[4]).
8908
8909         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8910         bank zero as used by default.  By default aslink locates the stack
8911         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8912         the creation of the .mem file.  Delegates the allocation of data area
8913         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8914         the begining of the stack area to aslink.
8915
8916         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8917         glue() in SDCCglue.c creates an area for it.
8918
8919 2002-09-03  Borut Razem <borut.razem AT siol.net>
8920         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8921         sdcc/src/pic/glue.c:
8922         introduced atexit() handler for teporay files removal in case of
8923         errors, assertions, ...
8924
8925 2002-08-29  Borut Razem <borut.razem AT siol.net>
8926         * sdcc/support/cpp2/auto-host_vc_in.h:
8927         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8928         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8929         Maybe there is a similar problem with BORLANDC? It should be checked!
8930
8931         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8932         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8933         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8934         was not executed, and the compiler (cl) launched a warning:
8935         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8936
8937 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8938         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8939
8940 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8941         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8942
8943         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8944           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8945           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8946           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8947           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8948           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8949           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8950         - added Release configuration in VS projects
8951         - review of compiler an linker options
8952         - VC .exe files are generated in bin_vc directory, not to interfere
8953           with binaries generated from other projects (cygwin, mingw, bcc ...)
8954
8955         * sdcc/src/yacc.dsp: added
8956
8957         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8958         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8959         and insert the version number definitions from .version
8960
8961         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8962
8963         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8964         added - genarate auto-host.h using auto-host_vc_in.h as template
8965
8966         * sdcc/sdcc_vc.h,
8967         removed from CVS, generated automatically
8968
8969 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8970         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8971
8972 2002-08-11  Borut Razem <borut.razem AT siol.net>
8973         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8974
8975 2002-08-10  Borut Razem <borut.razem AT siol.net>
8976         * src/SDCCmain.c (main):
8977         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8978         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8979         The consequence was that some temporary files were not removed.
8980
8981         * src/SDCCglue.c:
8982         unification of code in functions tempfilename() and tempfile():
8983         function tempnam() is defined in Visual Studio 6.0 and .NET
8984
8985         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8986
8987         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8988           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8989         - removed compiler command line option /WX: Treats all warnings as errors
8990         - update a list of source files, included into the project
8991
8992         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8993           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8994         changed project type to Generic Project so that can be correcly converted to VS.NET project
8995
8996         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8997
8998         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8999
9000         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
9001
9002         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9003         added return 0 statements after assert() to make compiler happy
9004
9005         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9006         added newline in the def file to keep MSC compiler satisfied
9007
9008         * sdcc/src/z80/gen.c:
9009         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9010           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9011         - solved MSC error in function aopDump()
9012
9013         * sdcc_vc.h: define PREFIX as "\\sdcc"
9014
9015 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9016         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9017
9018 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9019         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9020         - Rewrote the register banking algorithm.
9021         - Added pCode live-range analysis to registers (for now, only non-used and
9022         singly-used registers optimized away)
9023
9024         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9025
9026         * 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.
9027
9028 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9029         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9030
9031 2002-04-22  Michael Hope  <michaelh AT vroom>
9032
9033         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9034
9035         * configure.in (DD_COPT): Added include support required for gbdk.
9036
9037         * .version: Bumped version number just to increase it.
9038
9039         * src/SDCCmain.c: Added -nostdinc to the default options.
9040
9041 2002-04-15  Michael Hope  <michaelh AT vroom>
9042
9043         * device/lib/z80/printf.c (sprintf): Added.
9044
9045         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9046
9047         * src/z80/peeph.def: Added transpose redundent load rule.
9048
9049         * src/z80/main.c: Added force callee saves for jaune.
9050
9051         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9052
9053         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9054
9055 2002-03-28  Johan Knol  <johan AT balder>
9056
9057         * src/SDCCval.c: fixed bug #532436
9058
9059 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9060         * /src/port.h:
9061         Added "char *Processor" field to the port structure.
9062
9063         * /src/SDCCmain.c:
9064         Added -p option. Allows port dependent processor to be specified.
9065
9066         * all ports:
9067         Initialized the new field char *Processor field to NULL in all ports
9068
9069         * /src/pic/*:
9070         Compiler generated registers for interrupt context saving
9071         were not getting allocated.
9072
9073 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9074
9075         * /src/SDCCast.c:
9076         Fixed left shift. Will promote the left side of a left shift
9077         if a) left shifting more than size of operand or b) when assigned
9078         to something size > size of left side
9079
9080 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9081         * src/pic/*
9082         tons of changes. Register allocation has been
9083         rewritten. Added customization for the various PICs. Flow
9084         analysis is restructured. ...
9085
9086         * src/pic/device.h:
9087         Added
9088
9089         * src/pic/device.c:
9090         Added. device.c is a PIC port hack to accomodate variations
9091         in PIC devices.
9092
9093 2002-03-13  Michael Hope  <michaelh AT vroom>
9094
9095         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9096
9097 2002-03-04  johanknol  <johanknol AT manik>
9098
9099         * /src/SDCCval.c: fixed
9100
9101         const unsigned char arr[][2] = { { 0, 1 } };
9102         t18.c:1: error: Initializer element is not constant
9103
9104 2002-03-04  bela  <bela AT manik>
9105
9106         * /device/include/mcs51reg.h:
9107         ds89c420 register definition update
9108
9109 2002-03-03    <johan AT FRIJA>
9110
9111         * support/Util/SDCCerr.c: did something, but don't no why anymore
9112
9113         * support/regression/tests/bug-524691.c: made it a little less shy
9114
9115         * src/SDCCast.c (decorateType): fixed bug #524697
9116
9117         * src/SDCCast.c: made some lineno improvements
9118
9119         * src/SDCCval.c (getNelements): changed warning to error
9120
9121         * src/SDCCglue.c (printIvalArray): changed warning to error
9122
9123         * src/SDCCicode.c: fixed a warning for mingw
9124
9125         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9126
9127         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9128
9129 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9130
9131         * src/ds390/peeph.def:
9132         Added some more peephole rules
9133
9134         * src/ds390/gen.c: Various fixes & enhancements
9135
9136         * src/SDCClrange.c, src/SDCClrange.h:
9137         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9138
9139         * src/ds390/ralloc.c:
9140         various fixes & enhancements (ds390) specific
9141
9142         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9143         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9144         from rallocs.
9145
9146         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9147
9148 2002-03-02    <johan AT FRIJA>
9149
9150         * src/SDCCast.c (decorateType): fixed bug #524708
9151
9152         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9153
9154         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9155
9156 2002-03-01  Michael Hope  <michaelh AT vroom>
9157
9158         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9159
9160         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9161
9162 2002-03-01    <johan AT FRIJA>
9163
9164         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9165
9166         * src/SDCCast.c (decorateType): fixed bug #524209
9167
9168         * src/SDCCval.c (valNot): fixed bug #524195
9169
9170 2002-02-26    <johan AT balder>
9171
9172         * src/xa51/gen.c: fixed a warning
9173
9174         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9175
9176         * src/SDCCast.c (decorateType): fixed bug #522534
9177
9178 2002-02-23    <johan AT balder>
9179
9180         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9181
9182 2002-02-22    <johan AT balder>
9183
9184         * src/SDCCast.c: fixed bug #514865
9185
9186         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9187
9188 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9189
9190         * sdcc/src/SDCCloop.c:
9191         Previous fix was not good. basic blocks that have "break" or "return" are
9192         not really partof a loop , but live ranges used in these blocks should
9193         be live thru the entire loop, so set partOfLoop but don't add them to
9194         loop region
9195
9196 2002-02-21    <johan AT FRIJA>
9197
9198         * src/SDCCcse.c: fixed bug #514308
9199
9200 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9201
9202         * src/SDCCloop.c:
9203         Fixed BUG #519583. If a conditional block ended in a return/break
9204         statement inside a loop, it was not being considered part of the loop.
9205
9206         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9207
9208 2002-02-10  Karl Bongers <karl AT turbobit.com>
9209
9210         * debugger/*:
9211         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9212         with lots of comments and notes.
9213
9214         * device/examples/test2.c:
9215         Fix bug, "red" variable not being initialized(compiler complained).
9216
9217         * device/examples/Makefile, examples/test3.c:
9218         Add Makefile in device/examples folder, compiles test3.c
9219         for use as a multiple module SDCDB test case.
9220
9221         * sim/ucsim/cmd.src/cmdset.cc:
9222         Took out debug printfs in ucsim "next" command.
9223
9224         * sim/ucsim/xa.src:
9225         Karl and Johan start ucsim XA support.  Most dissassembly working,
9226         about 75% emulation done(plenty of work remaining).
9227
9228         * sim/ucsim/z80.src:
9229         Add Z80 support to ucsim, add test-ucz80 regression test,
9230         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9231         Notice z80 compiler fails on examples/test3.c/crc code.
9232
9233 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9234
9235         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9236         Added support for --parms-in-bank1
9237
9238         * src/ds390/peeph.def:
9239         added a few more peephole optimzations
9240
9241         * src/ds390/main.c:
9242         1) added __builtin_inp & __builtin_outp used to read in data of given length
9243            from a memory mapped port
9244         2) added __builtin_memcmp
9245         3) added __builtin_swapw swap bytes of a short
9246
9247         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9248         1) handle multiple send & receives from register bank1
9249         2) ralloc can now allocate DPTR1 to some liveRanges
9250
9251         * src/SDCCsymt.c, src/SDCCsymt.h:
9252         changes to handle multiple sends & receives
9253
9254         * src/SDCCptropt.h:
9255         added some pointer arithmetic optimization
9256
9257         * src/SDCCptropt.c:
9258         added some pointer arithmetic optimizations but not stable yet so not
9259         called from anywhere (will get this working shortly)
9260
9261         * src/SDCCopt.c: fixed for multiple sends & receives
9262
9263         * src/SDCCmain.c:
9264         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9265         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9266            set preprocessor defines (depending on options)
9267
9268         * src/SDCCicode.c, src/SDCCicode.h:
9269         changes made to handle multiple sends & receives
9270
9271         * src/SDCCglobl.h:
9272         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9273
9274         * src/SDCCcse.c, src/SDCCcse.h:
9275         added function findbackward def (to be used in upcoming optimization)
9276
9277         * src/SDCCcflow.c, src/SDCCcflow.h:
9278         added function returnAtEnd - to determine if a basic block terminates with
9279         a RETURN iCode
9280
9281         * src/SDCCast.c, src/SDCCast.h:
9282         added option parms-in-bank1
9283
9284         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9285         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9286         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9287         adjusted for --parms-in-bank1 option
9288
9289         * device/include/string.h:
9290         donot redefine "reentrant" keyword
9291
9292         * device/include/ds80c390.h: Added some more SFRs
9293
9294 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9295
9296         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9297
9298 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9299
9300         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9301
9302 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9303
9304         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9305
9306 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9307
9308         * Added --xram-movc option
9309
9310 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9311
9312         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9313
9314 2002-01-11  Johan Knol
9315
9316         * Added math lib of Jesus Calvino-Fraga
9317
9318 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9319
9320         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9321         * support/regression/Makefile: new target test-mcs51-stack-auto
9322         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9323
9324 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9325
9326         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9327
9328 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9329
9330         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9331
9332 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9333
9334         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9335
9336         * src/SDCCglue.h: add definition for printIvalChar()
9337
9338 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9339
9340         * src/SDCCast.c: fix #498138 by Johan
9341
9342         * src/SDCCglue.c: fix #498138 by Johan
9343
9344 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9345
9346         * support/regression/Makefile: fix clean
9347
9348         * support/regression/ports/ds390/support.c: fix transmission of last character
9349
9350 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9351
9352         * /sdcc/src/ds390/gen.c:
9353         a) improved computing address of stack variable
9354         b) took out some #if 0 code
9355         c) improved parmBytes adjustment
9356         d) improved genPlusIncr & genMinusIncr
9357         e) genCmp could generate bad code (when left assigned to DPTR)
9358         f) Fixed bug in hasInc
9359
9360         * /sdcc/src/ds390/ralloc.c:
9361         a) packRegsForSupport could mess up live information (Fixed)
9362         b) packRegsDPTRuse could be incorrect for left & right shift
9363
9364         * /sdcc/src/mcs51/ralloc.c:
9365         packRegsForSupport could mess up the live information (Fixed)
9366
9367         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9368
9369         * /sdcc/src/SDCCast.c:
9370         can reverse a loop even if function call is present as long
9371         as the loop control variable is local & is not passed as parameter
9372
9373 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9374
9375         * /sdcc/ChangeLog: *** empty log message ***
9376
9377         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9378         More builtin function additions for TININative
9379
9380         * /sdcc/src/ds390/ralloc.c:
9381         Had broken the regression testsuite
9382
9383         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9384
9385         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9386         Added funcattr hasStackParms will be set for reentrant functions when there
9387         are paramteres on the stack, this helps in minimizing frame pointer generation
9388         typeFromStr can handle function pointers now
9389
9390         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9391         *** empty log message ***
9392
9393 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9394
9395         * /src/ds390/gen.c, /src/ds390/main.c:
9396         More builtin function additions for TININative
9397
9398         * /src/ds390/ralloc.c:
9399         Had broken the regression testsuite
9400
9401         * /src/SDCCast.c: Fixed a bug in dumptree
9402
9403         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9404         Added funcattr hasStackParms will be set for reentrant functions when there
9405         are paramteres on the stack, this helps in minimizing frame pointer generation
9406         typeFromStr can handle function pointers now
9407
9408         * /doc/builtins.txt, /doc/TININative.txt:
9409         *** empty log message ***
9410
9411
9412 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9413
9414         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9415         ALPHA version for -mTININative
9416
9417         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9418         updated to reflect changes in the port structure
9419
9420         * /src/port.h:
9421         added function do_assemble (similar to do_link) if non-null this function
9422         will be called to do assembly (-mTININative) requires a multi command
9423         assembly
9424         added function genAssemblerEnd will be called to generate assembler Epilogue
9425
9426         * /src/SDCCsymt.c:
9427         added _JavaNative to debug info printing
9428
9429         * /src/SDCCmain.c: added option --tini-libid
9430         added port->do_assemble function (-mTININative) has a multi command assemble
9431
9432         * /src/SDCCglue.c: Disabled "constExpr" check
9433         added port->genAssemblerEnd function
9434
9435         * /src/SDCCglobl.h: Added option --tini-libid value
9436
9437         * /src/SDCCast.h:
9438         tookout optimizeCompare from the header (has no external references)
9439
9440         * /src/SDCCast.c: made one more function "static"
9441
9442 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9443
9444         * src/z80/mappings.i: Added z80asm support.
9445
9446         * src/z80/main.c: Added z80asm support on --asm=z80asm
9447
9448         * src/z80/gen.c: Fixed asm portability issues.
9449
9450         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9451
9452         * src/SDCCglue.c (printExterns): Added global/extern split.
9453
9454 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9455
9456         * support/regression/Makefile: added test for mcs51 model large
9457
9458         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9459
9460         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9461
9462 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9463
9464         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9465
9466 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9467
9468         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9469
9470         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9471
9472 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9473
9474         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9475
9476         * support/regression/tests/simplefloat.c: Port to mcs51.
9477
9478 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9479         * support/regression/tests/bug-485362.c: Added.
9480
9481         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9482
9483         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9484
9485         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9486
9487         * src/z80/gen.c (aopDump): Added a dump function.
9488
9489 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9490         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9491
9492         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9493
9494         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9495
9496         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9497
9498         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9499
9500         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9501
9502         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9503
9504         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9505
9506         * support/regression/ports/ds390/support.c: Use tinibios.
9507
9508         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9509
9510 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9511
9512         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9513         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9514
9515         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9516
9517         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9518
9519 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9520
9521         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9522
9523         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9524         (packRegsForIYUse): Created and optimised.
9525
9526 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9527
9528         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9529 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9530
9531         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9532
9533         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9534
9535         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9536
9537 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9538
9539         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9540
9541         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9542
9543 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9544
9545         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9546
9547         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9548
9549         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9550
9551 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9552
9553         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9554         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9555         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9556
9557         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9558
9559         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9560         (genNotFloat): Added.
9561         (genUminusFloat): Added.
9562
9563         * device/lib/z80/Makefile: Added floating pt stubs.
9564
9565         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9566
9567         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9568
9569         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9570
9571 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9572
9573         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9574
9575         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9576
9577         * sdcc/support/regression/Makefile: Add port ds390.
9578
9579         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9580
9581         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9582
9583         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9584
9585         * sdcc/support/regression/ports/ds390/support.c: Added.
9586
9587         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9588
9589         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9590
9591         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9592
9593 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9594
9595         * device/include/malloc.h: Added z80 and gbz80 support.
9596
9597         * device/lib/gbz80/heap.s: Added.
9598
9599         * device/lib/z80/heap.s: Added.
9600
9601         * device/lib/malloc.c: Added z80 and gbz80 support.
9602
9603         * support/regression/tests/malloc.c (testMalloc): Added.
9604
9605         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9606
9607         * support/regression/tests/bug-478094.c: Added.
9608
9609         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9610
9611 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9612
9613         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9614
9615         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9616
9617         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9618
9619         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9620
9621         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9622
9623 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9624
9625         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9626
9627 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9628
9629         * support/regression/tests/bug-477927.c: Added.
9630
9631         * src/z80/peeph.def: Added minor rules.
9632
9633         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9634
9635         * src/z80/peeph.def: Added jump optimisation modification.
9636
9637 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9638
9639         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9640
9641 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9642
9643         * support/regression/tests/funptrs.c: Added.
9644
9645 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9646
9647         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9648
9649 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9650
9651         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9652
9653         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9654
9655         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9656         (movLeft2ResultLong): Created.
9657
9658         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9659         (joinPushes): Added.  Joins two char pushes into a word push.
9660
9661 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9662
9663         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9664
9665         * support/makebin/Makefile (install): Added creation of dest dir.
9666
9667 2001-10-24 Karl Bongers <karl AT turbobit.com>
9668
9669         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9670
9671 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9672
9673         * src/z80/ralloc.c: Turned off faulty pack for one use.
9674
9675         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9676
9677         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9678
9679 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9680
9681         * support/regression/Makefile: Improved clean
9682
9683         * support/regression/ports/gbz80/spec.mk: Added clean
9684
9685         * support/regression/ports/host/spec.mk: Added clean
9686
9687         * support/regression/ports/z80/spec.mk: Added clean
9688
9689         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9690
9691         * support/regression/ports/mcs51/timeout.c: little improvements
9692
9693 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9694
9695         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9696
9697         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9698
9699         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9700
9701 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9702
9703         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9704
9705         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9706
9707 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9708         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9709
9710         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9711
9712         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9713
9714         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9715
9716         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9717
9718         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9719
9720         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9721
9722         * support/regression/tests/longor.c: Added.
9723
9724 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9725
9726         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9727
9728         * as/mcs51/aslink.h: define PATH_MAX
9729
9730         * as/mcs51/asm.h: define PATH_MAX
9731
9732         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9733
9734         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9735
9736         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9737
9738         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9739
9740         * src/SDCCglobl.h: define PATH_MAX
9741
9742         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9743
9744         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9745
9746 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9747
9748         * src/z80/gen.c (gencjneshort): Fixed
9749
9750         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9751
9752 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9753
9754         * support/regression/tests/bug-469671.c: Added.
9755
9756         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9757
9758 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9759
9760         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9761
9762         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9763
9764 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9765
9766         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9767
9768         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9769
9770         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9771
9772         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9773
9774         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9775
9776         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9777
9778         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9779
9780 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9781
9782         * 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.
9783
9784         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9785
9786         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9787
9788 2001-10-07    <johan AT FRIJA>
9789
9790         * device/lib/gets.c (gets): fixed the return value.
9791
9792 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9793         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9794
9795         * 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.
9796
9797         * 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.
9798
9799         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9800
9801         * src/pic/gen.c: Removed Safe_strdup.
9802
9803         * configure.in: Added option to enable libgc support.
9804
9805         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9806         (bitVectUnion): Optimised.
9807         (bitVectIntersect): Optimised.
9808         (bitVectBitsInCommon): Optimised.
9809         (bitVectCplAnd): Optimised.
9810
9811         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9812
9813 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9814
9815         * src/SDCCmain.c: distinguish between assembler debug and plain options
9816
9817         * src/avr/main.c:   remove standard assembler options
9818
9819         * src/ds390/main.c: remove standard assembler options
9820
9821         * src/mcs51/main.c: remove standard assembler options
9822
9823         * src/port.h: removed "PENDING" comment
9824
9825 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9826
9827         * src/device/lib/_mulint.c  : new, with assember functions
9828
9829         * src/device/lib/_mullong.c : new, with assember functions
9830
9831         * src/device/lib/_divuint.c : with assember functions
9832
9833         * src/device/lib/_divsint.c : with assember functions
9834
9835         * src/device/lib/_divulong.c: with assember functions
9836
9837         * src/device/lib/_divslong.c: with assember functions
9838
9839         * src/device/lib/_moduint.c : with assember functions
9840
9841         * src/device/lib/_modsint.c : with assember functions
9842
9843         * src/device/lib/_modulong.c: with assember functions
9844
9845         * src/device/lib/_modslong.c: with assember functions
9846
9847         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9848
9849         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9850
9851         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9852                                       replaced _mululong.c and _mulslong.c by _mullong.c
9853
9854 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9855
9856         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9857
9858 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9859
9860         * src/SDCCglue.c: test, if win32api is available for MINGW
9861
9862 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9863
9864         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9865         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9866         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9867         * support/regression/ports/host/spec.mk: removed GENERIC
9868         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9869         * support/regression/ports/z80/spec.mk: removed GENERIC
9870
9871 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9872
9873         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9874
9875         * support/regression/tests/bug-467035.c: Created.
9876
9877 2001-10-01    <johan AT FRIJA>
9878
9879         * src/SDCC.y: fixed bug #466586 part 1
9880
9881 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9882
9883         * SDCCicode.c: z80 has no generic pointers
9884         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9885
9886 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9887
9888         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9889
9890 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9891
9892         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9893
9894         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9895
9896 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9897
9898         * configure.in: Fixed up so that ucsim is only configured once.
9899
9900         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9901
9902         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9903         (getPathDifference): As above.
9904
9905         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9906
9907         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9908
9909 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9910         * .version: Updated to 2.3.1
9911
9912         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9913         Added copyright header.
9914
9915         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9916         (assemble): Added support for macro based assembler commands.
9917         (linkEdit): Added support for macro based linker commands.
9918         (preProcess): Changed the pre-processor to use macros.
9919         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9920         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9921
9922         * device/lib/z80/crt0.s: Added module name for debugging.
9923
9924 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9925
9926         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9927
9928         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9929
9930         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9931
9932         * src/Makefile.in: Added SDCCmacro and SDCCutil
9933
9934 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9935
9936         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9937
9938 2001-09-16    <johan AT FRIJA>
9939
9940         * 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.
9941
9942 2001-09-15    <johan AT FRIJA>
9943
9944         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9945         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9946
9947 2001-09-11    <johan AT FRIJA>
9948
9949         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9950
9951 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9952
9953         * support/regression/tests/bug-460444.c: Added test case.
9954
9955         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9956         (genCast): Added justification for all of the asserts.
9957
9958 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9959
9960         * support/regression/support.c: _xdata replaced by xdata
9961
9962         * support/regression/spec.mk: removed _generic
9963
9964 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9965
9966         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9967
9968         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9969         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9970
9971         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9972
9973         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9974
9975         * support/regression/tests/bug-460010.c: Added test case.
9976
9977         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9978
9979 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9980
9981         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9982
9983         * support/regression/testfwk.c: removed workaround for bug #436344
9984
9985         * support/regression/tests/bp.c: use less memory with mcs51
9986
9987         * support/regression/tests/bug-441448.c: use less memory
9988
9989         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9990
9991         * support/regression/collate-results.py: typo
9992
9993 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9994
9995         * support/regression/tests/fetchoverlap.c: Added new test case.
9996
9997         * support/regression/tests/bp.c: Added new test case.
9998
9999         * support/regression/tests/bug-448984.c: Added new test case.
10000
10001         * support/regression/tests/pow2shifts.c: Added new test case.
10002
10003         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10004         (genlshTwo): Fixed right shift for count > 8.
10005
10006         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10007
10008 2001-09-08    <johan AT FRIJA>
10009
10010         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10011
10012 2001-09-07    <johan AT FRIJA>
10013
10014         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10015
10016         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10017
10018 2001-09-06    <johan AT FRIJA>
10019
10020         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10021         * bernhard noted me at this: "() equals to (void)" (1.38)
10022
10023 2001-09-05    <johan AT FRIJA>
10024
10025         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10026
10027 2001-09-04    <johan AT FRIJA>
10028
10029         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10030
10031
10032 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10033
10034         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10035
10036 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10037
10038         * link/z80/aslink.h: Fixed path for PATH_MAX
10039
10040 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10041
10042         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10043
10044         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10045
10046         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10047
10048         * 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.
10049
10050 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10051
10052         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10053         (genCmp): Fixed up genCmp for the GB with longs.
10054
10055         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10056
10057         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10058
10059         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10060
10061         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10062
10063 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10064
10065         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10066
10067 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10068
10069         * 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.
10070
10071         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10072
10073 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10074
10075         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10076
10077         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10078
10079 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10080
10081   * sim/ucsim/configure:    little improvement of Cygwin-detection
10082   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10083   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10084   * support/regression/tests/bug-221100.c: small changes for mcs51
10085   * support/regression/tests/bug-221168.c: small changes for mcs51
10086   * support/regression/tests/bug-227710.c: small changes for mcs51
10087   * support/regression/tests/staticinit.c: small changes for mcs51
10088   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10089   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10090   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10091
10092 $Revision$