* src/SDCCsymt.c (compStructSize): make bitfields without (un)signed specifier unsigned
[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
6 2005-10-30 Borut Razem <borut.razem AT siol.net>
7
8         * src/SDCCutil.c: corrected double comparison typo
9
10 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * device/lib/medium/Makefile: added for new memory model medium
13         * device/include/asm/mcs51/features.h: updated for medium/pdata
14         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
15           added Multiply & Accumulate sbit's and MAC0_PAGE define
16         * device/include/mcs51/c8051f300.h: added sfr16 definitions
17         * device/include/mcs51/c8051f310.h: added sfr16 definitions
18         * device/lib/_mullong.c: update for medium model
19         * device/lib/incl.mk: added medium model
20         * doc/sdccman.lyx: documented medium model
21         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
22         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
23         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
24         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
25           (allocParms): set SCLS and OCLS to pdata for medium model
26         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
27           for pdata,
28           (powof2): return <0 if not power of 2
29         * src/avr/gen.c (genBitWise): use updated powof2
30         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
31           (shiftR2Left2Result): small optimization in setup, save acc when storing,
32           (shiftLLeftOrResult): use B if necessary
33         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
34         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
35         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
36         * support/regression/Makefile.in: added test-mcs51-medium
37         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
38
39 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
40
41         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
42         specifier unsigned
43         * device/lib/time.c (mktime): fixed bug 1334315
44
45 2005-10-28 Raphael Neider <rneider AT web.de>
46
47         * device/include/pic/p16f_common.inc: added common declarations
48         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
49
50 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
51
52         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
53           (aopPutUsesAcc): added to predict accumulator use,
54           (assignResultValue): save acc if necessary,
55           (genMinusDec): store result if indirectly addressed,
56           (genDivOneByte):  save acc if necessary,
57           (movLeft2Result): bugfix if left already in acc,
58           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
59             attention to accumulator use (esp. pdata),
60           (genReceive): receive pdata correctly
61         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
62         * src/SDCCicode.h: added isOperandInPagedSpace prototype
63
64 2005-10-27 Raphael Neider <rneider AT web.de>
65
66         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
67
68 2005-10-27 Raphael Neider <rneider AT web.de>
69
70         * .version: changed version to 2.5.4
71         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
72         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
73           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
74             arithmetics support routines
75         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
76         * device/lib/Makefile.in: also create installdir for pic
77
78         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
79           pic14 port as well
80         * src/pic/device.c (dump_sfr): rewritten to delegate register
81           placement to the linker (use `extern sym' rather than sym EQU addr),
82           (validAddress): fixed to check last specified address
83         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
84           (popGetLit): truncate literal value to 8 bit,
85           (popGet): moved assert to more appropriate place
86           (popGetExternal): create pCode operand from and mark the according
87             symbol as being `extern'
88           (popGetAddr): added sanity check on immediate's offset, provide
89             GPOINTER tag on demand
90           (aopPut): fixed for immediates,
91           (mov2w_op): move operand's address or contents to WREG (depending on
92             operand type), safer variant of mov2w,
93           (movwf,call_libraryfunc): NEW, handy abbreviations,
94           (get_argument_pcop,get_return_val_pcop,pass_argument,
95           get_returnvalue): interface for accessing function parameters and
96             return values,
97           (assignResultValuei,genRet): use new parameter/return value interface
98           (pic14_getDataSize): back to old version handling generic pointers,
99           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
100             provided implementation and/or fixed old one,
101           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
102             calls, removed legacy 8051 reference code
103           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
104           (loadSignToC): NEW, move the operands sign bit to CARRY,
105           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
106             genRightShiftSigned, accepts negative shift counts,
107           (setup_fsr): load FSR and adjust IRP (indirect memory access),
108           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
109             generic pointers, __data pointers and __code pointers,
110           (genUnpackBits,genPackBits): rewritten to work with generic pointers
111             and signed bitfields, limit bitfields to 8 bit,
112           (genDataPointerGet): fixed number of bytes read,
113           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
114           (genPointerGet,genPointerSet): fixed handling of __code pointers,
115             pointers to constant data are no longer assumed to point to __code
116             space, removed invalid pointer types,
117           (bitpatternFromVal): retrieve the PICs representation of an integer
118             or float literal,
119           (genDataPointerSet): fixed assigning to po_immediate operands,
120           (genGenPointerSet): implemented as library call,
121           (genIfx): fixed incorrect condition,
122           (genAddrOf): limit generic pointers' addresses to 2 bytes,
123             provide GPOINTER tag according to destination's storage class,
124           (genCast): added code to handle casting to generic pointers, added
125             sign-/zero extension of the result
126           (aop_isLitLike,op_isLitLike): fixed handling of immediates
127         * src/pic/gen.h: added macros to access IRP bit in STATUS register
128         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
129           extend the result
130         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
131           address/register resides in the shared banks
132           (emitSymbolToFile): improved to handle global and `pinned' symbols,
133             put all variables into separate sections (have the linker arrange
134             them)
135           (picglue): put init code and interrupt handlers in separate sections
136         * src/pic/main.c: added port specific options table, modified to PORT
137           structure to make GPOINTERs 3 byte, added pic14_options
138           (_pic14_do_link): private linking routine (update paths to libraries,
139             add libsdcc.lib by default)
140         * src/pic/main.h: declare pic14_options
141         * src/pic/pcode.c: fixed instructions i/o relations,
142           (RegCond): reverted to correct version,
143           (newpCodeOpLit): truncate literals to 8 bit,
144           (genericPrint): added debug output,
145           (getRegFromInstruction): fixed for various operand types, simplified
146           (BuildFlow): fixed broken handling of isntructions with labels
147           (LinkFlow): start at last instruction in flow (skip trailing comments),
148             pass the flow on to the next instruction after CALL
149           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
150           (insertPCodeInstruction): fixed inserting after a skip instruction,
151           (DoBankSelect): fixed for labeled instructions
152           (OptimizepBlock): honor --nopeep switch
153           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
154         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
155         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
156           (pCodeOptime2pCodes): allow disabling this optimization via
157             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
158             but is still buggy), started implementation of a dataflow based
159             pCode optimization (CSE + dead code elimination)
160           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
161         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
162           names are independant of the stack location and therefore portable across
163           devices
164
165 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
166
167         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
168           (selectSpil): fixed bug 1337835 by not spilling bit variables
169         * support/regression/tests/bug1337835.c: added test for this bug
170         * src/mcs51/peeph.def: restart after rule 3.c,
171           addded rules 263.x to optimize loading constants
172
173 2005-10-26 Raphael Neider <rneider AT web.de>
174
175         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
176         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
177           (genAssign): emit warning when casting literals to generic pointer
178             type, also applies when taking the address of a fixed variable,
179           (genCast): improved casting to generic pointers
180         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
181           extern variables, added verbose error message
182         * device/include/pic16/{string.h,errno.h}: added #pragma library c
183
184 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
185
186         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
187         carry must be complemented too
188         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
189         could be emitted by genMinus
190         * src/SDCCval.c (constVal): fixed bug 1305065
191
192 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
193
194         * src/SDCCast.c (addCast): added promotion for bit variables
195         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
196         promotion casts + optimisation
197         (optimizeGetWord): fix warning 'i' might be used uninitialized
198         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
199         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
200
201 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
202
203         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
204         all chars are promoted to int; promotion should be handled in SDCCast.c
205
206 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
207
208         * device/lib/_strcmp.c: Fixed bug 1326457
209
210 2005-10-11 Raphael Neider <rneider AT web.de>
211
212         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
213         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
214
215 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
216
217         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
218         * support/regression/tests/sfr16.c: added test for the sfr32 bug
219
220 2005-10-04 Raphael Neider <rneider AT web.de>
221
222         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
223           device/lib/pic16/pics.all: added pic18f1320
224         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
225
226 2005-09-30 Raphael Neider <rneider AT web.de>
227
228         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
229         * src/pic16/devices.inc: NEW, provides device descriptions
230         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
231
232 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
233
234         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
235           GETHBIT
236
237 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
238
239         * doc/sdccman.lyx: updated Highest Order Bit documentation,
240           documented Any Order Bit, Higher Order Byte and Higher Order Word
241         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
242         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
243           (optimizeGetAbit): new, to get any bit, not only the high bit,
244           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
245           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
246           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
247           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
248             RIGHT_OP: also try GETBYTE, GETWORD optimization,
249             GETABIT, GETBYTE, GETWORD: decorate them,
250           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
251           (ast_print): added GETABIT, GETBYTE, GETWORD
252         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
253         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
254           (geniCodeBinary): new generic binary icode,
255           (ast2iCode): added GETABIT, GETBYTE, GETWORD
256         * src/port.h: updated comment for PORT.hasExtBitOp
257         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
258           (genGetByte): new, to get a single byte,
259           (genGetWord): new, to get a word from a long,
260           (gen51Code): added GETABIT, GETBYTE, GETWORD
261         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
262
263 2005-09-23 Raphael Neider <rneider AT web.de>
264
265         * configure.in, configure: have device/lib/pic configured
266         * device/lib/Makefile.in: added model-pic14
267         * device/lib/clean.mk: added pic/ to clean rule
268         * device/lib/pic: added rudimentary pic14 library providing support
269           functions for multiplication/division/generic pointer access
270         * src/SDCCopt.c (convilong): mark support functions as extern
271           for pic14 port as well
272         * src/pic/gen.c (genMult): added assertions,
273           (genpic14Code): emit warning on unhandled iCodes
274         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
275         * src/pic/pcode.c (pCodeOpCopy),
276         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
277           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
278           SFR_REGISTER}), made safe for future extensions
279         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
280           instructions even if preceeded by SKIP instructions (also remove
281           them); removed unused code
282         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
283           prevents leaving parts of the structure uninitialized after copying
284
285 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
286
287         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
288           ago by me
289         * support/regression/tests/addsub.c: added test for the bug
290
291 2005-09-21 Raphael Neider <rneider AT web.de>
292
293         * device/include/pic16/pic18f1220.h,
294           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
295         * device/lib/pic16/Makefile.rules: added missing opening paren
296         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
297           are provided in genutils.c,
298           (genUminusFloat,genUminus,genCmpEq): added asserts on different
299           operand/result sizes,
300           (genCmp): assert on NULL pointers first, then check deref'ed values
301         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
302           result size
303
304 2005-09-18 Raphael Neider <rneider AT web.de>
305
306         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
307           as these are now unused,
308           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
309         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
310           local, avoids uninitialized pointer dereference on r->name
311         * src/pic16/ralloc.c (newReg): fixed indentation
312
313 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
314
315         * src/SDCCval.c (constVal): fixed bug 730366
316         * support/Util/SDCCerr.c,
317         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
318
319 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
320
321         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
322
323 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
324
325         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
326
327 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
328
329         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
330           (hex2dec): made hex_digit unsigned char, removed ascii dependance
331         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
332           (hex2dec): made hex_digit unsigned char, removed ascii dependance
333         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
334         * packihx/packihx.c (hexDigit): made c unsigned char
335         * as/mcs51/lklibr.c (fndsym),
336         * link/z80/lkgb.c (gb),
337         * link/z80/lklibr.c (fndsym),
338         * link/z80/lkrloc.c (relr),
339         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
340         * src/SDCC.lex (checkCurrFile, process_pragma),
341         * src/SDCCglue.c (spacesToUnderscores),
342         * src/SDCCmain.c (setParseWithComma, processFile),
343         * src/asm.c (tvsprintf, printCLine),
344         * src/avr/gen.c (emitcode, aopPut),
345         * src/ds390/gen.c (emitcode),
346         * src/hc08/gen.c (emitcode, emitinline),
347         * src/mcs51/gen.c (emitcode, genInline),
348         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
349           tokenizeLineNode),
350         * src/pic/ralloc.c (debugLog),
351         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
352           tokenizeLineNode),
353         * src/pic16/ralloc.c (debugLog),
354         * src/z80/main.c (_process_pragma):
355            made all ctype.h function calls safe
356         * src/SDCCopt.c: include math.h for fabs
357         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
358           and used them throughout the code to make ctype.h function calls safe
359         * src/ds390/main.c (asmLineNodeFromLineNode),
360         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
361         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
362            unsigned char*
363         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
364           (newpCodeAsmDir): made ctype.h function calls safe
365         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
366           pic16_emitcode):  made lbp unsigned char*
367         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
368           (pic16_newpCodeAsmDir): made ctype.h function calls safe
369         * src/xa51/gen.c (emitcode),
370         * src/z80/gen.c (_emit2): made lbp unsigned char*
371         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
372            char*
373
374 2005-09-05 Raphael Neider <rneider AT web.de>
375
376         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
377           access bank splitpoint
378
379 2005-09-05 Raphael Neider <rneider AT web.de>
380
381         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
382
383 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
384
385         * .version: changed to version 2.5.3
386         * doc/sdccman.lyx: changed version to 2.5.3,
387           documented --codeseg and --constseg and pragma codeseg and constseg,
388           documented bit parameters (reentrant) and bit returning
389         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
390            currFunc->recvSize, but is this ok for all ports?
391           (ast2iCode): result of ~ on unsigned char must be cast to int for
392            bool to work
393         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
394           function pointers in bit space
395         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
396           (processFuncArgs): call port.reg_parm() with reentrancy info
397         * src/port.h,
398         * src/avr/main.c,
399         * src/ds390/main.c,
400         * src/hc08/main.c,
401         * src/pic/main.c,
402         * src/pic16/main.c,
403         * src/xa51/main.c,
404         * src/z80/main.c: port.reg_parm prototype extended with
405           "bool reentrant" parameter
406         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
407           options.stackAuto for allocating bit register parameters
408         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
409           (genSend): set BitBankUsed if it is,
410           (selectRegBank): factored out of genCall for use in genPcall,
411           (genCall): removed redundant dtype assignmen, use selectRegBank,
412           (genPcall): handle returning in Carry properly, save in F0 if needed,
413           (genReceive): handle bit register parameters
414         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
415           (mcs51_assignRegisters): enable bit registers for all reentrant
416            functions and don't set BitBankUsed unconditionally
417         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
418         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
419         * support/regression/tests/funptrs.c: added tests for BOOL and for return
420
421 2005-08-27 Borut Razem <borut.razem AT siol.net>
422
423         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
424         ppc-osx (Darwin) does not support -u option. It seems that it is
425         supported only on Linux - GNU cp
426
427 2005-08-25 Borut Razem <borut.razem AT siol.net>
428
429         * sim/ucsim/gui.src/serio.src/Makefile.in,
430           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
431           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
432           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
433           install and strip, since the strip at /usr/ccs/bin should be used
434           on solaris
435
436 2005-08-24 Borut Razem <borut.razem AT siol.net>
437
438         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
439
440 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
441
442         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
443         ffffffffu
444
445 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
446
447         * as/mcs51/aslink.h: completed lkrloc.c prototypes
448         * as/mcs51/lkmain.c (link_main): fixed warning
449         * device/include/stdbool.h: ds390 has no advanced bit support yet
450         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
451         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
452         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
453           and updated their macros
454         * src/SDCCval.c (constVal): updated comment for renamed b_long
455
456 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
457
458         * as/mcs51/asdata.c: changed ctype['['] to BINOP
459         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
460           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
461           (oprio): set priority for '['
462         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
463            and adb_24_bit
464         * as/mcs51/asm.h: added defines R_BIT and S_BIT
465         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
466         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
467         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
468           added overlayable BIT_BANK area
469         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
470           (summary2): explain 'T' in legenda
471         * as/mcs51/lkrloc.c: replaced old K&R style,
472           (relr): added R_BIT processing,
473           (errmsg): added "Bit-addressable relocation error",
474           (adb_bit): added for converting from byte- to bit-addressable space,
475           (adb_24_bit): added for converting from byte- to bit-addressable space
476         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
477            used in reentrant functions now even as return value
478         * device/lib/_gptrput.c (_gptrput): removed obsolete code
479         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
480           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
481         * src/SDCCglobl.h: added indicator BitBankUsed
482         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
483            the bit registers b0-b7
484         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
485           (geniCodeCast): fixed bug 1263853,
486           (geniCodeLogicAndOr): put result in bool or char,
487           (geniCodeReceive): added parameter func for accessing the return type,
488           (geniCodeFunctionBody): pass func to geniCodeReceive
489         * src/SDCCmain.c: added indicator BitBankUsed
490         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
491         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
492           (checkSClass): don't put automatic bool/bit on stack,
493           (checkFunction): removed check on function cannot return bit
494         * src/SDCCsymt.h: added newBoolLink prototype
495         * src/mcs51/gen.c (rb1regs): added bit registers,
496           (movc): created for assigning to carry,
497           (pushReg, popReg): created for pushing registers,
498           (sameRegs): check both AOP_REG and AOP_CRY types,
499           (aopOp): handle bit registers,
500           (aopPut): optimization no self-assign,
501           (saveRegisters): push reg->base (bits) only once for bit registers,
502            and use pushReg,
503           (unsaveRegisters): pop reg->base only once and use popReg,
504           (assignResultValue): added parameter func and return in carry for bits,
505           (genIpush): optimization no reload in A if not changed,
506           (genSend): bit parameters in reentrant functions are passed in bit
507            registers by first assigning to bits in B, then save registers and
508            copy B to bits,
509           (genCall): handle returning in Carry properly, save it in F0 if needed,
510           (genPcall): updated assignResultValue call, this is not safe yet for bit
511            returning function !!!
512           (genFunction): don't generate equ's for bit registers and use pushReg,
513           (genEndFunction): take care of bit returning functions and use popReg,
514           (genRet): return bit in Carry,
515           (genIfx): optimize bit registers and other directly addressable bits,
516           (genReceive): updated assignResultValue call
517         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
518           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
519            registers when using stack-auto
520         * src/mcs51/ralloc.c (_G): added allBitregs,
521           (regs8051): added the bit registers,
522           (createStackSpil): use macro IS_BIT,
523           (getRegBit): added to allocate a bit register, else spill,
524           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
525           (updateRegUsage): factored out to ease stepping while debugging,
526           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
527            also allocate bit registers,
528           (fillGaps): handle bit registers,
529           (findAllBitregs): added to create bit vector with all bit registers,
530           (mcs51_allBitregs): returns this bit vector,
531           (mcs51_assignRegisters): when using stack-auto use bit registers for
532            passing parameters and creating local variables
533         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
534
535 2005-08-22 Borut Razem <borut.razem AT siol.net>
536
537         * device/lib/Makefile.in: replaced find option -or with -o
538           to make it run on solaris
539
540 2005-08-22 Raphael Neider <rneider AT web.de>
541
542         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
543           fixes #1265442 (crash on Solaris)
544
545 2005-08-20 Borut Razem <borut.razem AT siol.net>
546
547         * configure, configure.in: added tests for libsocket and libnsl libraries,
548           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
549           from support/regression/Makefile.in
550         * support/regression/Makefile.in: added
551         * device/lib/pic16/Makefile.common.in: force make to use bash shell
552         * sim/ucsim/libtool: regenerated on sparc-solaris
553         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
554           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
555           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
556           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
557           sparc-solaris, which doesn't use GNU ld linker
558         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
559         * as/Makefile: find on sparc-solaris does not support -maxdepth option
560
561 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
562
563         * src/mcs51/peeph.def: updated comments
564
565 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
566
567         * device/lib/_gptrget.c,
568         * device/lib/_gptrput.c: slightly shorter
569         * doc/sdccman.lyx: incremented version
570         * src/mcs51/peeph.def: moved peephole comments to the line of first
571           change to better keep line correlation, reanimated 186.e
572         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
573
574 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
575
576         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
577           David Saxton with quotes around file name.
578
579 2005-08-15 Borut Razem <borut.razem AT siol.net>
580
581         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
582           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
583           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
584           make tests run on x86_64 platform
585
586 2005-08-13 Raphael Neider <rneider AT web.de>
587
588         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
589           as it might be executed DURING a build (parallel make is wonderful)
590
591 2005-08-13 Raphael Neider <rneider AT web.de>
592
593         * device/lib/Makefile.in (port-specific-objects-pic16):
594           revert to cp $(PORT)/bin/*.* $(PORTDIR)
595         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
596           dependency
597         * device/lib/pic16/Makefile.rules: build subdirs before creating
598           the library, removed builddir rule, create $(builddir) early in
599           recurse rule, use empty recurse rule for leaf directories
600         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
601           mkdir errors (race condition), removed duplicate suffix "hex"
602           from clean rules
603         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
604         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
605           prevents mkdir -p from aborting on Alpha
606
607 2005-08-12 Raphael Neider <rneider AT web.de>
608
609         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
610           db-statements in order to allow for arrays of pointers in code
611           sections to be placed without interspersed 0-padding, fixes
612           bug #1256215
613         * (emitStatistics): fixed division by zero for pic18f1220
614         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
615           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
616         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
617         * (pic16_pCodeConstString): keep track of already emitted string
618           literals to prevent "duplicate definitions of symbol _str_NR"
619         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
620           debug message
621         * device/lib/Makefile.in: ignore failing PIC16 library builds
622         * device/lib/pic16/Makefile: do not build if gputils are missing
623         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
624
625 2005-08-10 Raphael Neider <rneider AT web.de>
626
627         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
628           my last commit)
629
630 2005-08-10 Raphael Neider <rneider AT web.de>
631
632         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
633           Rokas' patch to add the new fixed point type "__fixed16x16"
634         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
635           functions for __fixed16x16 arithmetics
636         * device/lib/pic16: reimplemented the build system to support
637           a separate build directory, better handling of libio (create
638           the library in a separate subdir for each architecture) and
639           easier configuration (centralized in Makefile.common)
640
641 2005-08-07 Raphael Neider <rneider AT web.de>
642
643         * src/pic16/gen.c (genrshTwo): fixed sign extension
644         * src/pic16/device.c: added pic18f2320, 4220 and 4320
645         * device/include/pic16/pic18f2220.h: changed some bit definitions,
646           added T0CONbits
647         * device/include/pic16/pic18f4220.h: NEW, header for
648           pic18f4220 and pic18f4320
649         * device/include/pic16/pic18fregs.h: added new devices,
650           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
651         * device/include/pic16/signal.h: resolved name clashes
652           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
653           to also allow testing for interrupt enable bits, added
654           comments on how to use the macros
655         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
656         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
657           register definitions for the devices
658         * device/lib/pic16/pics.all: added new devices
659         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
660           allocated memory
661         * device/lib/pic16/libc/stdlib/memfree: do not count
662           the block header as free memory
663         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
664           simplified and added missing end-of-blocklist-marker
665           (reported by Peter Onion, fixes #1252814)
666         * (_mergeHeapBlock): fixed loop condition
667         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
668           len==0, restructured code
669         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
670           up a bit, reduced bitfield accesses, prevent endless loops
671           in case of heap corruption
672         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
673           "unreferenced arguments/must return a value" warnings
674         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
675           replaced BAUDREG with SPBRG
676         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
677           device/lib/pic16/debug/gstack/gstack.c: replaced
678           _naked, _asm, _endasm with __naked, __asm, __endasm
679
680 2005-08-05 Raphael Neider <rneider AT web.de>
681
682         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
683           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
684
685 2005-08-05 Borut Razem <borut.razem AT siol.net>
686
687         * device/lib/Makefile.in: added missing ';'
688         * configure: removed ^M characters
689
690 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
691
692         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
693           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
694           License
695
696 2005-08-04 Borut Razem <borut.razem AT siol.net>
697
698         * configure.in: pic16 libraries build 2nd try - enable running
699           configure in device/lib/pic16
700         * configure: regenerated from configure.in
701         * device/lib/Makefile.in: create $(PORT)/bin directory
702
703 2005-08-03 Raphael Neider <rneider AT web.de>
704
705         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
706           to get/set values via pointers
707         * (genUnpackBits,genPackBits): changed detection of
708           ptr->bitfield vs. sym.bitfield, fixed access via generic
709           pointers, removed dead (wrong) code for multibyte bitfields
710         * (genNearPointerGet, genGenPointerGet): removed useless code,
711           fixed bitfield detection, fixes #1250594
712         * (genNearPointerSet): removed useless code
713         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
714           and introduced macro pic16_emitpcode that conditionally emits
715           the origin of the following pCode (useful for debugging SDCC)
716         * src/pic16/pcode.c: changed (and disabled) some debug outputs
717         * (createDefmap): fixed handling of LFSR for --optimize-df
718
719 2005-08-02 Borut Razem <borut.razem AT siol.net>
720
721         * device/lib/Makefile.in: pic16 libraries build enabled since
722           gputils-0.13.2 are now localy installed at sourceforge's compile farm
723
724 2005-08-02 Raphael Neider <rneider AT web.de>
725
726         * src/pic16/gen.c (genPackBits): removed deprecated warning
727         * (genGenPointerSet): fixed bitfield detection
728
729 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
730
731         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
732
733 2005-07-31 Raphael Neider <rneider AT web.de>
734
735         * device/lib/pic16/libdev/pic18f458.c,
736           device/include/pic16/pic18f458.h: added missing T0CONbits
737
738 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
739
740         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
741
742 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
743
744         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
745
746 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
747
748         * device/include/mcs51/at89c51ed2.h: added.
749
750 2005-07-23 Raphael Neider <rneider AT web.de>
751
752         * src/pic/gen.h: added emitpcode macro for debugging
753         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
754           and replace by macro adding debug information on demand
755         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
756         * (gencjne): tried to fix; replaced with correct (slower) code
757         * (gen{Unp,P}ackBits): fixed single bit access
758         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
759         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
760           previous instruction
761         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
762           register has to be handled with care (forbidding movement
763           of assignments/uses, removing assignments completely, ...)
764         * (pCodeOptime2pCodes): make use of regIsSpecial
765         * added lots of debugging output (commented out)
766         * src/pic/rallloc.c (deassignLRs): prevent operand registers
767           from being reused as result UNLESS it is known to work
768
769 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
770
771         * support/Util/dbuf.h: include <stddef.h> for size_t
772         * .version: changed to version 2.5.2
773
774 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
775
776         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
777
778 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
779
780         * src/hc08/gen.c (genMinus): fixed bug #1241835,
781           (genModOneByte): removed needless psha/pula
782
783 2005-07-22 Raphael Neider <rneider AT web.de>
784
785         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
786           have PIC14 handled like PIC16, fixes broken pic14 linker calls
787         * src/pic/gen.c (resolveIfx): do not "invent" labels
788         * (genSkipc): changed to positive logic
789         * (genSkipCond): removed as no longer needed
790         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
791           backport from PIC16
792         * (genLeftShift): check operands are in different registers
793         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
794           INCF does not update CARRY...
795         * src/pic/main.c: fixed _linkCmd
796         * src/pic/pcode.c (unlinkpCode): added inactive code
797         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
798           alive (do not assign result and operand overlapping registers)
799
800 2005-07-22 Raphael Neider <rneider AT web.de>
801
802         * src/pic/device.c (dump_sfr): replaced register declaration with
803           call to emitSymbolToFile() to avoid duplicate symbols
804         * (assignRelocatableRegisters): do not declare external symbols
805         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
806           right (take size of type, not etype)
807         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
808         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
809         * (packRegsForAccUse): disabled assignment of WREG as
810           the result reg to prevent occurence of just fixed #1235003,
811           fixes #1242954
812         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
813           symbols (avoids duplicate symbols in .asm file)
814         * (pic14emitRegularMap): use emitSymbolToFile()
815         * src/pic/gen.c (aopOp): fixed spillLocation handling
816         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
817         * (genDataPointerSet): removed unneccessary variables/output
818
819 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
820
821         * as/mcs51/lkarea.c: enlarged codemap for banked memory
822         * device/lib/mcs51/crtbank.asm: added # to 0x0F
823
824 2005-07-21 Raphael Neider <rneider AT web.de>
825
826         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
827           architecture cannot handle them efficiently, fixes bug #1235003
828         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
829           check for empty sets before using them (fixes bug #1232190)
830
831 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
832
833         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
834           (lnksect2): generate warnings for memory overlap
835         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
836           constseg to set the name of these segments so you can instruct the linker
837           to place them in banks
838         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
839         * src/SDCCglobl.h: added MODEL_HUGE to enum,
840           added code_seg and const_seg to options
841         * src/SDCCglue.c (emitMaps): use options.const_seg,
842           (createInterruptVect): put interrupt vectors in segment HOME,
843           (glue): put HOME before static segment and put the main glue in HOME,
844           (glue): use options.code_seg
845         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
846         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
847           these segments so you can instruct the linker to place them in banks
848           (linkEdit): use code_loc for HOME segment which should be the first
849           segment in code memory now
850         * src/SDCCmem.c: fixed more stuff like bug 1238386
851         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
852           (changePointer): don't change function pointers to code pointers for
853           banked functions,
854           (compareType): added exceptional check for banked function pointers
855         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
856         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
857           after static in code memory
858         * src/mcs51/gen.c: added aopLiteralLong prototype,
859           (aopForSym): use getSize for functions,
860           (genCall): generate banked calls over one trampoline __sdcc_banked_call
861           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
862           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
863           the segment,
864           (genPcall): use call for literal function pointers and generate banked
865           calls over the one trampoline so there's only one place for the user to
866           modify according to his/hers hardware,
867           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
868           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
869         * src/mcs51/main.c: added keyword banked,
870           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
871         * support/Util/SDCCerr.c,
872         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
873           needed for passing the bank and address to the trampoline
874         * device/lib/mcs51/crtbank.asm: added for bankswitching
875         * device/lib/mcs51/Makefile: added crtbank
876
877 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
878
879         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
880           for fields at offset 0 of a struct or union as reported
881           on 2005-07-07 in the developer mailing list.
882
883 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
884
885         * src/SDCCmem.c: fixed bug 1238386
886
887 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
888
889         * src/mcs51/peeph.def: added labelrefcounting for peepholes
890           (patch #1144962), added peephole 300, enabled 259.x
891         * doc/sdccman.lyx: removed screenshot and provided link instead
892
893 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
894
895         * doc/sdccman.lyx: added section about debugging with ddd
896         * doc/figures/ddd_example.eps: screenshot of debugging session
897
898 2005-07-04 Raphael Neider <rneider AT web.de>
899
900         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
901           like CODE pointers, fixes #1115683
902         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
903           call, fixes bugs #1232211, #1228110,
904           fixed wrong casts to pCodeFlow from pCodeInstructions
905
906 2005-07-04 Raphael Neider <rneider AT web.de>
907
908         * src/pic/gen.c (popGet): changed assert to allow for
909           bit operands
910         * (popGetAddr): changed signature to provide
911           an additional index, patched all call sites
912         * (genCmpEq): handle literal-like operands correctly
913         * (genAddrOf): added sanity checks on __code/__data pointers
914         * (genAssign): added handling of symbols from __code section
915         * (gencjne): do not generate code for comparisons whose result
916           is neither stored nor used, fixes bug #1171114
917         * (AccLsh, AccRsh): operate on operand instead of WREG
918         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
919           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
920           by known count
921         * rewrote complete shift-by-literal logic, commented unused
922           functions out
923         * (genConstPointerGet): get multiple bytes (if result size > 1),
924           fixed handling of non-immediate addresses
925         * (genPointerGet): handle CODE pointers like CONST pointers
926         * (genpic14Code): insert C-SRC lines as Cource-pCodes
927         * ({aop,op}_isLitLike): NEW, single place to decide whether an
928           operand is to be treated as a literal or not
929         * (mov2w,genPcall,genCmpEq),
930           src/pic/genarith.c: use aop_isLitLike() to decide between
931           literal/register contents
932         * (addSign): added missing offset
933         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
934           only emit comment in debug-mode,
935           use {aop,op}_isLitLike throughout the file
936         * src/pic/glue.c: fix initializers for pointers (work in progress)
937         * src/pic/pcode.c (get_op): honor index on _const symbols
938         * ({reset,dump}pCodeStatistics): NEW, estimate code size
939         * (dumppBlock): added pCode size estimation
940         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
941           check for IS_SYMOP before OP_SYMBOL'ing
942         * fixed indentation, compacted switch-statements
943         * (allocReg): find free register and allocate it instead of
944           allocating new registers all the time
945         * (deassignLRs): prevent POINTER_GET's from being assigned the same
946           registers as its operands (necessary only for multibyte GETs)
947
948 2005-07-01 Raphael Neider <rneider AT web.de>
949
950         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
951           debugging .asm-output macros FENTRY + FEXIT
952         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
953           way... I wonder...
954         * (emitpComment): NEW, printf to pCode
955         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
956           offset handling
957         * (popGetAddr): NEW, variant of popGet to access an immediates
958           high(er) bytes instead of the n'th byte of memory they reference,
959           replaced popGet with popGetAddr where neccessary
960         * (genDataPointerGet): reactivated and fixed implementation
961         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
962           accesses
963         * (genDataPointerSet): fixed multibyte assignments
964         * (genpic14Code): fixed --i-code-in-asm handling
965         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
966         * (genPlus): fixed index-out-of-bounds error
967         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
968         * src/pic/ralloc.c: added debugging output macro FENTRY2
969         * (spillThis): fixed indentation, enbraced for-body for clarity
970         * (rematStr): commented out as now unused
971         * (regTypeNum): commented out special spill case (overwrites
972           arbitrary values)
973         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
974
975 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
976
977         * doc/sdccman.lyx: documented sfr16/sfr32,
978           added example for using storage class with function pointers
979         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
980
981 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
982
983         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
984         * device/lib/_itoa.c,
985         * device/lib/_ltoa.c: optimized codesize
986         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
987           but don't know how to suppress the double warning.
988         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
989         * support/Util/SDCCerr.c,
990         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
991
992 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
993
994         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
995           fixed old K&R prototypes
996         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
997         * device/lib/_gptrget.c,
998         * device/lib/_gptrgetc.c,
999         * device/lib/_gptrput.c: changed versions for new memory indicator values,
1000           also new versions for small generic pointers and banked generic pointers
1001         * src/port.h: added const_name
1002         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
1003         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
1004         * src/SDCCcse.c (findPrevIc): check all associative operators
1005         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
1006         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
1007         * src/SDCCmem.c: updated comments,
1008           set far-space to 0 for pdata, results in optimized code
1009         * src/SDCCmem.h: added macro CONST_NAME
1010         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
1011           moving the info into the highest bits, see also gptrget/gptrput
1012         * src/src.dsp: added sdcc.ico to project files
1013         * src/avr/gen.c (genCast): fixed bug 0x%d
1014         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
1015         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
1016           relation between ptr_type and DCL_TYPE,
1017           (genCast): fixed bug 0x%d
1018         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
1019           (CODE)" for const_name
1020         * src/hc08/gen.c (genCast): fixed bug 0x%d
1021         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
1022           (hc08_port): added "CONST (CODE)" for const_name
1023         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
1024           (aopForRemat, adjustArithmeticResult): disconnected direct relation
1025           between ptr_type and DCL_TYPE,
1026           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
1027           operand* and took AOP() inside function so sfr-ness can be checked,
1028           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
1029           new prototype,
1030           (genFunction, genEndFunction): optimized stack setup,
1031           (genMinus): optimized for literals with ending zeroes (in bytes),
1032           (genCast): fixed bug 0x%d
1033         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
1034           (mcs51_port): added "CONST (CODE)" for const_name
1035         * src/mcs51/peeph.def: made rule 226 more generic
1036         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
1037         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
1038         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
1039         * src/z80/main.c (z80_port): added NULL for const_name,
1040           (gbz80_port): added NULL for const_name
1041         * support/regression/tests/bug663539.c,
1042         * support/regression/tests/sfr16.c: new tests
1043
1044 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1045
1046         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
1047
1048 2005-06-24 Raphael Neider <rneider AT web.de>
1049
1050         * device/lib/pic16/libdev/pic18f[68][567]20.c:
1051           corrected typos...
1052         * device/include/pic16/signal.h: added USBIF
1053           and SIG_USB
1054
1055 2005-06-24 Raphael Neider <rneider AT web.de>
1056
1057         * device/lib/pic16/libdev/pic18f2455.c,
1058           device/include/pic16/pic18f2455.h: NEW
1059         * device/include/pic16/pic18fregs.h,
1060           device/lib/pic16/pics.all,
1061           src/pic16/device.c: added 18f2455
1062         * device/lib/pic16/libdev/pic18f[68][567]20.c,
1063           device/include/pic16/{pic18f[68][567].h,usart.h}:
1064           replaced MULTIPLE_USARTS define with more relaible
1065           compatibility sfrs (for USART access)
1066
1067 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
1068
1069         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
1070           and the output asm file line is printed on two lines.
1071
1072 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1073
1074         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
1075           BGT, BLE, BHI, and BLS instructions
1076         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
1077           genCmpEq): removed
1078         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
1079           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
1080           fixes bug #1216342
1081         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
1082
1083 2005-06-15 Raphael Neider <rneider AT web.de>
1084
1085         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
1086         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
1087         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
1088           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
1089           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
1090
1091 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1092
1093         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
1094           Marcel Telka in bug #1215704
1095
1096 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
1097
1098         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
1099           located in shared memory bank.
1100
1101 2005-05-31 Raphael Neider <rneider AT web.de>
1102
1103         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
1104           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
1105           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
1106
1107 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
1108
1109         * device/lib/_strncpy.c: fixed the fix
1110
1111 2005-05-26 Raphael Neider <rneider AT web.de>
1112
1113         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
1114           initializers with \0, bug #1208187
1115         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
1116           intializers with \0, bug #1208187
1117
1118 2005-05-26 Raphael Neider <rneider AT web.de>
1119
1120         * src/pic16/glue.c (pic16_printIvalChar): fixed string
1121           initializers with \0, bug #1208187
1122         * src/pic16/main.c (_process_pragma): added sanity checks
1123           for stack position and size, emit warnings when appropriate
1124
1125 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
1126
1127         * device/lib/_strncpy.c: fixed not filling with \0
1128
1129 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1130
1131         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
1132           createFunction),
1133         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
1134           compound_statement),
1135         * src/SDCCsymt.h,
1136         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
1137
1138 2005-05-24 Raphael Neider <rneider AT web.de>
1139
1140         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
1141
1142 2005-05-24 Raphael Neider <rneider AT web.de>
1143
1144         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
1145           TRISE definitions, closes bug #1162453
1146
1147 2005-05-22 Raphael Neider <rneider AT web.de>
1148
1149         * src/pic16/main.c (_process_pragma): check for missing
1150           arguments to pragmas code and udata
1151         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
1152           consistency fixes to match other headers (thanks to Jim Paris)
1153         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
1154
1155 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
1156
1157         * src/SDCCicode.c (isOperandEqual): fixed missing ;
1158
1159 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
1160
1161         * support/regression/tests/bug1198642.c: new test
1162         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
1163         * src/SDCCcse.c (findPrevIc): added comment, please have a look
1164         * support/scripts/resource.h,
1165         * support/scripts/resource.rc,
1166         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
1167         * support/scripts/sdcc.ico: added 32x32 icon
1168
1169 2005-05-18 Raphael Neider <rneider AT web.de>
1170
1171         * device/lib/pic16/libdev/pic18f*.c,
1172         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
1173           keywords to "__sfr" and "__at (X)"
1174         * device/include/pic16/pic18fregs.h: added pic18f4520
1175         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
1176           #1203088 (MPLAB compatibility)
1177
1178 2005-05-17 Raphael Neider <rneider AT web.de>
1179
1180         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
1181         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
1182         * device/lib/pic16/pics.all: added new devices
1183         * src/pic16/device.c: added support for pic18f4520
1184
1185 2005-05-16 Raphael Neider <rneider AT web.de>
1186         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
1187         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
1188         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
1189           convenience function for bit access
1190
1191 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1192
1193         * device/lib/printf_large.c: fixed bug 1193299
1194         * support/regression/tests/bug1057979.c: added test %3.3s
1195
1196 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1197
1198         * device/include/mcs51/8051.h,
1199         * device/include/mcs51/8052.h: made parseable with lint
1200         * device/include/mcs51/lint.h: added include file for (sp)lint
1201         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
1202         * doc/cdbfileformat.lyx,
1203         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
1204
1205 2005-05-14 Raphael Neider <rneider AT web.de>
1206
1207         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
1208         * device/lib/pic16/libc/stdlib/itoa.c (new)
1209         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
1210         * device/lib/pic16/libio/Makefile: exclude subdir according to
1211           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
1212         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
1213         * src/pic16/gen.c (genFunction): prevent annoying warning
1214         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
1215           nameclashes on BeOS
1216         * support/cpp2/cppmain.c (cpp_output_string): new
1217         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
1218           fixes bug 1116802
1219
1220 2005-05-13 Borut Razem <borut.razem AT siol.net>
1221
1222         * src/SDCCmain.c (linkEdit): fixed bug 1195202
1223
1224 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1225
1226         * .version: changed to version 2.5.1; back to bleeding edge development
1227
1228 2005-05-11 Borut Razem <borut.razem AT siol.net>
1229
1230         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
1231           generate PDF version 1.3 documents
1232
1233 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1234
1235         * .version: changed to version 2.5.0
1236
1237 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1238
1239         * doc/sdccman.lyx: updated weblinks, index and smaller updates
1240
1241 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1242
1243         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
1244         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
1245         well as many smaller updates.
1246         * .version: changed to version 2.5.0-pre1
1247
1248 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1249
1250         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
1251
1252 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
1253
1254         * support/regression/tests/bug1185672.c: added
1255         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
1256           bug 1185672
1257         * src/mcs51/gen.c (genCall): added comments, made it look safer
1258         * src/mcs51/gen.c (genEndFunction): simplified
1259
1260 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
1261
1262         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
1263
1264 2005-04-14 Borut Razem <borut.razem AT siol.net>
1265
1266         * fixed bug 1045046 - SIGSEGV with really simple code?:
1267           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
1268           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
1269
1270 2005-04-14 Borut Razem <borut.razem AT siol.net>
1271
1272         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
1273           src/pic16/device.h: temporarily disabled experimental #inline pragma
1274           for 2.5.0 release
1275
1276 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
1277
1278         * device/include/z80/stdio.h,
1279         * device/include/z80/string.h: removed these highly incomplete files so
1280           SDCC can use the default ones in device/include/
1281
1282 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1283
1284         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
1285         gcc warning.
1286         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
1287         fix sdcpp warnings.
1288
1289 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1290
1291         * device/include/malloc.h: removed redundant __reentrant prototypes
1292         * device/lib/_mullong.c: added working xstack variant in asm (C version
1293           doesn't pass regression tests)
1294         * device/lib/bpx.c: used __data and made bpx char for mcs51
1295         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1296           (createFunction): fixed bug with xstackPtr
1297         * src/SDCCcse.c: corrected comments
1298         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1299           (killDeadCode, eBBlockFromiCode): removed unused code
1300         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1301           corrected comments
1302         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1303           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1304           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1305           (genModOneByte): fixed warning in MSVC
1306         * src/mcs51/main.c (): added comments
1307         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1308
1309 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1310
1311         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1312
1313 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1314
1315         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1316
1317 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1318
1319         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1320         characters arrays of larger size than the declared one.
1321
1322 2005-04-10 Borut Razem <borut.razem AT siol.net>
1323
1324         * src/pic/gen.c (genInline),
1325           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1326           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1327           (findNextInstruction), (findPrevInstruction),
1328           (findInstructionUsingLabel),
1329           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1330         * src/pic/pcode.c (findLabel): added missing '\n'
1331         * src/src.dsp: added SDCCdwarf2.c to the project
1332
1333 2005-04-09 Borut Razem <borut.razem AT siol.net>
1334
1335         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1336
1337 2005-04-08 Raphael Neider <rneider AT web.de>
1338
1339         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1340           into the chain after a given one) and mergeDefmapSymbols (combine
1341           defmap entries for each symbol per pcode)
1342         * (createDefmap): have defmap entries merged in the end
1343         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1344           a symbol before replacing one access type's symbol, merge symbols in
1345           the end (replacement symbol might already have an entry)
1346         * (assignValnums): keep reference to written WREG intact
1347
1348 2005-04-08 Raphael Neider <rneider AT web.de>
1349
1350         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1351           Alpha)
1352
1353 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1354
1355         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1356         bytes
1357
1358 2005-04-07 Raphael Neider <rneider AT web.de>
1359
1360         * device/include/pic16/usart.h: added compatibility defines for
1361           devices with more than one USART
1362         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1363
1364 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1365
1366         * device/lib/Makefile.in: updated for port specific include
1367
1368 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1369
1370         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1371
1372 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1373
1374         * device/include/8051.h,
1375         * device/include/8052.h,
1376         * device/include/at89S8252.h,
1377         * device/include/at89c55.h,
1378         * device/include/at89x051.h,
1379         * device/include/at89x51.h,
1380         * device/include/at89x52.h,
1381         * device/include/mcs51reg.h,
1382         * device/include/reg51.h,
1383         * device/include/reg764.h,
1384         * device/include/regc515c.h,
1385         * device/include/sab80515.h: (re)moved these 12 files
1386         * device/include/mcs51/8051.h,
1387         * device/include/mcs51/8052.h,
1388         * device/include/mcs51/at89S8252.h,
1389         * device/include/mcs51/at89c55.h,
1390         * device/include/mcs51/at89x051.h,
1391         * device/include/mcs51/at89x51.h,
1392         * device/include/mcs51/at89x52.h,
1393         * device/include/mcs51/mcs51reg.h,
1394         * device/include/mcs51/reg51.h,
1395         * device/include/mcs51/reg764.h,
1396         * device/include/mcs51/regc515c.h,
1397         * device/include/mcs51/sab80515.h: and added them here
1398
1399 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1400
1401         * device/include/stdarg.h: changed SDCC specific keywords to double
1402           underlined form.
1403         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1404           mcs51 and ds390.
1405         * device/include/hc08/mc68hc908gp32.h,
1406         * device/include/hc08/mc68hc908jb8.h,
1407         * device/include/hc08/mc68hc908jkjl.h,
1408         * device/include/hc08/mc68hc908qy.h: fixed comments
1409         * device/include/mcs51/README: updated
1410         * device/include/mcs51/c8051f120.h: added PINRSF
1411         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1412         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1413           amidst code. Also inline is not supported.
1414
1415 2005-04-06 Raphael Neider <rneider AT web.de>
1416
1417         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1418         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1419           callers stack/frame pointers
1420
1421 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1422
1423         * device/include/pic16/usart.h: added, missing in previous commit,
1424         * device/include/pic16/adc.h: fixed typo,
1425         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1426         commit,
1427         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1428         <p18fxxx.inc>
1429         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1430         uninitialized because a bug appears with gplink
1431         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1432         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1433         complains for unrecognised option
1434
1435 2005-04-05 Raphael Neider <rneider AT web.de>
1436
1437         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1438           structs as well (using memcpy)
1439         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1440           on ISRs (GOTO has no label)
1441         * src/pic16/device.h: added OF_OPTIMIZE_DF
1442         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1443           new data flow analysis/optimization
1444         * src/pic16/pcode.c: added (prototypes for and implementation of)
1445           dataflow analysis functions, fixed pCodeInstructions' inCond and
1446           outCond values, made RCALL a branch instruction
1447         * (pic16_unlinkpCode): keep C line if possible
1448         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1449           C line moved if possible
1450         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1451         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1452           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1453         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1454           new flow)
1455         * (pic16_getJumptabpCode): NEW, needed in...
1456         * (LinkFlow): fixed handling of jumptables, calls and conditional
1457           branches
1458         * (pic16_InsertCommentAfter): NEW
1459         * (pic16_pCodeReplace): made verbose and flow preserving
1460         * (AnalyzeFlow): added call to data flow analysis
1461         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1462         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1463         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1464
1465 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1466
1467         * src/SDCCast.c (decorateType): fixed bug #1105626
1468
1469 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1470
1471         * device/include/asm/pic16/features.h,
1472         * pic18f*.h headers,
1473         * device/include/pic16/adc.h,
1474         * device/include/pic16/delay.h,
1475         * device/include/pic16/i2c.h,
1476         * device/include/pic16/malloc.h,
1477         * device/include/pic16/stdio.h,
1478         * device/include/pic16/stdlib.h,
1479         * device/include/pic16/string.h,
1480         * device/lib/pic16/libc/stdio/printf_tiny.c,
1481         * device/lib/pic16/libc/stdio/printf_small.c,
1482         * device/lib/pic16/libc/stdio/strmgpsim.c,
1483         * device/lib/pic16/libc/stdio/strmmssp.c,
1484         * device/lib/pic16/libc/stdio/strmusart.c,
1485         * device/lib/pic16/libc/stdio/vfprintf.c,
1486         * device/lib/pic16/libc/stdlib/ltoa.c,
1487         * device/lib/pic16/libc/stdlib/putchar.c,
1488         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1489         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1490         * device/lib/pic16/libc/stdlib/memchrram.c,
1491         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1492         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1493         * device/lib/pic16/libio/adc/adcbusy.c,
1494         * device/lib/pic16/libio/adc/adcread.c,
1495         * device/lib/pic16/libio/adc/adcsetch.c,
1496         * device/lib/pic16/libio/usart/ubaud.c,
1497         * device/lib/pic16/libio/usart/ubusy.c,
1498         * device/lib/pic16/libio/usart/udrdy.c,
1499         * device/lib/pic16/libio/usart/uopen.c,
1500         * device/lib/pic16/libio/usart/uputc.c,
1501         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1502         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1503         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1504         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1505         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1506         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1507         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1508         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1509         specific keywords to double underlined form,
1510         * device/lib/pic16/libc/Makefile.rules,
1511         * device/lib/pic16/libsdcc/Makefile.rules,
1512         * device/lib/pic16/libm/Makefile,
1513         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1514         to compile with C standard set in Makefile.common
1515         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1516         rand.c and crc.c in compilation process,
1517         * device/lib/pic16/libsdcc/int/divuint.c,
1518         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1519         `c' from signed to unsigned,
1520         * device/lib/pic16/startup/crt0.c,
1521         * device/lib/pic16/startup/crt0i.c,
1522         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1523         keywords to double underlined form, bug fixes in _do_cinit function
1524         which prevented the correct initialization of the .idata segment,
1525         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1526         core to enter a infinite loop
1527         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1528
1529 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1530
1531         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1532
1533 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1534
1535         * device/include/Makefile.in: add support for hc08 subdirectory
1536         * device/include/hc08/: new subdirectory
1537         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1538         Lucas Loizaga, thanks!
1539         * device/include/hc08/mc68hc908qy.h,
1540         * device/include/hc08/mc68hc908gp32.h,
1541         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1542         their own directory. Changed internal macro names to use the compiler
1543         reserved namespace. Changed SDCC specific keywords to double
1544         underlined form.
1545         * device/include/math.h,
1546         * device/include/malloc.h,
1547         * device/include/stdarg.h,
1548         * device/include/stdbool.h
1549         * device/include/string.h,
1550         * device/include/tinibios.h,
1551         * device/include/ds400rom.h,
1552         * device/include/8051.h,
1553         * device/include/8052.h,
1554         * device/include/80c51xa.h,
1555         * device/include/at89c55.h,
1556         * device/include/at89S8252.h,
1557         * device/include/at89x51.h,
1558         * device/include/at89x52.h,
1559         * device/include/ds80c390.h,
1560         * device/include/reg764.h,
1561         * device/include/regc515c.h,
1562         * device/include/sab80515.h,
1563         * device/include/mcs51/c8051f000.h,
1564         * device/include/mcs51/c8051f018.h,
1565         * device/include/mcs51/c8051f020.h,
1566         * device/include/mcs51/c8051f040.h,
1567         * device/include/mcs51/c8051f060.h,
1568         * device/include/mcs51/c8051f120.h,
1569         * device/include/mcs51/c8051f300.h,
1570         * device/include/mcs51/c8051f310.h,
1571         * device/include/mcs51/c8051f320.h,
1572         * device/include/mcs51/c8051f330.h,
1573         * device/include/mcs51/c8051f350.h,
1574         * device/include/z180.h: Changed SDCC specific keywords to double
1575         underlined form.
1576
1577 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1578
1579         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1580         18F4455,
1581         * (pic16_assignConfigWordValue): disable testing of configuration
1582         register value with config mask,
1583         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1584         function with port->fun_prefix,
1585         * (genFunction): when generating a naked interrupt function never
1586         create an absolute segment placed in interrupt vector address, place
1587         the actual interrupt function at IVA instead, when an interrupt
1588         function is generated with unspecified interrupt then do not create
1589         the absolute section,
1590         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1591         code for generating a call to generic pointer get/put function with
1592         a call to function pic16_callGenericPointer(),
1593         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1594         the call to the generic pointer get/put functions with prefixing the
1595         function name with port->fun_prefix,
1596         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1597         * src/pic16/main.c (_process_pragma): prefix function with
1598         port->fun_prefix,
1599         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1600         calling assembler, old 18Fxxxx macro is deprecated,
1601         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1602         PC_ASMDIR in while condition,
1603         * (findInstruction): add PC_ASMDIR in while condition,
1604         * (buildCallTree): prefix main with port->fun_prefix,
1605         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1606         identifier for variable with banked access in instructions BTFSS,
1607         BTFSC, BCF, BSF, BTG
1608         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1609         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1610         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1611         perform optimization when enviroment variable NO_REG_OPT is set,
1612         * (insideLRBlock): NEW, return 1 if register is inside an
1613         INF_LOCALREGS block,
1614         * (RemoveRegFromLRBlock): remove a register that is completely
1615         eliminated by register optimization, but it is still left in local
1616         register store/restore in/from stack block,
1617         * (Remove2pcodes): after removing register, check to see if it
1618         should be removed from local register store/restore in/from stack
1619         block,
1620         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1621         DUMMY_READ_VOLATILE,
1622
1623         * device/include/pic16/adc.h: minor prototype modifications and
1624         update,
1625         * device/include/pic16/malloc.h: added GPL notice various
1626         modifications,
1627         * device/include/pic16/stdint.h: NEW, standard header for ints
1628         * device/include/pic16/delay.h: NEW, header for delay functions,
1629         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1630         delay1mtcy,
1631         * device/include/pic16/signal.h: NEW, header providing helper macros
1632         for implementing signal handlers,
1633         * device/include/pic16/stdio.h: added prototypes for functions,
1634         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1635         prototypes for stdin and stdout, added macro PUTCHAR to
1636         automatically implement putchar function prototype,
1637         * device/include/pic16/usart.h: modified and updated USART library,
1638         * device/lib/pic16/libio/adc/,
1639         * device/lib/pic16/libio/i2c: some modifications to improve library
1640         performance,
1641         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1642         family of functions,
1643         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1644         family of functions and other sources,
1645         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1646         of the PIC18Fxx[28] devices,
1647         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1648         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1649         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1650         _do_cinit function, because the previous failed when local variables
1651         where not placed in the same memory bank,
1652         * device/lib/pic16/libsdcc/char/: various modifications to improve
1653         library performance,
1654         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1655         information on the new functions of the c library and more...
1656
1657 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1658
1659         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1660
1661 2005-03-26 Raphael Neider <rneider AT web.de>
1662
1663         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1664           if condition == CARRY)
1665         * (genCmp): adapted to new genSkipc semantics
1666         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1667           on rIfx (genCmp was broken)
1668
1669 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1670
1671         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1672         * src/z80/main.c (_keywords[]),
1673         * src/SDCCglobal.h (struct options),
1674         * src/SDCC.y,
1675         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1676         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1677         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1678         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1679         always available in leading double underscore form. The C99 support is
1680         mostly missing, but it's a start.
1681         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1682         reserved identifier "__data".
1683
1684 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1685
1686         * src/mcs51/peeph.def: fixed bug 1170013
1687
1688 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1689
1690         * device/include/mcs51reg.h: fixed bug 842007
1691
1692 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1693
1694         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1695         last time.
1696
1697 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1698
1699         * src/port.h (struct PORT),
1700         * src/avr/ralloc.c (avr_assignRegisters),
1701         * src/avr/main.c,
1702         * src/ds390/ralloc.c (ds390_assignRegisters),
1703         * src/ds390/main.c,
1704         * src/hc08/ralloc.c (hc08_assignRegisters),
1705         * src/hc08/main.c,
1706         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1707         * src/mcs51/main.c,
1708         * src/pic/ralloc.c (pic14_assignRegisters),
1709         * src/pic/main.c,
1710         * src/pic16/ralloc.c (pic16_assignRegisters),
1711         * src/pic16/main.c,
1712         * src/xa51/ralloc.c (xa51_assignRegisters),
1713         * src/xa51/main.c,
1714         * src/z80/ralloc.c (z80_assignRegisters),
1715         * src/z80/ralloc.h,
1716         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1717         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1718         * src/SDCCcse.h,
1719         * src/SDCCdflow.c (computeDataFlow),
1720         * src/SDCCdflow.h,
1721         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1722         * src/SDCCloop.h,
1723         * src/SDCCcflow.c (*),
1724         * src/SDCCcflow.h,
1725         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1726         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1727         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1728         immedDom() returning wrong block; probably fixes bug #1160833)
1729
1730 2005-03-20 Borut Razem <borut.razem AT siol.net>
1731
1732         * support/scripts/inc2h.pl: WIN32 port
1733
1734 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1735
1736         * device/lib/makefile.in: added abs.c and labs.c
1737
1738 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1739
1740         * device/include/stdint.h: added
1741         * device/lib/abs.c: added
1742         * device/lib/labs.c: added
1743         * device/include/stdlib.h: added abs() and labs() prototypes
1744         * device/lib/libsdcc.lib: added abs and labs
1745         * device/include/float.h,
1746         * device/lib/_fsmul.c,
1747         * device/lib/printf_fast.c,
1748         * device/lib/printf_tiny.c: updated comments
1749
1750 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1751
1752         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1753         bug #1164313
1754
1755 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1756
1757         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1758         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1759
1760 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1761
1762         * device/lib/printf_large.c: removed inline assembly for portability and
1763           readability. Use printf_fast if speed or size are more important.
1764         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1765         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1766
1767 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1768
1769         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1770         prevent compiler warning
1771
1772 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1773
1774         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1775         moved to level 0 and declared as static. Also they are explicit
1776         placed in access bank. This was necessery because some times they
1777         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1778         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1779         optimizations. Currently only compare to unsigned char is implemented,
1780         * src/pic16/gen.c: added fReturnIdx array,
1781         * (struct resolvedIfx) is moved to gen.h and made public,
1782         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1783         * (aopForSym): added an optimization to directly store in stack of
1784         the operand of a SEND iCode,
1785         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1786         but as registers instead (AOP_REG) using the fReturnIdx array,
1787         * (pic16_freeAsmop): remove the freed register from the
1788         _G.sregsAlloc field,
1789         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1790         a compare of 'WREG',
1791         * (pic16_popGetTempRegCond): changed function prototype, now
1792         function takes also a bitVector argument v which holds the current
1793         set of registers that are allocated for stack access by aopForSym,
1794         registers allocated in aopForSym for accessing stack symbols are not
1795         any more part of the functions usedRegs field,
1796         * (genCall): some times aopOp is called for a stack variable to be
1797         send, aopForSym might perform the push, if this is true make sure
1798         that genCall doesn't push the variable twice by testing _G.resDirect,
1799         * (genFunction): changed testing for unspecified interrupt number
1800         from 256 to INTNO_UNSPEC,
1801         * modified selection scheme of frame pointer generation. Previously
1802         if function did use local registers a frame pointer was generated,
1803         now a frame pointer is generated only if function has arguments
1804         (that need PLUSW2 register access), or has stack arguments, or the
1805         compiler is not instructed to omit the frame pointer,
1806         * (genEndFunction): before restoring local registers that were saved
1807         in the function preamble, also restore the registers that *might*
1808         have been allocated for stack access,
1809         * (genRet): removed some old comments,
1810         * (genCmp, the active (RN's) version): added a call to the
1811         pic16_genCmp_special function to perform the compare with a more
1812         robust and optimized way,
1813         * (genInline): a feature has been added in inline code generation,
1814         which allows a wildcard variable substitution when writing inline
1815         assembly. Code is incomplete and experimental therefore undocumented,
1816         * (genCast): changed order of aopOp for result and right to allow
1817         aopForSym to directly load the result if possible,
1818         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1819         perform an optimized compare on some selected special occasions,
1820         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1821         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1822         generate an IVT any more,
1823         * src/pic16/main.c (pic16_optionsTable): added command line option
1824         --optimize-cmp,
1825         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1826         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1827         macros,
1828         * src/pic16/NOTES: Raphael Neider added in list of active developers
1829         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1830         jumptable_end to prevent bug #,
1831         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1832         inCond and outCond fields,
1833         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1834         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1835         turn off register spilling,
1836         * (packRegsForOneUse): synced with other ports' versions although it
1837         is not used currently,
1838         * (pic16_packRegisters): added an optimization while reading
1839         structure bitfields, some registers may be saved (malloc code is
1840         decreased by 80 bytes)
1841
1842 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1843
1844         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1845         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1846         this can be optimized more?
1847
1848 2005-03-10 Raphael Neider <rneider AT web.de>
1849
1850         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1851           genNearPointerGet): (hopefully) fixed access to bitfields via
1852           pointers (p->bitN = x; and x = p->bitN; failed)
1853
1854 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1855
1856         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1857
1858 2005-03-09 Raphael Neider <rneider AT web.de>
1859
1860         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1861
1862 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1863
1864         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1865         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1866           (regTypeNum): set REG_BIT type if necessary
1867         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1868         * support/regression/tests/critical.c: check bug 1144613
1869
1870 2005-03-02 Raphael Neider <rneider AT web.de>
1871
1872         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1873
1874 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1875
1876         * src/avr/ralloc.c (serialRegAssign),
1877         * src/ds390/ralloc.c (serialRegAssign),
1878         * src/hc08/ralloc.c (serialRegAssign),
1879         * src/mcs51/ralloc.c (serialRegAssign),
1880         * src/pic/ralloc.c (serialRegAssign),
1881         * src/pic16/ralloc.c (serialRegAssign),
1882         * src/xa51/ralloc.c (serialRegAssign),
1883         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1884
1885 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1886
1887         * src/SDCCast.c (decorateType): fixed bug 1124787
1888
1889 2005-02-20 Hubert Sack <sack AT digiplan.de>
1890         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1891
1892         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1893         patch #1121755
1894
1895 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1896
1897         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1898         to keep the correct label reference count when adding/removing references
1899         to labels. A peephole file using this is appended to patch #1144962.
1900
1901 2005-02-14 Raphael Neider <rneider AT web.de>
1902
1903         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1904         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1905         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1906           retrievals of result operand's value on assignment
1907
1908 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1909
1910         * device/include/pic16/string.h: modified prototype for memccpy()
1911         to memccpy(void *, void *, char, size_t)
1912         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1913         check whether to omit frame pointer or not,
1914         * (genInline): convert all occurences of "\n" to LF in inline
1915         assembler blocks, this helps formatting the inline text,
1916         * (pic16_loadFSR0): modified prototype,
1917         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1918         removed some 8051 legacy code,
1919         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1920         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1921         before allocating temporary registers in functions,
1922
1923 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1924
1925         * support/regression/tests/bitvars.c: corrected the "fix"
1926
1927 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1928
1929         * support/regression/tests/bitvars.c,
1930         * support/regression/tests/bitwise.c,
1931         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1932
1933 2005-02-10 Raphael Neider <rneider AT web.de>
1934
1935         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1936           different size for Alpha
1937         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1938
1939 2005-02-09 Raphael Neider <rneider AT web.de>
1940
1941         * src/SDCC.lex(doPragma) : save and restore warning options as well
1942           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1943         * have #pragma less_pedantic set the errorlevel to WARNING
1944           (fixes #1117001)
1945         * (cloneOptimize) : fixed wrong malloc's size
1946         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1947           facilitate correct handling of #pragma (save|restore)
1948
1949 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1950
1951         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1952
1953 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1954
1955         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1956
1957 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1958
1959         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1960
1961 2005-02-02 Raphael Neider <rneider AT web.de>
1962
1963         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1964         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1965         * (pic16_storeForReturn): fixed to allow returning function pointers
1966         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1967         * device/include/pic16/{stddef.h,stdbool.h}: added
1968
1969 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1970
1971         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1972
1973 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1974
1975         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1976         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1977          appeared to be required
1978
1979 2005-01-31 Borut Razem <borut.razem AT siol.net>
1980
1981         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1982           include/mcs51 and include/z80 directories to the package
1983
1984 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1985
1986         * src/hc08/gen.c (genFunction): fixed bug #1112752
1987
1988 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1989
1990         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1991
1992 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1993
1994         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1995
1996 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1997
1998         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1999
2000 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
2001
2002         * device/include/c8051fxxx.h: removed these 6 files
2003         * device/include/mcs51/c8051fxxx.h: added these 11 new files
2004
2005 2005-01-26 Raphael Neider <rneider AT web.de>
2006
2007         * src/pic16/gen.c (genAssign): fixed assignment from longs
2008           in codespace (were cut to three bytes)
2009         * (genDummyRead): implemented (except for CODESPACE...),
2010           fixed bug #1108575
2011         * src/pic16/glue.c (emitStatistics): beautified
2012         * device/lib/pic16/libm/Makefile: added include path
2013
2014 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2015
2016         * src/z80/gen.c (aopPut): fixed bug #1103902
2017
2018 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2019
2020         * device/lib/expf.c: fixed bug #1095792
2021
2022 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
2023
2024         * device/lib/pic16/libm: added Math library sources
2025
2026 2005-01-24 Raphael Neider <rneider AT web.de>
2027
2028         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
2029           to enable upcast to pCodeOpReg2 (there is no type tag to
2030           differenciate the two and pic16_popGet2p cast into PCOR2)
2031         * src/pic16/main.c (_process_pragma): fixed another malloc bug
2032           (sizeof(sectNames) changed to sizeof(sectName))
2033           Both patches fix segfaults under MinGW.
2034
2035 2005-01-23 Raphael Neider <rneider AT web.de>
2036
2037         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
2038           Safe_[mc]?alloc()'ed variables
2039         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
2040           of (byte sized) temporaries (assign them to WREG for now)
2041         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
2042           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
2043           this might fix SIGSEGVs on MinGW...
2044         * src/SDCCopt.c (killDeadCode): restored original behaviour
2045           (volatile operands might get thrown away though)
2046
2047 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
2048
2049         * src/pic16/gen.c: fixed bug #1106975,
2050         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
2051         pointer update, INTCON is saved, global interrupts are disabled and
2052         restored after updateing TOS.
2053         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
2054         * added function attribute 'shadowregs' to take advantage of shadow
2055         registers,
2056         * added function attribute 'wparam' as an alternative to the wparam
2057         pragma,
2058         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
2059         user declares a non-ISR function as 'shadowregs',
2060         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
2061
2062 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
2063
2064         * .version: bumped version number to 2.4.8
2065         * device/lib/pic16/pics.all: list of PIC18F devices supported by
2066         pic16 port,
2067         * device/lib/pic16/libio/i2c/: I2C module support library,
2068         * device/include/pic16/i2c.h: I2C support library header,
2069         * device/lib/pic16/libc/stdio/: standard IO support sources,
2070         * (printf_small.c): printf_small() source, supports float print,
2071         * (printf_tiny.c): printf_tiny() source, does not support floats,
2072         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
2073         enable global optimizations for entire library source, other
2074         Makefiles in the source tree are also modified to reflect this,
2075         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
2076         function,
2077         * doc/sdccman.lyx: updated to reflect new changes,
2078         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
2079         sym->onStack if-case,
2080         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
2081         sbit, idata, _idata, xdata, _xdata,
2082         * added pragma library, to link an external library, (see doc),
2083         * removed command line options, --pomit-config-words, --pomit-ivt,
2084         --pleave-reset-vector,
2085         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
2086         when calling assembler to reflect memory model used, also define
2087         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
2088         reflect stack model used,
2089         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
2090         on stack return NULL,
2091
2092 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2093
2094         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
2095           of the operands is volatile. Fixes #1020220
2096
2097 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
2098
2099         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
2100         * (OptimizeRegUsage): make sure that there is really no other flow where
2101           the first pCode is used
2102
2103 2005-01-22 Raphael Neider <rneider AT web.de>
2104
2105         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
2106           to fix #1106967 (pCode->seq are not set up correctly)
2107
2108 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2109
2110         * src/SDCCglue.c (glue): make sure code area is declared before the
2111         static initialization area.
2112
2113 2005-01-21 Raphael Neider <rneider AT web.de>
2114
2115         * device/lib/Makefile.in: fixed test for pic16 install dir
2116         * device/lib/pic16/*/Makefile*: modified compile flags to enable
2117           optimizations
2118         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
2119           added --optimize-goto compiler switch and pragma wparam documentation
2120         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
2121         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
2122           and PRODH closing bug #1071770 (peephole optimizer)
2123
2124 2005-01-19 Raphael Neider <rneider AT web.de>
2125
2126         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
2127           cmdLine buffers (used when calling sdcpp...) are large enough
2128           (MAX_PATH=256 truncates arguments leading to system halts when
2129           used in MinGW...)
2130         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
2131         * (genUminus): rewritten to for efficiency
2132         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
2133           used uninitialized in some cases)
2134         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
2135           copy the third byte from the int -- now assumes 0x80 (data memory)
2136         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
2137           operands (genAddLit expects the iCode's operands to swapped as
2138           well), fixed leftover bytes (crashed for short left operands)
2139         * (pic16_genMinusDec): performance improvements, removed false
2140           PIC14 emitSKPNCs
2141         * (pic16_genMinus): fixed to cope with differently sized operands
2142         * src/pic16/glue.c (pic16_glue): added new banksel optimization
2143           for --obanksel > 1
2144         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
2145         * src/pic16/graph.[ch]: implementation of directed graphs, used by
2146           new banksel optimization
2147         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
2148           analysis for temporary registers (segfaults...)
2149         * src/pic16/peeph.def: added rule
2150
2151 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
2152
2153         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
2154         which converts a float number to its ASCII representation
2155         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
2156         functions to convert the fractional and integer part of a float to ASCII,
2157         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
2158         realloc.c): added _MALLOC_SPEC to explicit place variables in data
2159         ram
2160         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
2161         _STATMEM macros,
2162         * device/include/pic16/adc.h: added GPL info,
2163         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
2164         a pCodeOp as tested operand,
2165         * (genNearPointerGet): optimized bit testing, does not use
2166         intermediate register for bit value, test directly instead with
2167         BTFSS, BTFSC, works only for single bits,
2168         * (genpic16Code): dump the name of the iCode in the asm,
2169         * src/pic16/ralloc.c (decodeOp): removed static declaration and
2170         renamed to pic16_decodeOp,
2171         * (serialRegAssign): do not allocate a temporary register for iCode
2172         sequences that test a single bit for 1/0
2173
2174 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
2175
2176         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
2177         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
2178         access stack and frame pointers. They are initially assigned to
2179         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
2180         accessing SFRs. Updated all occurences of modification of stack or
2181         frame pointer in gen.c and pcode.c,
2182         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
2183         assigning of a literal value to pointers,
2184         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
2185         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
2186         selected
2187
2188 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
2189
2190         * doc/sdccman.lyx: update documentation about stack pragma, added
2191         some info for stack memory models
2192
2193 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2194
2195         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
2196
2197 2005-01-08 Raphael Neider <rneider AT web.de>
2198
2199         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
2200           udata sections to fix bug #1097823
2201
2202 2005-01-05 Raphael Neider <rneider AT web.de>
2203
2204         * src/pic16/gen.c (genGenericShift): added handling of differently
2205           sized left operand and result
2206
2207 2005-01-04 Raphael Neider <rneider AT web.de>
2208
2209         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
2210         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
2211           to hold the condition bit)
2212         * added new version of genCmp (old code available via #define)
2213         * added new version of genShiftLeft/genShiftRight in a generic
2214           way, now supports shifting by negative values
2215         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
2216           shiftCount (expected by genGenericShift)
2217         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
2218         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
2219           dump
2220         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
2221           is an invalid literal too...)
2222
2223 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
2224
2225         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
2226         from Raphael Neider,
2227         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
2228         for 8-bit literals. This fixes some literal operands which are sign
2229         extended to 16-bits ints when instruction needs only 8-bits.
2230
2231 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
2232
2233         * device/lib/logf.c: added mcs51 assembly version
2234         * device/lib/expf.c: added mcs51 assembly version
2235         * device/lib/_logexpf.c: new shared asm code for expf and logf
2236         * device/include/math.h: add defines for assembly math library
2237         * device/lib/Makefile.in: build new _logexpf.c
2238         * device/lib/libfloat.lib: use new _logexpf.c
2239
2240 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2241
2242         * src/pic/device.c
2243         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
2244           device types which have less than 0x7f registers.
2245
2246 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
2247
2248         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
2249
2250 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2251
2252         * device/lib/printf_fast.c: only build on supported arch.
2253         * device/lib/printf_tiny.c: only build on supported arch.
2254         * device/lib/printf_fast_f.c: only build if asm float lib
2255         * device/lib/_fsget1arg.c: only build if asm float lib
2256         * device/lib/_fsget2args.c: only build if asm float lib
2257         * device/lib/_fsnormalize.c: only build if asm float lib
2258         * device/lib/_fsreturnval.c: only build if asm float lib
2259         * device/lib/_fsrshift.c: only build if asm float lib
2260         * device/lib/_fsswapargs.c: only build if asm float lib
2261         * device/include/stdio.h: don't provide print_fast,
2262           print_fast_f, print_tiny prototypes if --xstack used
2263
2264 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
2265
2266         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
2267         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
2268           to the SOURCES
2269
2270 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
2271
2272         * device/lib/printf_fast_f.c: same as printf_fast, but
2273           with floating point enabled
2274         * device/lib/printf_fast.c: minor tweaks
2275         * device/include/stdio.h: add printf_fast_f
2276
2277 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2278
2279         * src/SDCCmain.c: make --float-reent default for mcs51
2280         * device/lib/_fsadd.c: added mcs51 assembly version
2281         * device/lib/_fssub.c: added mcs51 assembly version
2282         * device/lib/_fsmul.c: added mcs51 assembly version
2283         * device/lib/_fsdiv.c: added mcs51 assembly version
2284         * device/lib/_fseq.c: added mcs51 assembly version
2285         * device/lib/_fsneq.c: added mcs51 assembly version
2286         * device/lib/_fsgt.c: added mcs51 assembly version
2287         * device/lib/_fslt.c: added mcs51 assembly version
2288         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
2289         * device/lib/Makefile.in: add _fscmp to build
2290         * device/lib/libfloat.lib: add _fscmp to build
2291
2292 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2293
2294         * device/lib/_fs2slong.c: added mcs51 assembly version
2295         * device/lib/_fs2sint.c: added mcs51 assembly version
2296         * device/lib/_fs2schar.c: added mcs51 assembly version
2297         * device/lib/_fs2ulong.c: added mcs51 assembly version
2298         * device/lib/_fs2uint.c: added mcs51 assembly version
2299         * device/lib/_fs2uchar.c: added mcs51 assembly version
2300         * device/lib/_slong2fs.c: added mcs51 assembly version
2301         * device/lib/_sint2fs.c: added mcs51 assembly version
2302         * device/lib/_schar2fs.c: added mcs51 assembly version
2303         * device/lib/_ulong2fs.c: added mcs51 assembly version
2304         * device/lib/_uint2fs.c: added mcs51 assembly version
2305         * device/lib/_uchar2fs.c: added mcs51 assembly version
2306         * device/include/float.h: added #define to select asm vs c
2307
2308 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2309
2310         * device/lib/printf_fast.c: improvements to float output
2311         * device/include/float.h: add defines for assembly float library
2312         * device/lib/_fsget1arg.c: receive 1 float arg
2313         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2314         * device/lib/_fsnormalize.c: normalize a float
2315         * device/lib/_fsreturnval.c: return float, various helper routines
2316         * device/lib/_fsrshift.c: right shift a float's mantissa
2317         * device/lib/_fsswapargs.c: swap 2 floats
2318         * device/lib/Makefile.in: build these 6 new files for mcs51
2319         * device/lib/libfloat.lib: add these 6 files to the library
2320
2321 2004-12-26 Borut Razem <borut.razem AT siol.net>
2322
2323         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2324           built by gcc 3.4.2
2325
2326 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2327
2328         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2329           and fully reentrant and register bank neutral.
2330         * device/lib/printf_fast.c: added float (not enabled by default),
2331           added compact/slower integer (also not enabled by default),
2332           improved size/speed of fast integer code, other minor changes
2333         * device/include/stdio.h, device/lib/Makefile.in,
2334           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2335
2336 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2337
2338         * src/pic16/pcode.c: declaring variables other than at the start of a
2339           block is not supported in C by VC6.
2340
2341 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2342
2343         * applied a previous patch from Raphael Neider that wasn't included
2344         in the previous commits, which fixes infinite loops within jumptable
2345         improvements,
2346         * made some fixes that previous patches introduced
2347
2348 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2349
2350         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2351         that fixes an issue with AOP_PCODE asmop's offset,
2352         * (pic16_popCopyReg): update instance field too,
2353         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2354         function of pic port,
2355         * (genCmp, genAnd, genAssign),
2356         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2357
2358 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2359
2360         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2361         variables initial values to idata section,
2362         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2363         variables in some functions. This utilizes parmBytes field of iCode
2364         structure to hold the offset of the variable in stack. (might be
2365         able to use the stack field too?)
2366         * applied patch from Raphael Neider # ### , # ###
2367         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2368         variable initial values in idata section,
2369         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2370         for static variables with initial value
2371         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2372         applied fix in while loop from Raphael Neider.
2373
2374 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2375
2376         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2377         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2378         * src/ds390/ralloc.c (serialRegAssign): spill bits
2379         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2380         * support/Util/SDCCerr.c,
2381         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2382         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2383         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2384
2385 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2386
2387         * device/include/sdcc-lib.h: inserted LGPL, added includes
2388           asm/ds390/features.h and asm/mcs51/features.h
2389         * device/include/asm/default/features.h,
2390         * device/include/asm/gbz80/features.h,
2391         * device/include/asm/z80/features.h: added empty _AUTOMEM
2392           and _STATMEM
2393         * device/include/asm/ds390/features.h,
2394         * device/include/asm/mcs51/features.h: added files with defines for
2395           _AUTOMEM and _STATMEM indicating automatic and static storage class
2396         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2397         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2398         * src/SDCCicode.c (geniCodeCast),
2399         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2400         * src/SDCCloop.c (loopInduction): removed unused variable lr
2401         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2402           to convertToFcall to include char modulo (RFE 1065037), added check
2403           if left operand is unsigned and use abs of literal value
2404         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2405           as it doesn't work after conversion from peephole.def to peephole.rul
2406         * src/mcs51/gen.c (toBoolean): added check for size,
2407           (genModOneByte): optimized code for signed char modulo a literal
2408           power of 2 (thanks to Hubert Sack),
2409           (genRRC): removed unnecessary "clr c",
2410           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2411         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2412           jump optimization,
2413           swapped rules 256.c and 256.d,
2414           extended 256.d by using new multiple checks (thanks Erik),
2415           added rules 256.e and 256.f,
2416           updated rule 261.a and 261.b to new generated code
2417         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2418
2419 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2420
2421         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2422           induction related bugs, including first part of bug #1074377
2423
2424 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2425
2426         * applied patch from bug-report #1076292,
2427         * applied patches for genAnd and Goto-optimizations for Raphael
2428         Neider,
2429         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2430         dump a less iCode information,
2431         * src/pic16/device.h (pic16_options_t): added field debgen,
2432         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2433         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2434         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2435         puclic,
2436         * (various functions): added macros FENTRY and FENTRY2 to functions,
2437         to emit function prologue,
2438         * (various functions): fixed indentation,
2439         * (genNearPointerGet): fixed loading of FSR0,
2440         * (genPackBits): applied patch from Raphael Neider to fix updating
2441         of FSR0 and touching only the modified bits,
2442         * src/pic16/genarith.c (various functions): added macros FENTRY to
2443         emit function prologue in comments,
2444         * src/pic16/pcode.h: added functions debugf2, debugf3,
2445         * src/pic16/ralloc.c: partial fix for packForPush caused
2446         segmentation fault,
2447
2448 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2449
2450         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2451           <stsp AT users.sourceforge.net> with reversed byte order
2452         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2453
2454 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2455
2456         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2457           bug #1074377
2458         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2459         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2460
2461 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2462
2463         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2464
2465 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2466
2467         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2468           conditions,
2469           (setFromConditionArgs): friendly operand parser for peephole rules,
2470           (operandBaseName, operandsNotRelated): new peephole condition
2471           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2472           architecture specific register naming into account, handles n-way
2473           comparisons, and supports quoted literals
2474         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2475
2476 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2477
2478         * src/mcs51/peeph.def: fixed bug #1076940
2479
2480 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2481
2482         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2483
2484 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2485
2486         Adding support for replacing ljmps with sjmps in jumptables
2487         generated for switch statements. For now you need to set the
2488         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2489         Now 4 algorithms for mcs51 jumptable generation are used:
2490         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2491         addresses loaded pc-relative for up to 112 cases and stack-pushing
2492         target addresses loaded with offset from dptr for up to 256 cases.
2493
2494         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2495         * src/mcs51/main.c: adapted constants for switch table generation
2496         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2497
2498 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2499
2500         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2501         * support/regression/tests/bug1057979.c: added test for bug 1073386
2502
2503 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2504
2505         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2506         compilers
2507
2508 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2509
2510         * src/pic16/device.h,
2511         * src/pic16/genarith.c,
2512         * src/pic16/glue.c,
2513         * src/pic16/main.c,
2514         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2515
2516 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2517
2518         Large cummulative patch for pic16 port.
2519         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2520         to call when a stack overflow occurs,
2521         * (malloc.h): added CVS Id tag,
2522         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2523         variable,
2524         * added libc directory. The current version of LibC contains string
2525         functions, ctype functions and macros and some functions of the
2526         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2527         be extensively tested in the future. Standard disclaimer here.
2528         Library is not automatically build yet. But one can build it by
2529         invoking 'make' inside the libc directory.
2530         * added ADC library under libio. Preliminary version yet.
2531
2532         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2533         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2534         aopForRemat() now and not by pic16_aopOp(),
2535         * (pic16_popGetTempReg): removed warning messgae when allocating
2536         temporary registers, its a buggy feature and will be removed,
2537         * (pic16_popGet): set register instance field in AOP_CRY,
2538         * (pic16_outBitC): fixed for results in size greater than 1,
2539         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2540         * (pic16_storeForReturn): optimized return of 0,
2541         * (genCmp): experimental code for new genCmp which uses PIC18's
2542         special compare&skip instructions. Initial tests fail some times
2543         with variables grater than 1 byte in size, so new code is disabled,
2544         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2545         a single bit,
2546         * (genCast): began a fix to optimize the casting of a bit to another
2547         bit, now assigning a bitfield to another bitfield will fail, sorry,
2548         * src/pic16/main.c: disabled the use of lr-support feature,
2549         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2550         * added some function prototypes, added function _debugf prototype,
2551         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2552         bits with offset (case PO_GPR_BIT),
2553         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2554         command line,
2555         * (isBankInstruction): modified to return 0 for no banking instruction,
2556         and 1 for banking instruction,
2557         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2558         caused stop processing pCodes after a inline assembly block,
2559         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2560         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2561         registers when it shouldn't,
2562         * src/pic16/ralloc.c (allocReg): add preliminary support for
2563         supporting a limited set of temporary registers,
2564
2565 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2566
2567         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2568           genDataPointerSet): ensure assignments always copy in MSB to LSB
2569           order,
2570           (loadRegFromAop): recognize CLRH optimization,
2571           (genFunction): optimize RECEIVE iCodes in reentrant functions
2572
2573 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2574
2575         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2576           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2577           selected.
2578         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2579         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2580           contiguous with data
2581
2582 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2583
2584         * device/lib/_gptrget.c (_gptrget),
2585         * device/lib/_gptrgetc.c (_gptrgetc),
2586         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2587           instead of sjmp to ret
2588         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2589           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2590
2591 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2592
2593         * .version: bumped version to 2.4.7
2594         * device/lib/_gptrget.c (_gptrget): is now _naked
2595         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2596         * device/lib/_gptrput.c (_gptrput): is now _naked
2597         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2598           (createFunction): fixed xstack
2599         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2600         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2601           or bit either,
2602           (geniCodeCritical): store original interrupt state in an iTemp bit
2603           var unless stack-auto
2604         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2605         * src/SDCCmain.c (setIncludePath): added include/target to search path
2606         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2607         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2608           prototype,
2609           (processFuncArgs): put bit vars in bit area
2610         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2611           unsaveRBank): fixed xstack,
2612           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2613           (genFunction, genEndFunction): fixed xstack,
2614           (genAssign): optimization don't walk backwards through mem
2615         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2616         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2617         * support/regression/Makefile: also make library (for stack-auto) when
2618           making "all" and added "test-mcs51-xstack-auto"
2619         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2620         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2621         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2622         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2623         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2624           make-library by MAKE_LIBRARY
2625         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2626           regression tests for xstack
2627         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2628         * support/regression/tests/critical.c: test for critical on mcs51
2629
2630 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2631
2632         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2633           built version of sdcc instead of installed version
2634
2635 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2636
2637         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2638         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2639           vprintf.c now
2640         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2641         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2642           WARNING: remove device/lib/build/z80/printf.o by hand when
2643           updating from previous build!
2644         * device/lib/z80/printf.c: updated comment
2645         * support/regression/tests/bug1057979.c: test all ports now
2646         * support/regression/tests/bug1065458.c: file added
2647
2648 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2649
2650         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2651           *_start and *_end symbols for static functions
2652
2653 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2654
2655         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2656           and search crt0.o in all library paths,
2657           (setIncludePath): proper handling of --nostdinc,
2658           (setLibPath): proper handling of --nostdlib
2659         * support/regression/Makefile,
2660         * support/regression/ports/ds390/spec.mk,
2661         * support/regression/ports/gbz80/spec.mk,
2662         * support/regression/ports/hc08/spec.mk,
2663         * support/regression/ports/mcs51/spec.mk,
2664         * support/regression/ports/mcs51-large/spec.mk,
2665         * support/regression/ports/mcs51-stack-auto/spec.mk,
2666         * support/regression/ports/z80/spec.mk: use include and lib files from
2667           built version of sdcc instead of installed version
2668         * doc/sdccman.lyx: fixed typo in --nostdinc
2669
2670 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2671
2672         * src/pic/pcode.c,
2673         * src/pic/device.c,
2674         * src/pic/ralloc.c,
2675         * src/pic/gen.c : added support to generate code for struct bit fields.
2676
2677 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2678
2679         * as/xa51/xa_version.h,
2680         * device/include/errno.h,
2681         * device/include/regc515c.h,
2682         * device/lib/_itoa.c,
2683         * device/lib/_ltoa.c,
2684         * device/lib/ser_ir_cts_rts.c,
2685         * sim/ucsim/xa.src/glob.cc,
2686         * sim/ucsim/xa.src/inst_gen.cc,
2687         * sim/ucsim/xa.src/xa_bit.cc,
2688         * sim/ucsim/xa.src/xa_sfr.cc,
2689         * sim/ucsim/z80.src/inst_dd.cc,
2690         * sim/ucsim/z80.src/inst_fdcb.cc,
2691         * support/scripts/keil2sdcc.pl,
2692         * src/pic16/pic16.dsp,
2693         * src/pic16/pic16a.dsp: corrected cvs line endings
2694         * device/lib/printf_large.c: fixed bug 1057979
2695         * src/pic16/gen.c: fixed non-C standard code
2696         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2697         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2698         * support/regression/ports/mcs51/support.c: reload T1 asap
2699         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2700           pdata use and clear idata startup behaviour
2701         * support/regression/tests/bug1057979.c: added
2702
2703 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2704
2705         * device/examples/ds390/ow390/ad26.h,
2706         * device/examples/ds390/ow390/cnt1d.h,
2707         * device/examples/ds390/ow390/crcutil.c,
2708         * device/examples/ds390/ow390/ownet.h,
2709         * device/examples/ds390/ow390/owsesu.c,
2710         * device/examples/ds390/ow390/swt12.h,
2711         * device/examples/ds390/ow390/swtoper.c,
2712         * device/examples/ds390/ow390/temp10.h,
2713         * device/examples/ds390/ow390/thermodl.c,
2714         * device/examples/ds390/tinitalk/tinitalk.dsp,
2715         * device/examples/ds390/tinitalk/tinitalk.dsw,
2716         * device/examples/mcs51/clock/hw.h,
2717         * device/examples/mcs51/simple2/go.bat,
2718         * device/examples/serialcomm/windows/serial.h,
2719         * device/examples/xa51/dummy.c,
2720         * device/examples/xa51/hello.c,
2721         * device/include/80c51xa.h,
2722         * device/include/at89x051.h: corrected cvs line endings
2723
2724 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2725
2726         * src/pic16/main.c (options): added command line --gstack, to trace
2727         stack over/under flows,
2728         * added pragma 'wparam' to allow passing first byte of function
2729         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2730         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2731         call to __gstack_test function and sets up the symbol as extern,
2732         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2733         * popaop): added call to pic16_testStackOverflow,
2734         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2735         wparamList list,
2736         * (genCall, genPcall): now all parameters are passed via stack
2737         except in functions that are pass to wparam pragma in which WREG is
2738         used too,
2739         * (genPcall): REENTRANT flag is checked to see if variable prototype
2740         contains reentrant keyword, don't call a non-reentrant function, via
2741         a reentrant function pointer or vice versa, functions are never
2742         passed via WREG,
2743         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2744         D.Winkler,
2745         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2746         SIGSEGV when accessing a NULL register stucture,
2747         * (pic16_printGPointerType): modified to handle UPPER modifier for
2748         function initializers, changed prototype of function to simpler one,
2749         * (pic16_printIvalFuncPtr): check to see if function is already
2750         added in externs list,
2751         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2752         optimized a move from W to SFR with a move to the same register
2753         later after a CALL,
2754         * device/lib/pic16/debug: NEW directory, contains debug features
2755         which are enabled when linking with libdebug.lib, currently command
2756         line option --gstack enables stack pointer tracing for over/under
2757         flow, corresponding sources are in debug/gstack
2758
2759 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2760
2761         * doc/sdccman.lyx: updated SDCC version,
2762         * (PIC16 port): update list of command line options,
2763         * src/pic16/device.h (structure pic16_options_t): added field gstack
2764         to enable stack overflow tracing on push/pops,
2765         * src/pic16/device.c (statistics structure): added statistics
2766         structure,
2767         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2768         pic16_dump_int_registers): increase statistics counters for each
2769         * variable which is encountered
2770         * (pic16_dump_usection): emit each .udata variable to its own udata
2771         section,
2772         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2773         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2774         parameters via stack, otherwise use old scheme,
2775         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2776         assembler output file,
2777         * src/pic16/main.c: added command line options --gstack to enable
2778         push/pop tracing for stack overflow,
2779         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2780         instructions): added size of each instruction,
2781         * (pic16_countInstruction): estimate size of instructions in
2782         the_pFile list, inline assembly blocks are not counted,
2783         * (pic16_FixRegisterBanking): trace previous register usage, when
2784         banksel optimizations is greater than 0, don't emit a redudant
2785         banksel directive,
2786
2787 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2788
2789         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2790         * src/pic16/ralloc.c : applied same fix for pic16.
2791         * src/pic/gen.c : tidied it up a little.
2792
2793 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2794
2795         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2796         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2797
2798 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2799
2800         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2801
2802 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2803
2804         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2805         non-reentrant function __modsint in the interrupt function (thus
2806         corrupting math operations during serial I/O)
2807         * device/lib/ser_ir.c: as above, changed buffersize
2808         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2809         256.c,d for zeroing
2810         * doc/Makefile: added option -t for rsync
2811
2812 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2813
2814         * src/SDCCast.h (struct ast),
2815         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2816
2817 2004-10-20 Borut Razem <borut.razem AT siol.net>
2818
2819         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2820         package
2821
2822 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2823
2824         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2825         makefile targets,
2826         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2827         support functions to replace long sequences of MOVFF's from access
2828         bank registers to stack and vice versa,
2829         * src/pic16/device.h: added new field opt_flags, where optimization
2830         flags can be set to enable certain features,
2831         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2832         * pBlock, (genFunction, genEndFunction): surroung loop for
2833         saving/loading used registers in stack with PC_INFO pCodes,
2834         INF_LREGS. Code in between can then be optimized by pCode optimizer
2835         to support function calls,
2836         * (genDataPointerSet): fixed bug which loaded float fields in
2837         structures with corrupt data,
2838         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2839         in a standard way debug info on stderr. Feature used for developing
2840         and debugging only,
2841         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2842         obsolete chunks of code,
2843         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2844         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2845         * pic16/src/pcode.c (pic16_newpCodeInfo,
2846         * (pic16_newpCodeOpLocalRegs),
2847         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2848         feature,
2849         * (pic16_pCodeConstString): printing of the initial value of a
2850         symbol as a comment is inhibited since parsing was already done by
2851         copyStr and output is corrupt,
2852         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2853
2854 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2855
2856         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2857
2858 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2859
2860         * as/mcs51/lkarea.c: removed old K&R style,
2861           (lnksect): changed check on boundary error,
2862           (lnksect2): changed check on boundary error,
2863           (lnksect2): extend XSTK to end of page if size = 1
2864         * as/mcs51/lkmain.c: removed old K&R style,
2865           (Areas51): create l_IRAM symbol
2866         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2867         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2868           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2869         * device/lib/_mullong.c: added version to be compiled with xstack
2870         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2871         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2872         * device/lib/mcs51/crtxstack.asm: fixed comment
2873         * src/SDCCglue.c: maxInterrupts defaults to 0,
2874           (emitMaps): added pdata,
2875           (createInterruptVect): (re)moved default,
2876           (glue): added pdata,
2877           (glue): moved __start__xstack to XSTK with default size 1
2878         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2879           and options.float_rent when options.stackAuto is set,
2880           (linkEdit): only write XDATA_NAME if provided on command line
2881         * src/SDCCmem.h,
2882         * src/SDCCmem.c: added pdata
2883         * src/port.h: added pdata_name to PORT
2884         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2885           (saveRegisters, unsaveRegisters): removed usage of B,
2886           (genMinus): fixed accumulator clash,
2887           (genJumpTab): added comment, this needs another look
2888         * src/mcs51/gen.c: added check for "B in use" paranoia,
2889           added pushB() and popB()
2890         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2891           chance
2892         * src/avr/main.c,
2893         * src/ds390/main.c,
2894         * src/hc08/main.c,
2895         * src/mcs51/main.c,
2896         * src/pic/main.c,
2897         * src/pic16/main.c,
2898         * src/xa51/main.c,
2899         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2900           added PSEG (PAG,XDATA) or NULL to port specifier
2901         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2902         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2903           (_mcs51_genInitStartup): removed __start__xstack equ,
2904           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2905         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2906         * src/z80/gen.c (_rleAppend): fixed warnings
2907         * support/regression/tests/zeropad.c: added pdata test
2908         * .version: bumped to 2.4.6
2909
2910 2004-10-17 Borut Razem <borut.razem AT siol.net>
2911
2912         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2913         as a part of nightly build
2914
2915 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2916
2917         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2918         WREG holds the first byte function parameters,
2919         * (aopForSym): take special case for symbols which are in FARSPACE
2920         but in CODESPACE too,
2921         * (assignResultValue): modified to take into account _G.useWreg,
2922         * (genCall): don't use wreg for parameter passing when function is
2923         declared as reentrant, too, added optimization INCF to stack
2924         pointer when stack parameter count is 1,
2925         * (genFunction, genEndFunction): refurnished and fixed to not using
2926         wreg for passing parameters when function has varargs or is
2927         reentrant, fixed bug with symbol name compare for generating
2928         functions in absolute address,
2929         * (pic16_storeForReturn): refurnished,
2930         * (genCmp): began writing a new version of the function, not ready
2931         yet, therefore it is disabled,
2932         * (genAssign): do not read code memory when assigning a function to
2933         a pointer function,
2934         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2935         array of characters, not pointer,
2936         * (pic16initialComments): in debug mode emit an .ident directive for
2937         the assembler,
2938         * (_process_pragma): emit a new warning type (internal to pic16)
2939         when setting stack to default length, emit a similar warning when
2940         placing a function at absolute address and address is not word aligned
2941         * (_pic16_parseOptions): added 'return TRUE' statement,
2942         * (_pic16_linkEdit): if compiling a source, then add the source's
2943         file object, first in the list of objects to link,
2944
2945 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2946
2947         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2948         * src/pic/main.c : removed VC warning.
2949         * src/pic/gen.c : changed comment.
2950
2951 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2952
2953         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2954         reference to a deprecated symbol _GPTRREG was causing failure to
2955         link. Thanks G. M. Gallant for the info.
2956
2957 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2958
2959         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2960         comments for Bugs item #954788.
2961
2962 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2963
2964         * src/pic16/device.c (pic16_dump_gsection,
2965         * pic16_groupRegistersInSection): handle symbols declared to be in
2966         access bank differently,
2967         * src/pic16/gen.c (struct _G): added field resDirect,
2968         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2969         send values read from stack directly to result and don't allocate
2970         temporary values,
2971         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2972         same registers,
2973         * (pic16_sameRegsOfs): NEW,
2974         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2975         free because they were not allocated from temporary pool,
2976         * pic16_popRegFromString): workaround to fix a problem with
2977         allocating variables twice or never,
2978         * (genGenPointerGet): using PRODL instead of FSR0H,
2979         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2980         instead of FSR0H,
2981         * (genAssign): take advantage of the _G.resDirect flag,
2982         * (genCast): around line 11844, use mov2f instead of directly
2983         MOVFF'ing between operands to account for literal values,
2984         * src/pic16/genutils.c: some new debug functions for gpsim have been
2985         added,
2986         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2987         float with integer part only,
2988         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2989         place variables in access bank
2990         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2991         updated sources to reflect recent changes in gen.c
2992
2993 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2994
2995         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2996         sources that searched for headers in installation path, now the
2997         device/include/pic16 is used,
2998         * src/pic16/glue.c (pic16glue),
2999         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
3000         .line directives if not in debug mode, this suppresses assembler's
3001         warnings for ignored directives
3002
3003 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
3004
3005         * src/port.h: made reset_regparms prototype void parameter explicit.
3006         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
3007         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
3008         * doc/sdccman.lyx: documented warning disabling and how to use
3009           printf_large to make it print floats.
3010         * device/include/stdbool.h: NEW
3011         * device/lib/_atof.c,
3012         * device/lib/_divuint.c,
3013         * device/lib/_divulong.c,
3014         * device/lib/expf.c,
3015         * device/lib/printf_large.c,
3016         * device/lib/sincosf.c,
3017         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
3018         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
3019           a completely reentrant lib.
3020
3021 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
3022
3023         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
3024         * device/include/pic16/stdio.h: fixed bug with colon
3025
3026 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
3027
3028         * device/include/pic16/stdio.h,
3029         * device/include/pic16/stdlib.h,
3030         * device/include/pic16/math.h: NEW
3031         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
3032         declared as _naked to reduce overhead
3033         * device/lib/Makefile.in (target port-specific-objects-pic16):
3034         changed * to *.* so to ignore the CVS directory,
3035         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
3036         stacked variables back in stack,
3037         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
3038         corruption
3039
3040 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
3041
3042         * .version: bumped version number to 2.4.5
3043         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
3044         * support/Util/SDCCerr.c (messages structure): added entry for
3045         W_POSSBUG2
3046
3047         Large cumulative patch for pic16 port and libraries.
3048         * device/include/pic16/sdcc-lib.h,
3049         * device/include/pic16/stdarg.h,
3050         * device/include/asm/pic16/features.h,
3051         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
3052         * device/include/pic16/float.h: changes reentrant keyword with
3053         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
3054         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
3055         updated target build-libraries to include objects from gptr,
3056         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
3057         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
3058         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
3059         all function headings,
3060         * src/SDCCmain.c: added global parameter userIncDirsSet,
3061         * (parseCmdLine): when option -I is encountered add directory to
3062         userIncDirsSet too,
3063         * src/version.awk: added space between control and long,
3064         * src/pic16/NOTES: added some notes for the port,
3065         * src/pic16/gen.c: added prototype for mov2fp function,
3066         * (fReturnpic16[]): properly named return value registers,
3067         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
3068         * (aopForSym): added code to handle symbols with onStack flag set,
3069         symbols onStack are allocated PTRSIZE bytes,
3070         * (aopFreeAsmop): handles special case where asmops are stack objects,
3071         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
3072         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
3073         added argument lock to trace flaws in allocating temporary registers
3074         when developing port,
3075         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
3076         * (pic16_popRegFromString): reenabled allocating a direct register
3077         from string,
3078         * (assignResultValue): various beautifications,
3079         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
3080         referenced function argument,
3081         * (genIpush): reenabled to allow stacked arguments, handles only
3082         ic->parmPush iCodes,
3083         * (genCall, genPcall): major changes to allow for variable argument
3084         functions, fixed a bug with falsely restoring stack pointer after
3085         returning from call,
3086         * (genFunction): pending code for critical function,
3087         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
3088         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
3089         * (genNearPointerGet): fixed bug with indirect reading, was always
3090         reading from INDF0
3091         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
3092         pointers,
3093         * (genAddrOf): rewrote code to take address of a stacked function parameter
3094         * (genCast): fixed casting to generic pointer type,
3095         * src/pic16/gen.h: added AOP_STA,
3096         * (struct asmop): added field stk,
3097         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
3098         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
3099         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
3100         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
3101         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
3102         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
3103         generic pointers,
3104         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
3105         and library paths,
3106         * (pic16_port structure): generic pointer size is set to 3,
3107         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
3108         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
3109         compiler warning,
3110         * src/pic16/ralloc.c (allocReg): prevent allocating register when
3111         operand is an iTemp,
3112
3113 2004-09-24 Martin Helmling <mh AT octo-soft.de>
3114
3115         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
3116         * debugger/mcs51/simi.c: addapt new syntax of s51
3117
3118 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
3119
3120         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
3121         * src/pic16/pcode.c: commented out some calls to free() in order to
3122         fix bug #989576,
3123
3124 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3125
3126         * src/SDCCicode.h,
3127         * src/SDCCicode.c (isiCodeInFunctionCall),
3128         * src/avr/ralloc.c (selectSpil),
3129         * src/pic/ralloc.c (selectSpil),
3130         * src/pic16/ralloc.c (selectSpil),
3131         * src/ds390/ralloc.c (selectSpil),
3132         * src/hc08/ralloc.c (selectSpil),
3133         * src/xa51/ralloc.c (selectSpil),
3134         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
3135         stack in the middle of a function call sequence (fixes bug #1020268)
3136         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
3137         costs associated with the minimum switch case.
3138
3139 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3140
3141         * src/SDCC.lex: fixed bug #1030549
3142
3143 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3144
3145         * src/SDCCcse.h (struct cseDef),
3146         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
3147         over a function call if the CSE is derived from a symbol whose
3148         address has been taken (fixes bug #1029883)
3149         * support/regression/tests/bug-1029883: a new regression test for
3150         this bug
3151
3152 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3153
3154         * src/hc08/gen.c (emitinline): fixed bug #1029778
3155         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
3156         to a cast object is no longer a syntax error ("fixes" bug #1030006,
3157         and starts toward RFE #905167)
3158
3159 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
3160
3161         * src/pic16/gen.c (mov2f): New function to move an operand to
3162         another without considering if it is a literal or a register,
3163         * (pic16_sameRegs): don't check if they are both AOP_REG,
3164         * (AccRsh): removed andmask=0 lines,
3165         * (genLeftShift): duplicated to be improved in future versions,
3166         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
3167         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
3168         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
3169         * (pic16initMnemonics): added initialization for POC_INFSNZW,
3170         * (insertBankSwitch): fixed inserting banksel directives algorithm
3171         for instructions that follow a skip instruction, this fixes a report
3172         for broken subtraction code generation,
3173         * src/pic16/ralloc.c (deassignLRs): do not free register if current
3174         iCode is a left op, just in case result and right share the same
3175         registers
3176
3177 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3178
3179         * src/hc08/main.c,
3180         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
3181         preservation of HX
3182         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
3183         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
3184         on 2004-09-12; it was buggy
3185
3186 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
3187
3188         * src/SDCCsymt.h: removed RESULT_CHECK
3189         * src/SDCCast.c,
3190         * src/SDCCglue.c,
3191         * src/SDCCval.c,
3192         * src/pic/glue.c,
3193         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
3194
3195 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
3196
3197         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
3198         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
3199         configuration values no more rejected by compiler, they are assigned
3200         to configuration registers with a warning message instead,
3201         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
3202         the for-loop so last conf register is emitted too,
3203         * (_pic16_initPaths): link library libsdcc.lib by default,
3204         * (_hasNativeMulFor): modified test for multiplication according to
3205         Raphael Neider's remarks. Integer multiplication is also done with
3206         support functions,
3207         * device/include/pic16/pic18fregs.h: corrected type error in while
3208         testing and including 18f6720 header file
3209
3210 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
3211
3212         * src/pic16/device.h (pic16_options): removed field use_crt,
3213         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
3214         until an optimization to handle single bits is added,
3215         * (pic16_loadFSR0): moved before genUnpackBits,
3216         * (genAnd): some white lines removed,
3217         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
3218         leave_reset flags in pic16_options when using crt modules,
3219
3220 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
3221
3222         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
3223           for bugs 898889 & 979599. Also used some safer print instructions.
3224
3225 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
3226
3227         * src/pic16/device.h (pic16_options_t): added field use_crt,
3228         crt_name, no_crt,
3229         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
3230         catch a probable future bug,
3231         * src/pic16/gen.c: aopIdx function commented out,
3232         * (genAssign): commented out old code which used aopIdx,
3233         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
3234         code, added if conditionals to take into account the --use-crt
3235         command line options,
3236         * src/pic16/main.c (pic16_optionsTable): added new command line
3237         options, --use-crt= and --no-crt,
3238         * (_pic16_linkEdit): now the proper crt object is added in the
3239         linker command line except than when --no-crt is specified,
3240         * src/pic16/pcode.c,
3241         * src/pic16/pcode.h: added some structures and functions for a new
3242         optimization scheme to compansate for instruction overhead between
3243         same iCodes, this scheme is currently under development and is not
3244         working in any way,
3245         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
3246         to && operator,
3247         * device/lib/pic16/startup/crt0i.c,
3248         * device/lib/pic16/startup/crt0iz.c: added global char variable
3249         __uflags to force the generation of an idata section
3250
3251 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
3252
3253         * doc/Makefile,
3254         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
3255         * doc/sdccman.lyx: updated sdcc version to 2.4.4
3256
3257 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3258
3259         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
3260         Frieder) and clarified the default code optimization mode
3261
3262 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3263
3264         * src/SDCC.lex (doPragma, process_pragma),
3265         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
3266         "opt_code_size", and "opt_code_balanced"
3267         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
3268         regrouped options by category, added support for category headers
3269         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
3270         and "--opt-code-size"
3271         * doc/sdccman.lyx: documented these new options and pragmas
3272         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
3273         preference into account
3274
3275 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3276
3277         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
3278           geniCodePreDec): Fixed bug 904237 by generating a warning
3279         * src/SDCCerr.h,
3280         * src/SDCCerr.c: added warning W_SIZEOF_VOID
3281
3282 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
3283
3284         * src/pic/device.c : When no max ram set validate full memory range.
3285         * src/pic/pcode.c,
3286         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
3287
3288 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
3289
3290         * device/lib/_gptrget.c,
3291         * device/lib/_gptrput.c: updated comment
3292         * device/lib/calloc.c,
3293         * device/lib/free.c,
3294         * device/lib/malloc.c,
3295         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3296         * src/SDCCcse.c (cseBBlock),
3297         * src/SDCCicode.c (printOperand, geniCodeArray),
3298         * src/SDCCicode.h (struct operand): fixed bug 868103
3299         * support/regression/tests/bug-868103.c: added
3300         * src/SDCCast.c (searchLitOp),
3301         * src/SDCCcse.h (struct cseDef),
3302         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3303         * src/SDCCicode.h (struct operand),
3304         * src/SDCCsymt.h (struct sym_link),
3305         * src/avr/gen.c (hasInc),
3306         * src/ds390/gen.c (hasInc),
3307         * src/hc08/gen.c (genPlusIncr, hasInc),
3308         * src/mcs51/gen.c (hasInc),
3309         * src/pic16/glue.c (pic16_printIvalChar),
3310         * src/pic16/ralloc.c (regWithIdx),
3311         * src/xa51/gen.c (hasInc) : removed warnings
3312         * src/SDCCast.c (createBlock): added comment ???
3313         * src/hc08/ralloc.c: updated comments
3314
3315 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3316
3317         * doc/sdccman.lyx: updated section on switch statements, added
3318         section about semaphore locking
3319         * doc/Makefile: added option -info for latex2html
3320         * device/lib/_gptrget.c,
3321         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3322
3323 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3324
3325         * src/pic/device.h,
3326         * src/pic/device.c,
3327         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3328          maxram is less than 0x100.
3329
3330 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3331
3332         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3333
3334 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3335
3336         * src/port.h,
3337         * src/mcs51/main.c,
3338         * src/ds390/main.c,
3339         * src/z80/main.c,
3340         * src/hc08/main.c,
3341         * src/pic/main.c,
3342         * src/pic16/main.c,
3343         * src/avr/main.c,
3344         * src/xa51/main.c
3345         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3346         a jump table is the best form for a switch statement, including
3347         automatic insertion of missing cases to make the case range
3348         continuous. Developed in collaboration with Frieder Ferlemann.
3349
3350 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3351
3352         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3353         accumulator result if it needs sign extension
3354
3355 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3356
3357         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3358
3359 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3360
3361         * device/lib/gbz80/printf.c,
3362         * device/lib/z80/printf.c: removed define for NULL
3363
3364 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3365
3366         * as/xa51/xa_link.c,
3367         * device/examples/ds390/ow390/ad26.c,
3368         * device/examples/ds390/ow390/cnt1d.c,
3369         * device/examples/ds390/ow390/counter.c,
3370         * device/examples/ds390/ow390/ds2480.h,
3371         * device/examples/ds390/ow390/ds2480ut.c,
3372         * device/examples/ds390/ow390/findtype.c,
3373         * device/examples/ds390/ow390/gethumd.c,
3374         * device/examples/ds390/ow390/owllu.c,
3375         * device/examples/ds390/ow390/ownetu.c,
3376         * device/examples/ds390/ow390/swt12.c,
3377         * device/examples/ds390/ow390/swtloop.c,
3378         * device/examples/ds390/ow390/temp.c,
3379         * device/examples/ds390/ow390/temp10.c,
3380         * device/examples/ds390/ow390/thermo21.c,
3381         * device/examples/ds390/ow390/tinilnk.c,
3382         * device/examples/ds390/ow390/tstfind.c,
3383         * device/examples/serialcomm/windows/serial.cpp,
3384         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3385         * device/include/reg51.h: fixed line endings for cvs
3386
3387 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3388
3389         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3390         packRegsForAccUse, packRegisters): new accumulator register
3391         packing algorithm
3392         * support/regression/ports/hc08/support.c (_putchar): suppress
3393         warning of unused variable
3394         * src/SDCCicode.c: added SWAP entry to codeTable
3395
3396 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3397
3398         * device/lib/sprintf.c: forgot to add this file before previous commit
3399
3400 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3401
3402         * src/pic16/gen.c (genPackBits): added operand right in function
3403         parameters, load result directly if p_type is POINTER (that is
3404         called by genNearPointerSet)
3405         * (genUnPackBits): added operand left in function parameters,
3406         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3407         FSR0 if accessing bitfields,
3408
3409 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3410
3411         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3412           _print_format; updated printf, sprintf, vsprintf
3413         * device/include/asm/default/features.h: corrected comment/define
3414         * device/lib/Makefile.in: added sprintf.c
3415         * device/lib/libsdcc.lib: added sprintf module
3416         * device/lib/printf_large.c,
3417         * device/lib/vprintf.c,
3418         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3419           into these 3 files
3420         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3421         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3422         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3423           hc08 test
3424         * support/regression/tests/zeropad.c: define idata as data for hc08
3425
3426 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3427
3428         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3429         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3430         labels are referenced at least once (even if a reference is not found)
3431         * src/hc08/gen.c (emitcode): set isComment flag for comments
3432         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3433         loads), rules 6a..6b (optimize jumps to return)
3434
3435 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3436
3437         * device/lib/acosf.c (acosf),
3438         * device/lib/asinf.c (asinf),
3439         * device/lib/atanf.c (atanf),
3440         * device/lib/ceilf.c (ceilf),
3441         * device/lib/cosf.c (cosf),
3442         * device/lib/coshf.c (coshf),
3443         * device/lib/cotf.c (cotf),
3444         * device/lib/fabsf.c (fabsf),
3445         * device/lib/floorf.c (floorf),
3446         * device/lib/log10f.c (log10f),
3447         * device/lib/logf.c (logf),
3448         * device/lib/sinf.c (sinf),
3449         * device/lib/sinhf.c (sinhf),
3450         * device/lib/sqrtf.c (sqrtf),
3451         * device/lib/tanf.c (tanf),
3452         * device/lib/tanhf.c (tanhf),
3453         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3454         replaced all instances of "reentrant" in the library functions
3455         defined in math.h with this macro.
3456         * support/regression/tests/float_trans.c: reenabled test for hc08
3457
3458 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3459
3460         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3461         erroneously deleted
3462
3463 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3464
3465         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3466         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3467         multi-byte volatile operands are used
3468         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3469         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3470         initialization to area GSINIT0 so that it would always precede
3471         any static initializers in GSINIT
3472         * support/regression/tests/zeropad.c: fixed idata define for hc08
3473         * support/regression/tests/bug-927659.c,
3474         * support/regression/tests/float_trans.c: disabled tests for hc08
3475         pending missing library routines
3476         * .version: increased version number to 2.4.4 - hc08 port now passes
3477         regression tests
3478
3479
3480 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3481
3482         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3483         * Makefile.common.in,
3484         * as/Makefile,
3485         * as/hc08/Makefile.in,
3486         * as/mcs51/Makefile.in,
3487         * as/z80/Makefile.in,
3488         * debugger/mcs51/Makefile.in,
3489         * device/include/Makefile.in,
3490         * device/lib/Makefile.in,
3491         * doc/Makefile,
3492         * link/Makefile,
3493         * link/z80/Makefile.in,
3494         * packihx/Makefile.in,
3495         * sim/ucsim/main_in.mk,
3496         * sim/ucsim/avr.src/Makefile.in,
3497         * sim/ucsim/doc/Makefile.in,
3498         * sim/ucsim/gui.src/serio.src/Makefile.in,
3499         * sim/ucsim/hc08.src/Makefile.in,
3500         * sim/ucsim/s51.src/Makefile.in,
3501         * sim/ucsim/xa.src/Makefile.in,
3502         * sim/ucsim/z80.src/Makefile.in,
3503         * src/Makefile.in,
3504         * support/cpp2/Makefile.in,
3505         * support/librarian/Makefile,
3506         * support/makebin/Makefile: added DESTDIR to the install path proposed
3507         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3508         * doc/sdccman.lyx: added DESTDIR documentation
3509
3510 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3511
3512         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3513         instruction for interrupt handlers, use fast returns when returning
3514         from high priority interrupts
3515
3516 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3517
3518         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3519         code generation
3520         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3521         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3522         bugs, ported much of Bernhard's code from mcs51
3523         * src/mcs51/gen.c (genSend),
3524         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3525         than one when calling a reentrant function
3526         * device/lib/_mullong.c: defined an alternate struct layout for big
3527         endian ports (hc08)
3528
3529 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3530
3531         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3532         test
3533
3534 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3535
3536         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3537         are sane and complete before asking the port its prefered parameter
3538         passing method (fixes bug #1017633)
3539         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3540         and _ret3
3541
3542 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3543
3544         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3545         problem in bitfields >= 8 bits.
3546
3547 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3548
3549         * src/SDCCsymt.c: undid changes that were not meant to be committed
3550
3551 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3552
3553         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3554
3555 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3556
3557         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3558           copied and wrong bit got inverted
3559
3560 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3561
3562         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3563         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3564         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3565         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3566         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3567         assignments to bitfields at known addresses
3568         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3569         reads from bitfields at known addresses
3570         * src/hc08/ralloc.c (packRegisters),
3571         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3572         genhc08Code): optimize pointer get values used as conditionals
3573         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3574         and branch
3575
3576 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3577
3578         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3579         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3580         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3581         as conditionals
3582
3583 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3584
3585         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3586
3587 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3588
3589         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3590         related problems
3591
3592 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3593
3594         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3595
3596 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3597
3598         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3599         mcs51 port
3600
3601 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3602
3603         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3604
3605 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3606
3607         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3608         cases use more compact code.
3609
3610 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3611
3612         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3613
3614 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3615
3616         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3617
3618 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3619
3620         * src/SDCCsymt.h,
3621         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3622         parameter of changePointer() from symbol* to sym_link*
3623         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3624         * src/SDCCsymt.c (compareType): void* type is castable to other
3625         pointers, but not necesarily an exact match.
3626         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3627         is no longer blindly treated as an exact match.
3628         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3629
3630 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3631
3632         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3633
3634 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3635
3636         * src/pic/gen.c,
3637         * src/pic/pcode.c,
3638         * src/pic/ralloc.h,
3639         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3640
3641 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3642
3643         * src/pic/device.c,
3644         * src/pic/device.h,
3645         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3646
3647 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3648
3649         * src/mcs51/gen.c (emitcode): fixed bug #992819
3650
3651 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3652
3653         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3654           there's no need to make it worse
3655
3656 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3657
3658         * src/mcs51/ralloc.c (deassignLR),
3659         * src/ds390/ralloc.c (deassignLR),
3660         * src/hc08/ralloc.c (deassignLR),
3661         * src/z80/ralloc.c (deassignLR),
3662         * src/pic/ralloc.c (deassignLR),
3663         * src/pic16/ralloc.c (deassignLR),
3664         * src/avr/ralloc.c (deassignLR),
3665         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3666         rlivePoint): fixed another part of bug #971834
3667
3668 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3669
3670         * src/z80/main.c: enabled "critical" keyword
3671         * src/z80/mappings.i,
3672         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3673         functions (fixes bug #979646)
3674         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3675
3676 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3677
3678         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3679           such as c:\mydir.
3680
3681 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3682
3683         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3684           doesn't disable too much optimizations
3685
3686 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3687
3688         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3689
3690 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3691
3692         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3693
3694 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3695
3696         * src/pic/gen.c tidied up tabs
3697         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3698         * src/pic/main.c tidied up tabs
3699         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3700         * src/pic/pcoderegs.c tidied up tabs
3701         * src/pic/ralloc.c tidied up tabs
3702
3703 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3704
3705         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3706         to S_FIXED for pic16 port and when symbol is not in level 0,
3707         allocate for S_REGISTER storage class and pic16 port, too,
3708         * src/pic16/device.h: prototype for checkSym,
3709         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3710         * (pic16_assignConfigWordValue): test the value and the mask to
3711         validate that the value is suitable for the configuration word,
3712         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3713         collect extern declared symbols, don't emit symbol twice, check
3714         first if symbol is in publics set first,
3715         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3716         * added command line '--fstack' which enables an experimental
3717         feature for stack access, too buggy to be used yet...
3718         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3719         * (pic16_allocDirReg): when register has storage class S_REGISTER
3720         allocate in pic16_dynAccessRegs,
3721         * device/include/pic16/pic18f????.h: modified configuration word
3722         naming convention, words started as CONFIG0H but should be CONFIG1H
3723
3724 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3725
3726         * device/include/mcs51reg.h: fixed bug 970993
3727
3728 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3729
3730         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3731         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3732         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3733         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3734         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3735         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3736           error/warning numbers,
3737           added function setWarningDisabled()
3738         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3739         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3740           _memcmp.c _memmove.c calloc.c realloc.c free.c
3741         * support/regression/tests/malloc.c: added tests for new functionality
3742         * support/regression/tests/zeropad.c: added tests for truncated initializers
3743           and initialized char arrays starting with '\x0'
3744         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3745
3746 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3747
3748         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3749
3750 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3751
3752         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3753         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3754         peephole 177.e. Thanks to anonymous
3755
3756 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3757
3758         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3759         function isn't used in the source but referenced as a
3760         variable initializer then declare it as extern in .asm file
3761
3762 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3763
3764         * .version: increased version number to 2.4.3
3765
3766         Adding version extension according to ChangeLog CVS revision
3767         * src/Makefile.in (target all): added dependency 'version.h'
3768         * (rule version.h): added rule to create version.h from ChangeLog,
3769         * (rule dep): added dependency version.h,
3770         * src/version.awk: AWK script to create version.h
3771         * src/SDCCdwarf2.c (dwWriteModule),
3772         * src/SDCCglue.c (initialComments),
3773         * src/SDCCmain.c (printVersionInfo): modified to write after
3774         version string the version extension number,
3775         * src/SDCCutil.c: included "version.h"
3776         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3777         number,
3778         * src/SDCCutil.h: added prototype for getBuildNumber
3779
3780         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3781         includeDirsSet, too,
3782         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3783         const char [] is found in function prototype...
3784
3785         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3786         moving to WREG with source is already in WREG,
3787         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3788         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3789         * (aopForSym): stack'ed symbols are partially supported, added
3790         if-clause to support symbols in FARSPACE,
3791         * (sameRegs): added test for AOP_ACC to see if registers are same,
3792         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3793         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3794         * (pic16_popRegFromString): will not allocate a new register if it
3795         doesn't find one by name, bug may have introduced...
3796         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3797         * (genIpush): revived to use pic16 port's stack,
3798         * (genAddrOf): added incomplete case for stack'ed operand,
3799         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3800         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3801         can handle multibyte operands,
3802         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3803         * (pic16initialComments): added message for MPLAB compatibility
3804         mode enabled,
3805         * src/pic16/main.h: prototype for pic16_mplab_comp,
3806         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3807         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3808         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3809         because of increased complexity of procedure,
3810         * (_process_pragma): stack pragma changed to format 'stack pos len',
3811         emit symbol '_stack_end' to conform with gplink,
3812         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3813         to search for register,
3814         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3815         PO_GPR_REGISTER,
3816         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3817         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3818         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3819         case for PO_GPR_REGISTER,
3820         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3821         dies, the new era is ahead !...
3822         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3823         pic16_dynInternalRegs,
3824         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3825         * (pic16_allocDirReg): minor optimizations and bug fixes,
3826         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3827
3828         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3829         load stack and frame pointer with address of 'stack_end' symbol
3830
3831 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3832
3833         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3834         without source code but only variable initializers
3835
3836 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3837
3838         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3839         external are not declared as extern to reduce overhead while linking
3840
3841 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3842
3843         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3844
3845 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3846
3847         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3848           Yee Keat for the patch
3849         * src/SDCCast.c (decorateType): fixed bug #979599
3850         * src/ds390/gen.h: removed local fReturnSizeDS390
3851         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3852         * src/ds390/gen.c (genAnd, genOr, genXor),
3853         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3854
3855 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3856
3857         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3858         add relFilesSet to $3, manipulate $2 to handle linking of object
3859         files without source files in command line,
3860         * device/include/pic16 (all headers): added ID location macros,
3861         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3862         entries for ID location bytes,
3863         * (pic16_assignIdByteValue): NEW,
3864         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3865         added field dumpcalltree to pic16_options_t,
3866         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3867         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3868         emitting rFalseIfx label after check_carry label,
3869         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3870         pic16_emitDIRegs), NEW
3871         * (pic16glue): dump .calltree file when option --calltree found,
3872         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3873         * (_pic16_genAssemblerPreamble): emit ID locations after
3874         configuration registers,
3875         * (pic16_linkCmd): modifications of the link command,
3876         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3877         * (pic16_pCodeInitRegisters): don't init stack registers,
3878         * (pic16_findPrevInstruction): fixed bug,
3879         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3880         bug with immediate registers,
3881         * (buildCallTree): traces stack push and pop,
3882         * (pct2): dump also stack usage for each function,
3883         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3884         * (pic16_allocDirReg): various modifications,
3885         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3886         fixed to 1,
3887
3888 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * src/pic16/pcode.c: removed buggy double colon
3891
3892 2004-07-01 Borut Razem <borut.razem AT siol.net>
3893
3894         * support/scripts/sdcc.nsi: added include/pic16 to setup
3895
3896 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3897
3898         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3899         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3900         target 'clean',
3901         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3902         specific command line arguments. Also added sample lkr script
3903         for placing a variable at a specific memory bank.
3904         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3905         at a specific memory bank,
3906         * (pic16_dump_isection): fixed bug which caused string literals to
3907         be omitted when dumping idata section,
3908         * (pic16_groupRegistersInSection): added code to handle registers
3909         in specific memory banks,
3910         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3911         public, all references are renamed too,
3912         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3913         AOP_DPTR2,
3914         * (pic16_storeForReturn): added case to handle when dest is WREG,
3915         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3916         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3917         pic16_rel_udata, check to see if that register is marked as being
3918         a member of a specific memory bank,
3919         * (pic16_printIvalCharPtr): added code to add string literals either
3920         to code or the idata sections,
3921         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3922         also accept the 'udata' pragma,
3923         * src/pic16/main.h: new structure types sectName and sectSym
3924         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3925         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3926         * (pic16_findPrevInstruction): fixed, it returned nothing,
3927         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3928         instruction combinations,
3929         * (pic16_FixRegisterBanking): heavily reorganised,
3930         * (pic16_AnalyzeBanking): if generating banksel directives is
3931         disabled, then don't call FixRegisterBanking at all,
3932         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3933         completely removed,
3934         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3935
3936 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3937
3938         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3939         Phuah Yee Keat <yk.phuah AT nestac.com>
3940
3941 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3942
3943         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3944         correctly the IVT even if it is relocated to some other location
3945
3946 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3947
3948         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3949         * device/include/pic16/pic18f2220.h: NEW,
3950         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3951         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3952         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3953         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3954         nodefaultlibs, ivt_loc is the location of the interrupt vector
3955         table, and nodefaultlibs signs that default libraries should not be
3956         linked in link stage,
3957         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3958         according to --ivt-loc argument,
3959         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3960         when pragma stack is found,
3961
3962 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3963
3964         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3965         256 (range check), 257 (do while), 258.a-f (bit banging
3966         f.e. on 3-wire SPI bus)
3967
3968 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3969
3970         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3971         variables used exclusively within a loop
3972
3973 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3974
3975         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3976
3977 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3978
3979         * src/SDCClrange.c (computeClash): fixed bug #971834
3980
3981 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3982
3983         * src/mcs51/gen.c (genCmp): fixed bug #975903
3984         * src/hc08/gen.c (operandsEqu),
3985         * src/ds390/gen.c (operandsEqu),
3986         * src/z80/gen.c (operandsEqu),
3987         * src/pic/gen.c (operandsEqu),
3988         * src/pic16/gen.c (operandsEqu),
3989         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3990         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3991
3992 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3993
3994         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3995
3996 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3997
3998         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3999         default case in switch statement,
4000         * glue.c (pic16_initPointer): expr is initialised via decoarteType
4001         to eliminate problem with initialisation of pointers, but problem
4002         still exists,
4003         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
4004         * (emitStaticSegment): removed various lines emitting debug info,
4005         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
4006         added processor registers for utilizing EEPROM,
4007         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
4008         configurable and set 8
4009
4010 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
4011
4012         * .version: increased version number to 2.4.2,
4013
4014         Cumulative patch for pic16 port
4015         * src/pic16/device.c: changed scheme to dump initial values for
4016         variables in idata segment, all print_idata* functions were removed,
4017         now the pic16_printIval* will be called,
4018         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
4019         * _pic16_printPointerType, pic16_printPointerType,
4020         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
4021         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
4022         NEW, similar to the respective functions in SDCCglue.c,
4023         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
4024         way, emitting hex bytes,
4025         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
4026
4027 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4028
4029         * src/avr/ralloc.c (serialRegAssign),
4030         * src/xa51/ralloc.c (serialRegAssign),
4031         * src/pic/ralloc.c (serialRegAssign),
4032         * src/pic16/ralloc.c (serialRegAssign),
4033         * src/hc08/ralloc.c (serialRegAssign),
4034         * src/z80/ralloc.c (serialRegAssign),
4035         * src/ds390/ralloc.c (serialRegAssign),
4036         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
4037
4038 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4039
4040         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
4041         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
4042
4043 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
4044
4045         Cumulative patch for pic16 port:
4046         * src/pic16/device.h (typedef PIC16_device) modified fields for
4047         defining microcontrollers,
4048         * src/pic16/device.c: added new info for all devices in Pics16 array,
4049         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
4050         to be optimised out by the pCode optimiser,
4051         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
4052         specially, bug reported by G.M. Gallant,
4053         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
4054         as force'd so that cannot be optimised out by pCode optimiser,
4055         * src/pic16/pcode.c,
4056         * src/pic16/pcodepeeph.c,
4057         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
4058         they are disabled by default, but can be enabled explicit with
4059         command argument --denable-peeps, for testing,
4060         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
4061         --pomit-ivt in COMPILE_FLAGS
4062
4063 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4064
4065         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
4066           compilation on MSVC
4067
4068 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
4069
4070         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
4071
4072 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4073
4074         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
4075         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
4076
4077 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
4078
4079         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
4080         would only assign 0x300001 register.
4081
4082 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
4083
4084         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
4085         in COMPILE_FLAGS. Thanks to G. Gallant for report.
4086
4087 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4088
4089         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
4090         for ds80c400
4091         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
4092         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
4093         added peephole 254 (left shift), 255 (jump table)
4094
4095 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
4096
4097         * device/lib/Makefile.in: removed comment line with model-pic16,
4098         * (target port-specific-objects-pic16): the libraries and objects
4099         are copied to the build directory form the device/lib/pic16/bin
4100         directory
4101
4102         Cumulative patch concerning pic16 port:
4103         * library directory has been re-organized,
4104         * added support for PIC18F1220,
4105         * added headers and library sources for chips 18f1220,18f6520,
4106         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
4107
4108         * configuration registers setting has changed, now each supported
4109         device has a complete description of the registers it uses,
4110         * all initialisations are moved to idata sections, these section
4111         can be absolute or relocatable,
4112         * fixed initialisation of codespace variables,
4113         * fixed warning about PCLATU and gpsim,
4114         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
4115         * (genAssign): use table reads when assigning from variables in codespace,
4116         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
4117         char/int variables placed in codespace,
4118         * (pic16_emitConfigRegs): NEW, emits a list with configuration
4119         registers set in .asm file, no need for --pomit-config-words anymore,
4120         * (pic16glue): some 8051 legacy segments are commented out
4121         (to be removed completely),
4122         * added support for alternative assembler and linker with --asm=
4123         and --link= command line arguments,
4124         * peepholes are disabled automatically in the port, no need to
4125         specify on command line,
4126         * port supports natively char/int/long multiplication, but converts
4127         all divisions to support functions,
4128         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
4129         to the file set in variable $2,
4130         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
4131         strings in ASCII format and not in hex,
4132         * ralloc.c (serialRegAssign): added a triplet of conditional calls
4133         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
4134         allocate proper register if iCodes aren't temporary,
4135
4136 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
4137
4138         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
4139
4140 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
4141
4142         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
4143         is commented out
4144
4145 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4146
4147         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
4148         computed address is reused
4149         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
4150         multi-byte bitfields
4151
4152 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4153
4154         * src/z80/gen.c: (genArrayInit): must check for pointers too
4155
4156 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
4157
4158         * support/regression/tests/zeropad.c: never meant to commit the
4159           nestedstruct test: removed, added check for GCC version
4160
4161 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
4162
4163         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
4164         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
4165         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
4166           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
4167           bugs 928906 and 954082 half-empty initializers
4168         * src/SDCCsymt.h,
4169         * src/SDCCsymt.c (getAllocSize): added for above fix
4170         * src/z80/gen.c (genArrayInit): fixed bug 741044
4171         * support/regression/tests/zeropad.c: added tests
4172
4173 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
4174
4175         * src/pic16/device.c (pic16_dump_section): corrected bug which
4176         caused some symbols of the libraries to be misplaced
4177
4178 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4179
4180         * src/pic16/glue.c,
4181         * src/pic16/ralloc.h,
4182         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
4183         to fix conflict with pic port
4184
4185 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
4186
4187         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
4188         externs configuration variables,
4189         * src/pic16/ralloc.h,
4190         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
4191         prototype in header, commented out some debug messages
4192
4193 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
4194
4195         * src/pic16/glue.c,
4196         * src/pic16/main.c,
4197         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
4198         for gpasm COFF object generation. Thanks to D. Hawkins for
4199         his patch info
4200
4201 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4202
4203         * src/ds390/main.c,
4204         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
4205         Brock for spotting this)
4206         * src/ds390/gen.c (genEndFunction),
4207         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
4208         interrupt handler and critical. Disable push/pop optimizations when
4209         peephole optimizations disabled.
4210
4211 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4212
4213         Updated pic16 library sources and headers.
4214         * device/lib/pic16/pic18f*/ ,
4215         * device/include/pic16/*.h: modified to handle structured SFR
4216         definitions
4217
4218 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
4219
4220         * src/port.h (PORT structure): added hook initPaths, now each
4221         port can declare its own default search paths,
4222         which can been seen with the --print-search-dirs option,
4223         see pic16 port for example,
4224         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
4225         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
4226         * (doPrintSearchDirs): NEW, replaces in a central manner the
4227         printing of search dirs which was split in set*Paths functions,
4228         * (main): added call to port->initPaths and doPrintSearchDirs,
4229         * src/avr/main.c,
4230         * src/ds390/main.c,
4231         * src/hc08/main.c,
4232         * src/izt/i186.c,
4233         * src/izt/tlcs900h.c,
4234         * src/mcs51/main.c,
4235         * src/pic/main.c,
4236         * src/pic16/main.c: modified port structures to reflect addition of
4237         initPaths hook,
4238
4239         * src/pic16/device.c (regCompare): registers are finally sorted by name,
4240         * (pic16_dump_section): for registers in same address reserve memory once,
4241         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
4242         to no_banksel,
4243         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
4244         result is greater in size than right or left,
4245         * (pic16_genUMult8X8_8): there are some cases where the result can
4246         be 16 bits size, so handle these,
4247         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
4248         * (pic16_outBitC): modified to emit pcodes,
4249         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
4250         or not,
4251         * (genDivOneByte): implemented algorithm to divide 8-bits,
4252         * (genCmp): uncommented goto, but issues still exist,
4253         * (genAnd): fixed a bug with variables >8bits,
4254         * (genPackBits): optimization added that uses BCF/BSF to change a
4255         single bit,
4256         * (genAssign): fixed bug when assigning floating point literals,
4257         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
4258         __sdcc_gsinit_startup label,
4259         * src/pic16/main.c (_pic16_init): removed search directory
4260         initialisations,
4261         * (_pic16_initPaths): NEW, used to initialise search directories,
4262         * (_hasNativeMulFor): support functions for all except char/int
4263         multiplication, and char division,
4264         * (PIC16_port struct): modified entry for native mul support,
4265         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
4266         no_banksel option,
4267         * (buildCallTree): call to register_usage is ifdef'ed out,
4268
4269 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4270
4271         * device/include/string.h: applied Stas Sergeev's patch to make this
4272         header file compatible with the preprocessor -Wundef option
4273         * src/SDCCmain.c (main): abort compilation if preprocessor reports
4274         failure (fixes bug #941458)
4275
4276 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4277
4278         * src/SDCCopt.c (killDeadCode): fixed bug #907733
4279         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
4280         that the variable, not the function, should be static
4281         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
4282         to be consistent with non-literal case
4283
4284 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4285
4286         * src/SDCCast.c (isConformingBody): fixed bug #949967
4287         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
4288         convilong): fixed bug #952086
4289
4290 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4291
4292         * src/SDCCmem.c (allocVariables): fixed bug #955321
4293
4294 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * src/hc08/main.c (_hc08_genAssemblerEnd),
4297         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4298         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4299         completely eliminated the use of a temporary file
4300         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4301         when more than one file linked
4302         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4303
4304 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4305
4306         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4307         which fixes bug #543481
4308         * support/regression/tests/bug-751703.c: fixed comments left from a
4309         cut and paste error
4310         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4311         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4312         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4313         scopes
4314         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4315         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4316         are now changed to underscores in moduleName
4317
4318 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4319
4320         * as/mcs51/lkmem.c: better fix for bug #954173
4321
4322 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4323         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4324
4325         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4326         * device/include/c8051f000.h,
4327         * device/include/c8051f120.h,
4328         * device/include/c8051f300.h,
4329         * device/include/c8051f310.h,
4330         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4331         PWM16) and detab'ed
4332
4333 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4334
4335         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4336         and mailing lists, doc'ed --no-peep-comments, removed reference
4337         to knoppix (newest version has no LyX/LaTeX), other minor changes
4338         * src/SDCCglue.c (glue): save 2 bytes stack space with
4339         option --main-return. The ljmp could probably be avoided too
4340
4341 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4342
4343         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4344
4345 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4346
4347         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4348         * src/SDCCopt.c (isLocalWithoutDef),
4349         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4350         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4351         (credit to Maarten Brock for patch #949363, on which this is based)
4352         * support/regression/tests/bug-751703.c: some test cases of extern used
4353         within inner scopes.
4354
4355 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4356
4357         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4358         SPEC_STRUCT
4359         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4360         struct definitions
4361         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4362         dwWriteLabel): fix to create valid debugger symbols even when
4363         the module name has non-alphanumeric symbols in it
4364         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4365         when a variable's allocation has been optimized away
4366
4367
4368 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4369
4370         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4371         * src/hc08/main.c,
4372         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4373         * src/mcs51/main.c,
4374         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4375         * src/ds390/main.c,
4376         * src/z80/gen.c (z80_emitDebuggerSymbol),
4377         * src/z80/main.c,
4378         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4379         * src/pic/main.c,
4380         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4381         * src/pic16/main.c,
4382         * src/avr/gen.c (avr_emitDebuggerSymbol),
4383         * src/avr/main.c,
4384         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4385         * src/xa51/main.c,
4386         * src/SDCCdebug.c (emitDebuggerSymbol),
4387         * src/SDCCdebug.h,
4388         * src/port.h: added a debugger struct to the port struct. Added a
4389         callback for defining debugger symbols
4390
4391         * src/SDCCast.c (createLabel),
4392         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4393         with isitmp = 1
4394         * src/SDCCicode.h,
4395         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4396         iCode back to the ast for the function
4397
4398         * src/hc08/ralloc.c (hc08_assignRegisters),
4399         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4400         unneeded fields from the regs struct.
4401         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4402         pushReg() & pullReg() functions instead of emitcode()
4403
4404         * src/hc08/gen.c (genLabel, genhc08Code),
4405         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4406
4407         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4408         debugger hooks
4409
4410         * src/hc08/gen.c (genEndFunction, genhc08Code),
4411         * src/hc08/gen.h,
4412         * src/mcs51/gen.c (genEndFunction, gen51Code),
4413         * src/mcs51/gen.h,
4414         * src/ds390/gen.c (genEndFunction, gen390Code),
4415         * src/ds390/gen.h,
4416         * src/z80/gen.c (genEndFunction, genZ80Code),
4417         * src/z80/gen.h,
4418         * src/z80/z80.h,
4419         * src/pic/gen.c (genEndFunction, genpic14Code),
4420         * src/pic/gen.h,
4421         * src/pic16/gen.c (genEndFunction, genpic16Code),
4422         * src/pic16/gen.h,
4423         * src/avr/gen.c (genEndFunction, genAVRCode),
4424         * src/avr/gen.h,
4425         * src/xa51/gen.c (genEndFunction, genXA51Code),
4426         * src/xa51/gen.h,
4427         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4428         specific code to cdbFile.c and out of the backend code generators
4429
4430         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4431         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4432         starting address is now 0
4433
4434         * as/hc08/asm.h,
4435         * as/hc08/m08pst.c,
4436         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4437         assembler directive for DWARF support
4438         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4439
4440         * src/src.dsp,
4441         * src/Makefile.in,
4442         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4443
4444 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4445
4446         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4447         and inappropriate peephole optimization in jump tables
4448
4449 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4450
4451         * as/hc08/m08pst.c,
4452         * src/SDCCglue.c: sdccopt works for the hc08 port now
4453
4454 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4455
4456         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4457
4458 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4459
4460         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4461
4462 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4463
4464         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4465         rules
4466         * src/SDCCmain.c,
4467         * src/SDCCglobl.h,
4468         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4469         comments from the peephole optimizer replacement rules
4470         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4471         symbols
4472         * src/SDCCcse.c (updateSpillLocation),
4473         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4474         equivalents
4475         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4476         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4477         objects far pointers
4478
4479 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4480
4481         * src/SDCCsymt.h: a missing part of my last change
4482         * src/pic/ralloc.c (regTypeNum),
4483         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4484
4485 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4486
4487         * src/SDCCicode.h,
4488         * src/SDCCicode.c (aggrToPtrDclType),
4489         * src/SDCCptropt.h,
4490         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4491         ptrPseudoSymConvert),
4492         * src/pic/ralloc.c (regTypeNum),
4493         * src/pic16/ralloc.c (regTypeNum),
4494         * src/hc08/ralloc.c (regTypeNum),
4495         * src/ds390/ralloc.c (regTypeNum),
4496         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4497         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4498
4499 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4500
4501         * link/z80/lkmain.c (afile),
4502         * as/hc08/lkmain.c (afile),
4503         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4504         prevent a pointer problem when a filename has no directory and
4505         no extension specified.
4506
4507 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4508
4509         * link/z80/lkmain.c (afile): allow periods in directory names
4510         * link/z80/lkmain.c (afile),
4511         * as/mcs51/lkmain.c (afile),
4512         * as/hc08/lkmain.c (afile): allow linker script file to have an
4513         extension other than ".lnk"
4514         * link/z80/lklex.c (getfid),
4515         * link/z80/lkmain.c (parse),
4516         * as/mcs51/lklex.c (getfid),
4517         * as/mcs51/lkmain.c (parse),
4518         * as/hc08/lklex.c (getfid),
4519         * as/hc08/lkmain.c (parse): Support comments in the linker script
4520         file on lines by themselves and after filenames
4521
4522 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4523
4524         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4525
4526 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4527
4528         * src/z80/peeph-z80.def: removed some peephole rules that don't
4529         work with multibyte arithmetic (fixed bug #937126)
4530         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4531         to registers and not global variables
4532         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4533         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4534         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4535         checking for assignments not internally generated (fixed bug #931895)
4536         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4537         structure member (fixed bug #930072)
4538
4539 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4540
4541         * src/SDCCmain.c (linkEdit),
4542         * src/hc08/main.c (_hc08_parseOptions),
4543         * as/hc08/Makefile.in,
4544         * as/hc08/aslink.h,
4545         * as/hc08/asm.h,
4546         * as/hc08/m08pst.c,
4547         * as/hc08/lkrloc.c (relr, rele),
4548         * as/hc08/lkarea.c (lnkarea)
4549         * as/hc08/lkmain.c (afile, parse),
4550         * as/hc08/lkelf.c: support for ELF output
4551         * as/hc08/lks19.c (s19),
4552         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4553
4554 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4555
4556         * as/mcs51/lkihx.c: Fixed bug #899105.
4557
4558 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4559
4560         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4561         .dsp files from Unix to DOS.
4562
4563 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4564
4565         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4566         function pointers; we have been compliant for several months now.
4567         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4568         change that was accidently commented out
4569         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4570         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4571         bug #922319
4572
4573 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4574
4575         * src/hc08/gen.c: output of all of the internal debugging information
4576         is now controlled by the D() macro; it is disabled by default
4577
4578 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4579
4580         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4581         harder to keep the same registers during a CAST iCode
4582         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4583         long via int can be done in a single cast, if the signedness is
4584         correct.
4585         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4586         putchar() in tinibios.c in ds390's library
4587
4588 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4589
4590         * src/SDCCast.c (decorateType): fixed bug #898889,
4591         cast result of a literal complement too
4592         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4593         fixed check for bitfields
4594
4595 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4596
4597         * src/SDCCicode.c (geniCodeLogic): made it static,
4598         (geniCodeLogicAndOr): added in order to fix bug #905492,
4599         (ast2iCode): fixed bug #905492
4600         * support/regression/tests/bug-905492.c: added
4601         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4602         (processParms): fixed bug #927659: don't copy parms, this will clear
4603         decorated flag
4604         * support/regression/tests/bug-927659.c: added
4605
4606 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4607
4608         * src/SDCCast.c (addCast): don't cast float to char
4609         * device/lib/libsdcc.lib: added _memmove
4610
4611 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4612
4613         * device/lib/large/Makefile: fixed parallel execution by
4614         replacing `make` by `$(MAKE)`
4615
4616 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4617
4618         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4619         offsets (fixes bug #923936)
4620
4621 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4622
4623         * device/lib/small/Makefile: fixed parallel execution by
4624         replacing `make` by `$(MAKE)`
4625
4626 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4627
4628         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4629
4630 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4631
4632         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4633         * src/regression/Makefile: Regression test was not running.
4634
4635 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4636
4637         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4638         complement if possible
4639         * src/SDCCval.c (valComplement),
4640         * src/SDCCicode.c (operandOperation): fixed complement of literal
4641         * support/regression/tests/onebyte.c (testComplement): added
4642
4643 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4644
4645         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4646         return an optimized tree; actually replace actParm with the new tree
4647         * src/SDCCast.h: added some parantheses to remove side effects
4648         * support/regression/tests/bug-920866.c
4649
4650 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4651         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4652         Bit operands were not being handled properly in the pic14 port.
4653         (now src/regression/add.c passes again).
4654
4655 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4656
4657         * src/SDCC.y (labeled_statement): case and default no longer require
4658         a following statement (RFE #893037)
4659
4660 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4661
4662         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4663         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4664         disabled (fixes bug #916294)
4665         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4666         "mov a,acc"; patch provided by Lenny Story
4667         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4668
4669 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4670
4671         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4672         functions
4673         * src/ds390/gen.c (genFunction, genEndFunction),
4674         * src/ds390/ralloc.c (ds390_assignRegisters),
4675         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4676         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4677         pushed if there are parameters passed on the stack. Also, a cleaner
4678         way to decide if r0/r1 should be pushed/popped. (Together they fix
4679         bug #918693)
4680
4681 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4682
4683         * doc/sdccman.lyx,
4684         * device/lib/mcs51/crtpagesfr.asm,
4685         * device/lib/mcs51/crtxinit.asm,
4686         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4687         to avoid confusion with Si Lab's SFRPAGE register.
4688
4689 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4690
4691         * src/SDCCglue.c (emitMaps): allow public sfr variables
4692         * src/SDCCglue.c (initialComments): include compiler build date
4693         with compiler version and put the timestamp of the generated
4694         assembly file on a serperate line to be less confusing.
4695         * src/port.h: added genInitStartup hook
4696         * src/avr/main.c,
4697         * src/ds390/main.c,
4698         * src/hc08/main.c,
4699         * src/pic/main.c,
4700         * src/pic16/main.c,
4701         * src/xa51/main.c,
4702         * src/z80/main.c: genInitStartup initialize as NULL (default to
4703         historical behaviour)
4704         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4705         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4706         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4707         library instead of hard coding it into the compiler.
4708         * support/regression/ports/mcs51-stack-auto/spec.mk,
4709         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4710         * device/lib/mcs51/Makefile,
4711         * device/lib/small/Makefile,
4712         * device/lib/large/Makefile,
4713         * device/lib/mcs51/crtpagesfr.asm,
4714         * device/lib/mcs51/crtstart.asm,
4715         * device/lib/mcs51/crtxclear.asm,
4716         * device/lib/mcs51/crtxinit.asm,
4717         * device/lib/mcs51/crtclear.asm,
4718         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4719         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4720         and into user configurable files.
4721         * device/lib/clean.mk: clean mcs51 directory too
4722         * support/regression/tests/longlit.c: added static to T1 declaration
4723         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4724         accesses in the initialization code
4725
4726 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4727
4728         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4729         OSCTRIMVAL as noted in bug #916008
4730
4731 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4732
4733         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4734         in loops with multiple exits (reported as incorrect registers
4735         used by Martin Helmling in Sdcc-user list)
4736
4737 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4738
4739         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4740         made ds390 register extensions look less like error messages
4741
4742 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4743
4744         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4745         reported by Adam Wozniak in Sdcc-user list
4746
4747 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4748
4749         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4750         arithmetic optimizations, added debug output
4751
4752 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4753
4754         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4755         * sdcc.spec: updated and split sdcc into 3 rpms
4756         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4757         needed for literals of LEFT_OP and '+'
4758         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4759         introduced RESULT_TYPE_NOPROM
4760         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4761         left shift
4762         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4763         limited promotion to int only for '*'
4764         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4765
4766 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4767
4768         * src/pic16/gen.c (genSkip),
4769         (genc16bit2lit), (gencjneshort): commented out
4770         (is_LitOp): new helper function, checks operand type
4771         (genCmpEq): rewritten
4772
4773 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4774
4775         * support/regression/tests/bug-908454.c: added
4776
4777 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4778
4779         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4780         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4781         (geniCodeCast): cosmetic, don't preserve bit storage class
4782         (geniCodeLeftShift): added promotion
4783         (geniCodeLogic): fixed regression
4784         * src/SDCCsymt.c (computeTypeOr): accept bits too
4785         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4786
4787 2004-03-07  Borut Razem <borut.razem AT siol.net>
4788
4789         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4790
4791 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4792
4793         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4794         version of pic16_genPackRegisters which does not check if ic is a
4795         CAST operator,
4796         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4797         function cause string1.c regression test fails
4798
4799 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4800
4801         * sim/ucsim/configure.in,
4802         * sim/ucsim/configure,
4803         * sim/ucsim/doc/Makefile.in: use docdir
4804         * src/SDCC.y: fixed sbit atrributes
4805         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4806         * src/SDCCast.c (decorateType): |^& need special promotion handling
4807         * src/SDCCast.h,
4808         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4809         * src/SDCCsymt.h (computeType),
4810         * src/SDCCicode.c: computeType() needs op
4811         * src/SDCCsymt.c (checkTypeSanity),
4812         * doc/sddman.lyx: "plain" bitfields are unsigned
4813         * src/SDCCsymt.c (computeTypeOr): added
4814         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4815         |^& ops
4816         * src/SDCCval.c (val*): computeType() needs op
4817         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4818         * support/regression/tests/onebyte.c: added tests for |^&
4819
4820 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4821
4822         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4823         for writing icode into asm output.
4824
4825 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4826
4827         * src/pic16/device.c: added some debug lines enabled
4828         with macro DEBUG_CHECK,
4829         * src/pic16/genarith.c: more debug in genPlus,
4830         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4831         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4832         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4833         * (aopForSym): onStack symbols are re-placed in data memspace,
4834         and onStack flag is cleared,
4835         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4836         copy temporary pcodeop,
4837         * (genPcall): added warning for not updating PCLATU,
4838         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4839         always true for pic16 port,
4840         * (genMultOneWord): NEW, supports integer multiplication,
4841         * (genMult): modified to call genMultOneWord,
4842         * (ifxForOp): added warning when return NULL,
4843         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4844         flag is set before call to operandFromSymbol for implicit
4845         added structures,
4846         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4847         options.intlong_rent are set by default,
4848         * (_hasNativeMulFor): modified to allow port generation of integer
4849         multiplication,
4850         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4851         set regtype to REG_SFR for all registers, restricting seting the
4852         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4853
4854 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4855
4856         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4857         more than 500 times in the regression tests
4858
4859 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4860
4861         * support/Util/SDCCerr.h,
4862         * support/Util/SDCCerr.c,
4863         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4864         enumerator_list),
4865         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4866         for symbol conflicts.
4867         * support/valdiags/tests/enum.c,
4868         * support/valdiags/tests/tentdecl.c,
4869         * support/valdiags/tests/struct.c: expect possible error messages
4870         referring to original symbol definitions.
4871         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4872         * src/SDCCsymt.h,
4873         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4874
4875 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4876
4877         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4878
4879 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4880
4881         * src/pic16/ralloc.c (newReg): fixed bug #908929
4882
4883 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4884
4885         * src/ds390/gen.c: added missing #include "main.h"
4886
4887 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4888
4889         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4890         checking if symbol is already in set,
4891         * src/pic16/device.h: prototype for checkAddSym,
4892         * src/pic16/gen.c: (_G): added entry interruptvector,
4893         * (assignResultValue): removed some commented out lines,
4894         * (genFunction): check for ISR via sym->type, absolute section for
4895         interrupt code is created via a new pBlock, the goto instruction is
4896         placed now correctly at the interrupt vector position, changed all
4897         references from ivec to _G.interruptvector,
4898         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4899         is the interrupt is a high priority one, same for return from ISR,
4900         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4901         externs to calls of checkAddSym,
4902         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4903         pic16_pcode_verbose flag is set,
4904         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4905         * src/pic16/pcoderegs.c: message about how many registers are saved
4906         will only be emitted if pic16_pcode_verbose flag is set,
4907
4908 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4909
4910         * src/ds390/ralloc.h,
4911         * src/ds390/ralloc.c (ds390_regWithIdx),
4912         * src/ds390/gen.c (emitcode),
4913         * src/ds390/main.h,
4914         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4915         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4916         ds390operandCompare, getRegsRead, getRegsWritten,
4917         initializeAsmLineNode): customized instruction size calculation for
4918         ds390, started basis for some register optimizations
4919         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4920         corresponding assembly output
4921         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4922         missing push/pop of r0/r1. Optimized push/pops
4923
4924 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4925
4926         * src/mcs51/main.c (instructionSize): fixed ACALL size
4927         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4928
4929 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4930
4931         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4932         the sorting of rlist with NULL elements
4933         * (print_idataType, print_idata): NEW to create idata sections
4934         * src/pic16/device.h: idataSymSet new variable
4935         * src/pic16/gen.c (genFunction): fixed some bugs in string
4936         comparing, improved the absolute section creation for ISRs,
4937         added FSR0L/FSR0H in registers that are saved in an ISR,
4938         * (genInline): fixed the processing of inline snippets,
4939         now they undergo no process by the peephole optimizer
4940         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4941         are placed in idataSymSet,
4942         * (pic16emitStaticSeg): extern symbols are added in externs,
4943         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4944         switching when aboslute variables are placed in access bank memory
4945         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4946         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4947         commented out with #if,
4948         * (pic16_packRegisters): reintroduce the check for CAST because some
4949         symbols are not correctly handled,
4950         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4951         pCodeInstruction instead of pCode,
4952         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4953         pCodeAsmDir definition,
4954         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4955         directive, then the argument directive is emitted without the leading
4956         tab, hack for inline labels which must be in the first column,
4957         * (compareLabel,pic16_findNextInstruction),
4958         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4959         * (insertBankSwitch): modified for the new pCodeAsmDir,
4960
4961 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4962         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4963
4964         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4965         instance,
4966         * (pushSide): commented out with #if,
4967         * (assignResultValue): fixed some typos in saving
4968         registers,
4969         * (genPcall): FIXED and sync'ed with genCall,
4970         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4971         * (genNearPointerGet): fixed to handle some more cases,
4972         implementation scheme via table reads,
4973         * (genConstPointerGet): modified to access code memory correct,
4974         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4975         and improved to handle some cases
4976         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4977         instead of "RETLW" for init data
4978         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4979         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4980         variables are placed in access bank memory (<0x80 and >=0xf80),
4981         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4982         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4983         TBLWT_POSTDEC,TBLWT_PREINC
4984         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4985         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4986         directives
4987         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4988         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4989         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4990         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4991
4992 2004-02-29  Borut Razem <borut.razem AT siol.net>
4993
4994         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4995         support/Util/findme.h, support/Util/system.h: enhance binary relative
4996         search for lib and include by using findProgramPath()
4997
4998 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4999
5000         * src/SDCCpeeph.h,
5001         * src/SDCCpeeph.c (pcDistance),
5002         * src/port.h,
5003         * src/mcs51/ralloc.h,
5004         * src/mcs51/ralloc.c (mcs51_regWithIdx),
5005         * src/mcs51/main.h,
5006         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
5007         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
5008         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
5009         size calculation port specific, started basis for some register
5010         optimizations
5011         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
5012         missing push/pop of r0/r1. Optimized push/pops
5013         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
5014         * device/lib/_modsint.c (_modsint),
5015         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
5016         and stack version so regression tests pass
5017
5018 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
5019
5020         * src/Makefile.in (dep): include SLIBOBJS in dependency check
5021         * src/SDCCast.c (decorateType): catch another small optimization
5022         with '?' operator
5023         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
5024         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
5025         modified to finally use computeType() all over SDCC,
5026         see Feature Request #877103
5027         * src/SDCCval.h: cosmetic
5028         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
5029         valCompare(); regression tested in muldiv.c
5030         * support/regression/tests/muldiv.c (testMod): mod sign follows
5031         dividend only
5032
5033 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
5034
5035         * src/SDCCast.c (decorateType): fixed bug #902362
5036         * doc/INSTALL.txt: fixed install instructions for win32
5037
5038 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
5039
5040         * device/include/Makefile.in (install): fixed by replacing spaces
5041         by tabs
5042         * doc/README.txt,
5043         * doc/INSTALL.txt: updated for release
5044         * doc/sdccman.lyx: added warning for --xstack being buggy
5045
5046 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
5047
5048         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
5049         to eliminate build warnings.
5050         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
5051
5052 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
5053            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5054
5055         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
5056         removed -penable-stack, added comment for stack pragma, added
5057         warning for not initializing the stack/frame registers, removed
5058         comment at interrupts section
5059
5060         Stack is made permanent, there is no ability to disable stack usage.
5061         * src/pic16/device.h,
5062         * src/pic16/device.c: removed all references to USE_STACK macro,
5063         * src/pic16/device.c (pic16_dump_section): when no elements in
5064         rlist, free rlist before return,
5065         * (pic16_dump_int_registers): NEW, internal registers are a new set
5066         of general purpose registers reused by each function,
5067         * (checkAddReg): returns 1 if registers is added to set,
5068         * (pic16_groupRegistersInSection): when a registers is of type
5069         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
5070         * src/pic16/device.h: memRange and Assigned Memory are deleted,
5071         SRCASECMP macro is moved here from device.c
5072         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
5073         PO_PCLATU, PO_PRODL, PO_PRODH,
5074         * (pic16_pCodeOpType, genMinus,
5075         changed compares to "a" register, with AOP_ACC,
5076         * (pic16_genPlus): fixed some bugs and indented properly,
5077         * (pic16_addSign): changed size to size+offset in the MOVWF
5078         instruction,
5079         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
5080         multiply 8-bit operand by literal, result is 8-bit,
5081         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
5082         multiply 2 8-bit operand, result is 8-bit,
5083         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
5084         genUMult8X*_16,
5085         * src/pic16/gen.c: changed accUse to contain WREG only,
5086         * (pic16_emitcomment): renamed to pic16_emitpcomment,
5087         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
5088         true, do not use immediate addressing any more unless sym is a
5089         pointer in codespace,
5090         * (aopForRemat): do not use immediate addressing when symbol not in
5091         codespace and when symbol's address is requested,
5092         * (aopOp): for-loop in if(sym->accUse) is modified for the new
5093         accUse size (= 1),
5094         * (aopGet): added case for AOP_ACC and don't return "accumulator
5095         bug" but WREG instead,
5096         * (popGetTempReg): pushes contents of temporary register in stack,
5097         * (popReleaseTempReg): pops contents of temporary register from
5098         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
5099         * (pic16_popGet): separated case AOP_ACC to return register WREG
5100         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
5101         or PO_IMMEDIATE and initializes their instance/offset appropriately,
5102         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
5103         the use of immediate pointers to certain cases only.
5104
5105         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
5106         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
5107         * (assignResultValue, genCall, genRet): modified to use the new
5108         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
5109         genPcall is still broken,
5110         * (genFunction): added code to create 'A' type pBlocks when
5111         interrupt functions are generated, code not extensively tested yet,
5112         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
5113         * (genEndFunction): modified so ISRs pop stored registers from stack,
5114         * (genMultOneByte): cleanup,
5115         * (AccRsh): added flag andmask, to and result with appropriate mask,
5116         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
5117         * (genDataPointerGet): fixed and reenabled its use,
5118         * (genNearDataPointerGet): bugs fixed,
5119         * (genDataPointerSet): bugs fixed,
5120         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
5121         pic16_DumpSymbol, pic16_DumpOp,
5122         * src/pic16/genutils.h: function prototypes for the above functions,
5123         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
5124         pointers,
5125         * (pic16emitRegularMap): many many many improvements, but needs a
5126         major cleanup,
5127         * src/pic16/main.c: enable_stack in pic16_options is removed,
5128         * (_pic16_parseOptions): removed command line options -penable-stack,
5129         * (_process_pragma): emit stack symbol only when stack pragma is
5130         processed,
5131         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
5132         redirected to FSR0L/FSR0H pair,
5133         * (pic16_get_op, pic16_get_op2): modifications and improvements,
5134         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5135         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
5136         for immediates,
5137         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
5138         * (dumpPicOptype): NEW,
5139         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
5140         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
5141         with movff instruction,
5142         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
5143         added pic16_int_regs, some packRegsFor* functions are commented out,
5144         because produce errors,
5145         * src/pic16/NOTES: minor modifications
5146
5147 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5148
5149         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
5150         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
5151         --pack-iram.
5152         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
5153         * as/mcs51/lkaomf51.c: fixed bug #895763
5154
5155 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
5156
5157         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
5158
5159 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5160
5161         * doc/sdccman.lyx: added details about the HC08 storage classes and
5162         interrupts, fixed the register usage info for z80 & gbz80
5163
5164 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
5165
5166         * doc/sdccman.lyx: added more pic16 port documentation
5167         * device/include/pic16/: added header pic18fregs.h
5168
5169 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
5170
5171         * doc/sdccman.lyx: added Vangelis' contribution
5172
5173 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5174
5175         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
5176         extend to the next CALL or PCALL, not just to the next CALL.
5177
5178 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
5179
5180         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
5181
5182 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5183
5184         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
5185         bug #895752 and a better fix for bug #716790
5186
5187 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5188
5189         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
5190
5191 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5192
5193         * doc/sdccman.lyx: minor changes, minor changed
5194
5195 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
5196
5197         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
5198         which can't handle SDCC_NEWONEBYTEOPS,
5199         (geniCodeMultiply): removed conversion from mult to shift for pic14
5200         and pic16
5201
5202 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5203
5204         * src/hc08/gen.h,
5205         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
5206         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
5207         thus fixing bug #895406
5208
5209 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
5210
5211         * device/lib/_modsint.c,
5212         * device/lib/_modslong.c: sign follows divisor only
5213         * src/hc08/gen.c (genMultOneByte): if result size is 1,
5214         signs or signedness can be ignored
5215         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
5216         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
5217         added optimization for IFX,
5218         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
5219         arguments;
5220         reenabled optimization for IFX, which was removed on 2004-01-11
5221         * src/SDCCast.h: added return type IFX
5222         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
5223         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
5224         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
5225         SDCC_OLDONEBYTEOPS selects the old behaviour
5226         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
5227         changed again and commented promotion rule
5228         * src/SDCCval.c (valDiv): promotion no longer necessary
5229         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
5230         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
5231         rewritten
5232         * support/regression/tests/onebyte.c: added
5233
5234 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
5235
5236         * gen.c (genInline): reverted to old code for assemnling inline
5237         code because of bug reported James Chadd
5238
5239 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
5240
5241         * ralloc.h: missing declarations from previous patch,
5242         seems that patch for ralloc.h was never applied, fixed
5243
5244 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5245            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5246
5247         * pcode.c,
5248         * pcode.h,
5249         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
5250         indirect addressing. Marked FSR0 as deprecated
5251         * gen.c (pointerCode): commented out, not needed now
5252         (pic16_popGet2p): new MOVFF helper function
5253         (genGenPointerGet),
5254         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
5255         (shiftRLong): removed duplicate debugging info
5256
5257 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5258
5259         * src/ds390/gen.c (genNearPointerGet),
5260         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
5261         optimization with bits, but not bitfields.
5262         * src/ds390/ralloc.c (packRegisters),
5263         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
5264
5265 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
5266
5267         * src/SDCCcse.c (algebraicOpts): copy operands before modification
5268
5269 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5270
5271         * src/SDCCsymt.h,
5272         * src/SDCCicode.c (operandFromSymbol),
5273         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
5274         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
5275         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
5276         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
5277         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
5278         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
5279         bug #892038
5280         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
5281         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
5282         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
5283         * src/SDCCsymt.c (newSymbol),
5284         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
5285         enumerator_list),
5286         * src/SDCCval.h,
5287         * src/SDCCval.c (newiList): fixed bug #885705
5288
5289 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5290
5291         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5292         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5293
5294 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5295
5296         * device/include/c8051f120.h,
5297         * device/include/c8051f300.h,
5298         * device/include/c8051f310.h: added/updated header files for Silicon
5299         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5300         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5301         in new section Submitting patches
5302
5303 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5304
5305         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5306         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5307         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5308         genGenPointerSet),
5309         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5310         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5311         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5312         genGenPointerSet),
5313         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5314         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5315         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5316         genGenPointerSet),
5317         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5318         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5319         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5320         genGenPointerSet): fixed bug #892400
5321         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5322         to eliminate build warnings.
5323         * src/SDCCast.c (processParms),
5324         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5325         fixed bug 751859
5326         * support/valdiag/valdiag.py: added GCC to the list of defines active
5327         when compiling with gcc
5328
5329 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * support/Util/SDCCerr.h,
5332         * support/Util/SDCCerr.c,
5333         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5334         with an incomplete type (fixed bug #883734)
5335         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5336
5337 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5338
5339         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5340
5341 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5342
5343         * src/SDCCast.c (decorateType),
5344         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5345         function pointer implementation
5346         * support/regression/tests/funptrs.c: added tests to verify both forms
5347         of function pointers work correctly. Added tests to verify parameters
5348         are passed in the correct order.
5349
5350 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5351
5352         * device.c (regCompare): registers are sorted by ascending
5353         address and increasing size,
5354         * main.c (_pic16_finaliseOptions): removed the declaration
5355         of compiler macro MCU. Now a macro of the format pic18fxxxx
5356         will be defined from the command line
5357
5358 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5359             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5360
5361         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5362         PCOP_RLCF was overwritten!
5363         * gen.c (genSkip): commented out calls to pic16_emitcode,
5364         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5365         * (genlshTwo),
5366         * (genRRC): added debugging info,
5367         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5368         overwritten while shifting,
5369         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5370         overwritten while shifting,
5371         * (AccLsh),
5372         * (AccRsh),
5373         * (shiftLLeftOrResult),
5374         * (shiftRLeftOrResult),
5375         * (shiftRLong),
5376         * (shiftLLong): Implemented with pic16_emitpcode
5377         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5378         * (genLeftShift): Fixed bug, operand for shift by variable always
5379         was "and"ed with 0x0f,
5380         * (genLeftShiftLiteral),
5381         * (genrshTwo),
5382         * (genRightShiftLiteral): added debugging info,
5383         * (genrshFour): added comment,
5384         * (genRightShift): determined signedness from operand "left"
5385         instead of "result"
5386
5387 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/SDCCicode.c (geniCodeParms),
5390         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5391         function pointers, fixed function pointer bugs #861242 and #861896
5392
5393 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5394
5395         * device/include/c8051f000.h,
5396         * device/include/c8051f120.h,
5397         * device/include/c8051f300.h: added header files for Silicon
5398         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5399
5400 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5401
5402         * src/SDCCast.c (processParams): added new type flow and restructured
5403         (gatherAutoInit): added new type flow
5404         (addCast): cosmetic changes
5405         (getLeftResultType): added new type flow for array indices, patch
5406         provided by Stas, see FR #877103
5407         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5408         array index patch by Stas
5409         * src/SDCCast.h: added prototype getResultTypeFromType()
5410         * src/SDCCval.h,
5411         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5412         * src/pic/glue.c (pic14emitStaticSeg),
5413         * src/pic16/glue.c (pic16emitStaticSeg),
5414         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5415         for initialization of symbols
5416         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5417         * support/Util/SDCCerr.h:
5418         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5419         * .version: bumped version number to 2.3.8
5420         * device/include/Makefile.in (install),
5421         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5422         avoid warnings
5423
5424 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5425
5426         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5427         Slade Rich fixed an optimization bug
5428         * src/pic/pcodepeep.c,
5429         * src/pic/pcoderegs.c
5430         * doc/Makefile (install): added test for directory
5431
5432 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5433
5434         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5435         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5436         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5437         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5438         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5439         * as/mcs51/asexpr.c (term),
5440         * as/hc08/asexpr.c (term): fixed bug #887146
5441
5442 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5443
5444         * src/z80/gen.c (genMult): handle single byte result product
5445         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5446         DUMMY_READ_VOLATILE (fixed bug #886367)
5447
5448 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5449
5450         * support/regression/tests/libmullong.c: fixed logic, on little endian
5451         hosts we ended without a mullong_wrapper()
5452
5453 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5454
5455         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5456         virus/worm forged address usage.
5457
5458 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5459
5460         Fixed promotion, it should be done on AST level:
5461         * src/SDCCast.c (addCast): added promotion to int
5462         (decorateType): updated call to upCast()
5463         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5464         usualUnaryConversions()
5465
5466 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5467
5468         * support/regression/tests/literalop.c (mulWrapper): Added a
5469         wrapper to remove integer overflow warnings.
5470
5471         * support/regression/tests/float_trans.c: Made work on host.
5472
5473         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5474         location of sz80.
5475
5476         * support/regression/generate-cases.py (main): Changed from inline
5477         to a main method.
5478
5479         * doc/Makefile (install): Changed to depth first to get rid of
5480         missing directory install warning.
5481
5482         * as/Makefile (install-doc): Made work on Mac.
5483
5484 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5485
5486         * src/SDCCast.c: added an additional type flow in decorateType() of
5487         opposite direction, see feature request #860006; it's enabled at runtime
5488         by setting the environment variable SDCC_NEWTYPEFLOW
5489         * src/SDCCast.h: changed prototype of decorateType()
5490         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5491         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5492         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5493         see feature request #877103
5494         * src/SDCCval.c: updated call of decorateType()
5495         (valBitwise): fixed bug #882876
5496         (valMinus): added promotion
5497         (valLogicAndOr): result is unsigned
5498         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5499         * src/SDCCsymt.c (computeType),
5500         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5501         must not cause an unsigned operation
5502         * src/pic/glue (pic14emitRegularMap),
5503         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5504
5505 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5506
5507         * src/pic/pcode.c (PCodeID): commented out left over debug code
5508
5509 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * support/valdiag/tests/overflow.c: added shift tests
5512         * src/pic/device.c,
5513         * src/pic/gen.c,
5514         * src/pic/gen.h,
5515         * src/pic/glue.c,
5516         * src/pic/main.c,
5517         * src/pic/pcode.c,
5518         * src/pic/pcode.h,
5519         * src/pic/pcodepeep.c,
5520         * src/pic/pcoderegs.c,
5521         * src/pic/ralloc.c,
5522         * src/pic/ralloc.h: applied patch from Slade Rich;
5523         added support for multiple code pages and multiple RAM banks on the
5524         PIC 14 port. The ASM files now no longer simply assume all the
5525         code / RAM are in the same page / bank. This means the linker can
5526         safely allocate code/RAM of separate ASM files to different pages/banks.
5527         * doc/sdccman.lyx: added Slade's tips
5528         * src/mcs51/peeph.def: fixed bug #880768
5529
5530 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5531
5532         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5533         * src/SDCCast.c (decorateType): fixed bug #880197
5534
5535 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5536
5537         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5538         getopt.h.
5539
5540         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5541         strtof is not part of C89 and isn't included with Mac OS X.
5542
5543 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5544
5545         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5546         shiftL2Left2Result): fixed bug #879326
5547         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5548         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5549         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5550         address fetch for clr instruction
5551         * device/lib/hc08/_mulint.c: created optimized assembly version
5552         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5553
5554 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5555
5556         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5557         proposed in FR #877103
5558
5559 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5560
5561         * src/SDCCval.c (cheapestVal): added missing checks
5562         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5563         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5564
5565 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5566
5567         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5568         equal operands
5569
5570 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5571
5572         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5573         loaded with the linker search paths (-L arguments) and the libraries
5574         to be linked with the current source (-l arguments). Changes
5575         currently will affect only the pic16 port.
5576         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5577         include path the port specific paths and port specific libraries,
5578         * gplink command now contains the $3 argument,
5579         * src/pic16/device.h,
5580         * src/pic16/device.c,: structure PIC_device is made public and
5581         renamed to PIC16_device, the same for variable Pics which is renamed
5582         to Pics16. Updated all references to them.
5583         * src/pic16/glue.c (pic16glue): corrected bug with code
5584         initialization which bypassed the variable initializations block.
5585
5586         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5587         COMPILE_FLAGS and added the --nostdinc option
5588
5589 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5590
5591         * device/include/mc68hc908jb8.h: Register defs for another member
5592         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5593
5594 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5595
5596         Documenting changes from previous commits.
5597         * configure.in (version 1.56),
5598         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5599         when generating output files to configure the pic16 library,
5600         but now I've commented it out, since gputils aren't installed in the
5601         SF compile farm, so library won't compile
5602
5603         * device/lib/Makefile.in (version 1.56): initially I've added in
5604         target 'all' the prerequestive 'model-pic16' so it compiled the
5605         pic16 library, but now I've commented it out for the same reasons
5606         above,
5607         * added targets 'model-pic16' and 'objects-pic16' to compile the
5608         library
5609         * added target 'port-specific-objects-pic16' to handle the
5610         generated libraries and copy them into the build/ directory
5611         * added target 'clean-intermediate-pic16' to clean intermediate
5612         files into pic16 directory
5613         * in target 'installdirs' added line to create directory pic16 in
5614         the installation path
5615
5616         * device/include/Makefile.in (version 1.11): in target 'install'
5617         added lines to copy all header files to installation path,
5618         * in target 'installdirs' added line create directory for pic16
5619         headers in the installation path
5620
5621 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5622
5623         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5624          a function call
5625
5626 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5627
5628         * configure,
5629         * device/lib/configure.in,
5630         * device/lib/configure: fixed for autoconf 2.57
5631
5632 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5633
5634         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5635         option so that it actually works. Made it specific to the z80, since
5636         the gbz80 doesn't have these kinds of I/O ports.
5637
5638 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5639
5640         * device/include/z180.h,
5641         * device/lib/_memcpy.c,
5642         * device/lib/_memmove.c,
5643         * device/lib/_mulint.c,
5644         * device/lib/ser_ir.c,
5645         * device/lib/ser_ir_cts_rts.c,
5646         * device/lib/_strcmp.c,
5647         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5648         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5649         portmode; added deprecation warning for bank= and protmode= forms.
5650         Also, guard against buffer overflow.
5651         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5652
5653 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5654
5655         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5656         changed interrupt vector table generation to only emit declared vectors.
5657         * device/include/Makefile.in: added missing backslash
5658         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5659
5660 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5661
5662         Mainly changes to support compilation of the device libraries
5663         * src/pic16/device.c: stack is allocated via symbol and not
5664         via literal number. The symbol is placed in the corresponding
5665         position of the data ram
5666         * (pic16_dump_section): relocatable and absolute uninitialized
5667         data are now emitted in sorted order to reduce section naming,
5668         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5669         weren't marked as being in the access bank,
5670
5671 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5672
5673         Added portion of GNU PIC Library under the directory
5674         device/include/pic16 and device/lib/pic16. These files
5675         contain the declarations of SFRs for the PIC18Fxx2 devices.
5676         The directory is initialized via configure from toplevel.
5677
5678 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5679
5680         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5681         the spilllocations to be compared correctly
5682
5683 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5684
5685         * src/SDCCast.c (decorateType): fixed bug introduced today
5686
5687 2004-01-12  Borut Razem <borut.razem AT siol.net>
5688
5689         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5690         doc/sdccman.lyx: upper case pragmas are deprecated
5691
5692 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5693
5694         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5695         in simpler and even better code
5696
5697 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5698
5699         * src/SDCCicode.c (operandOperation): fixed bug #874819
5700         * src/SDCCast.c (decorateType): fixed
5701         char foo (unsigned long ul) { return ul > 0; }
5702
5703 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5704
5705         * doc/sdccman.lyx: Moved and added some sections, small changes
5706         all over. Telling LaTeX to be less strict with word spacing
5707         to better keep the right margin. Changed some notes about
5708         maintainance of the ports in section 3.2.1 - is it OK like this?
5709
5710 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5711
5712         SDCC source changes:
5713         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5714         convilong): modified to inform the pic16 port that builtin functions
5715         are external
5716
5717         PIC16 PORT specific changes:
5718         * src/pic16/device.c pic16_dump_equates() added,
5719         processor registers declared internally by the port are emitted in
5720         the translation as equates,
5721         * src/pic16/gen.c: inline code is passed unprocessed to the
5722         translation,
5723         * (pic16_popGetLit2): fnuction modified to take second operand as
5724         pCodeOp pointer and not as literal,
5725         * (popRegFromIdx): prefixed with pic16_,
5726         * (pic16_popCombine2): modified to receive already allocated pCode
5727         operands,
5728         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5729         * (genFunction): initializes local stack frame and pushes on stack
5730         all the registers used by this function,
5731         * (genEndFunction): restores all registers from stack and restores
5732         stack frame,
5733         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5734         improvements,
5735         * (pic16glue): changed the program startup sequence,
5736         * added new dbName code 'A' for functions placed in absolute section
5737         * src/pic16/main.c: added function attribute _naked,
5738         * added pragma 'code' to place a fnuction at an absolute address,
5739         * added command line arguments --debug-ralloc and --pcode-verbose,
5740         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5741         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5742         * (pic16_newpCodeOpLit2): modified to take the second operand as
5743         pCodeOp pointer,
5744         * (pic16_printpBlock): modified to emit each function in a separate
5745         section,
5746         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5747         UPPER for immediate operands,
5748         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5749         instruction,
5750         * src/pic16/peeph.def: all peepholes with movff are commented out,
5751         because there is a problem in the pcode peep optimizer,
5752         * src/pic16/ralloc.c: the register allocator can now reuse local
5753         function symbols for another function. This saves register usage.
5754         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5755
5756         Added file src/pic16/NOTES with information about program writing on
5757         the current port version.
5758
5759 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5760
5761         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5762         and peephole 252 (array access)
5763
5764 2004-01-09  Borut Razem <borut.razem AT siol.net>
5765
5766         * src/SDCCmain.c : fixed #872250: -l command line defined library
5767           files are scanned before standard library files
5768
5769 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5770
5771         * src/SDCCast.c (decorateType): fixed bug #874046
5772
5773 2004-01-09  Borut Razem <borut.razem AT siol.net>
5774
5775         * support/scripts/sdcc.nsi: remove previous installation
5776
5777 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5778
5779         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5780         bytes for last interrupt vector (mcs51)
5781         * sdcc.spec: fixed typo
5782
5783 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5784
5785         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5786         gen51Code): more efficient parameter receive for --model-large
5787         ("bug" #845294)
5788
5789 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5790
5791         * src/ds390/main.c,
5792         * src/z80/main.c: added missed needLinkerScript flags (more than
5793         one port structure defined in these file)
5794         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5795         bug #795325
5796
5797 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5798
5799         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5800         * src/port.h: added flag needLinkerScript in port->linker
5801         structure to inform whether to create a .lnk file or not,
5802         * src/avr/main.c,
5803         * src/ds390/main.c,
5804         * src/hc08/main.c,
5805         * src/mcs51/main.c,
5806         * src/pic/main.c,
5807         * src/pic16/main.c,
5808         * src/xa51/main.c,
5809         * src/z80/main.c: changed appropriately to configure
5810         needLinkerScript flag
5811         * src/pic/gen.c,
5812         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5813         * src/pic/glue.c: added variable udata_section_name to
5814         override default uninitialized data segment definition for
5815         devices only with SHAREBANK memory (reported from Erik Epetrich)
5816         * (pic14emitOverlay): modified to emit a commented overlay segment
5817         directive when no overlay data exist
5818         * (picglue): modified to emit uninitialized data segment
5819         according to udata_section_name
5820         * src/pic/main.c (_pic14_parseOptions): added command line
5821         options --udata-section-name=[name] to override default
5822         udata definition name
5823         * modified _linkCmd and _asmCmd to include compiler passed
5824         arguments via -W option
5825         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5826         object file from '.rel' to '.o' in port->linker structure,
5827         changed size of fptr from 2 to 3 in port structure
5828
5829 2004-01-07  Borut Razem <borut.razem AT siol.net>
5830
5831         * support/scripts/sdcc.nsi: update PATH
5832         * support/scripts/sdcc.ico: craeted
5833
5834 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5835
5836         * device/include/Makefile.in: fix install
5837         * doc/Makefile: fix install
5838
5839 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5840
5841         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5842         in bug #860505
5843         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5844         how the function variable allocation summary is displayed; also
5845         include information about variables allocated to the overlay
5846         segment
5847
5848 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5849
5850         * as/mcs51/lkmain.c: Help about -Y option
5851         * as/mcs51/lkarea.c: Fixed gcc warnings
5852
5853 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5854
5855         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5856         fixed warning
5857         * support/valdiag/tests/overflow.c: added
5858         * src/SDCCast.c (decorateType),
5859         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5860         LEFT_OP (left shift)
5861
5862 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5863
5864         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5865         (default behaviour).
5866
5867 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         A python script to validate compiler diagnostic messages. It can be
5870         used to verify that sdcc complains about bad c source code and
5871         gives a good location of the error.
5872         * support/valdiag/Makefile,
5873         * support/valdiag/valdiag.py,
5874         * support/valdiag/tests/*
5875
5876 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5879         * src/SDCCsymt.c (newEnumType),
5880         * src/SDCCsymt.h
5881         * support/Util/SDCCerr.c,
5882         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5883         enum related bugs.
5884         * support/regression/tests/enum.c: added test for enum values that
5885         require at least 2 bytes of storage.
5886
5887 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5888
5889         * src/common.h: added ifndef/define/endif macros
5890         around the header file.
5891         Bug reported from Jesus Calvino-Fraga
5892
5893 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5894
5895         * sdcc.spec: updated
5896         * device/include/Makefile.in: don't install CVS directories
5897         * device/lib/Makefile.in: added removal of CVS directories after install
5898         * doc/Makefile: fixed install, added local_icons
5899         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5900         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5901         * src/ds390/gen.c (genRightShift): fixed bug #870788
5902         * src/SDCCast.c (decorateType): fixed bug #870781
5903
5904 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         PIC16 port related changes:
5907         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5908         added variable stackPos,
5909
5910         * gen.c: genCall, assignResultValue: added support for
5911         pushing/retrieving function parameters to/from stack,
5912         genFunction,genEndFunction: setup stack frame for the
5913         generated function,
5914         genAddrOf: will be changed according to bug 863624
5915
5916         * added files genutils.c and genutils.h which contain gen*
5917         debugged and optimised functions extracted from gen.c
5918
5919         * glue.c: added variable 'externs' which holds extern symbols,
5920         pic16emitRegularMap: is modified to properly handle relocatable
5921          symbols under the new scheme,
5922         pic16createInterruptVect: is modified
5923         pic16printPublics: is modified to emit 'global' assembler directives,
5924         added pic16_printExterns to print extern symbols,
5925         pic16glue: initializes stack/frame pointer in the beginning of
5926         the assembly output. Temporary hack, will be corrected later,
5927         because gplink yet does not support stack and SDCC does not
5928         yet support a type of crt0.o object to create the final binary.
5929
5930         * Removed many lines that contain 8051 legacy code.
5931         * The code is finally placed under a 'code' directive.
5932         * Added port specific options.
5933
5934         * _process_pragma: simplified since now we do not need *special*
5935         include file to define SFR registers. But a separate header
5936         will be needed. This will be developed later.
5937         * _pic16_parseOptions: added, parses port specific options:
5938         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5939         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5940         --preplace-udata-with=
5941
5942         * _pic16_setDefaultOptions: modified to initialize section names,
5943         but hack is temporarly out of order since it needs improvement.
5944         * _pic16_genAssemblerPreamble: configuration words are emitted by
5945         their address instead of their name. This part is incomplete and
5946         supports only the 18Fxx2 devices. Other devices will emit an error
5947         during assembly since they do not contain the same set of config
5948         registers
5949         * _pic16_genIVT: is modified,
5950
5951         * pcode.c: added definitions for some hardware registers that are needed
5952         for stack support
5953         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5954         All PCI entries are updated. Now LFSR is supported.
5955         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5956         * added pic16_newpCodeOpLit2 to support instructions with
5957         two literal arguments
5958         * pic16_pCode2str: corrected code that emits assembler instructions
5959         with two literal operands and those that have an access bit modifier
5960         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5961         this fixes a bug which caused some labels to be lost, when an
5962         assembler directive was added, i.e. banksel,
5963         * pic16_FixRegisterBanking: improved logic that causes the insertion
5964         of bank switching,
5965         * InlineFunction: functions that are called once, are not any more
5966         inlined. This can be a port option in the future,
5967
5968         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5969
5970         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5971         hold the corresponding uninitialized symbols,
5972         * pic16_allocProcessorRegister: registers have explicit marked the
5973         accessBank field,
5974         * pic16_allocInternalRegister: registers are explicit marked as
5975         not used,
5976         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5977         processing list, so bit registers were lost,
5978         *
5979
5980         * ralloc.h: added field 'accessBank' and original symbol operand
5981         in register definition,
5982         * removed the field isMapped from register definition,
5983
5984         ** Several functions have been removed from various sources:
5985         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5986         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5987         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5988         pic16_assignRelocatableRegisters
5989
5990         ** others have been introduced:
5991         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5992         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5993
5994 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5995
5996         * support/scripts/inc2h.pl: changed definition of BIT_AT
5997         to emit 'sbit at' instead of 'bit at'. This was a request.
5998
5999         PIC16 port related preliminary changes:
6000         * gen.c: prefixed function popRegFromString with
6001         pic16_ and all references to it corrected
6002         * pcode.c: all pic16_pc_* hardware registers prefixed
6003         with underscore (_),
6004         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
6005         * ralloc.c: newReg(): when register is REG_SFR then
6006         set address to rIdx,
6007         pic16_allocProcessorRegister(): marks register wasUsed=0
6008         pic16_writeUsedRegs(): added a call to assign processor
6009         registers via pic16_assignFixedRegisters
6010
6011 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6012
6013         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
6014         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
6015         variables in unused register banks.  Also the SSEG is placed
6016         wherever there is enough space for it, and IDATA can be anywhere
6017         in internal RAM.  For now compile using -Wl-Y[stack_size].
6018         The mem file is different for this option as well, since it
6019         makes no sense of talking about DSEG lenght.
6020
6021 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
6022
6023         * src/SDCClrange.c: fixed bug 869095 that caused segfault
6024         in certain cases, e.g. when ROM assignment, patch provided
6025         from Albert den Haan.
6026
6027 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
6028
6029         Many signedness and type propagation fixes:
6030         * src/SDCCicode.c: made geniCodeCast() static
6031         replaced SPEC_ by IS_ (cosmetic)
6032         (operandOperation): fixed div and mod operation
6033         (usualBinaryConversions): added support for promotion of char
6034         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
6035         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
6036         (geniCodeAdd): an array index will stay unsigned, even if promoted
6037         from char to int
6038         (geniCodeArray): ditto
6039         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
6040         * src/SDCCsymt.c (computeType): added more support for char;
6041         promotion of char is selectable by promoteCharToInt, fixed signedness
6042         for all cases
6043         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6044         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
6045         * src/SDCCval (val*): replaced signedness calculation by
6046         computeType()
6047         rearranged if-branches (cosmetic)
6048         (valShift): added warning W_SHIFT_CHANGED
6049         (valCompare): fixed problem with different types
6050         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
6051         * support/regression/tests/literalop.c: added many cases
6052         * support/regression/tests/ast_constant_folding.c: changed finally to
6053         'unsigned int'
6054         * .version: new year, new version: 2.3.7
6055         * src/SDCCmain.c (main): applied patch #866468
6056         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
6057         provided by Scott Bronson
6058         * doc/sdccman.lyx: updated documentation for sdcdb
6059         updated and added chapter tips
6060
6061 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6062
6063         * src/SDCCsymt.h: missing from yesterday's commits
6064
6065 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6066
6067         * src/SDCC.y (struct_or_union_specifier),
6068         * support/Util/SDCCerr.c,
6069         * support/Util/SDCCerr.h: verify that struct & union tags are used
6070         as declared.
6071
6072 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6073
6074         * src/SDCCglobl.h: missing from yesterday's commits
6075
6076 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
6079         sft_attributes, struct_declaration, parameter_declaration,
6080         type_name, start_block, declaration_list),
6081         * src/SDCC.lex (check_type): support redefinition of typedef names
6082
6083 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6084
6085         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
6086         aligned xdata arrays. Erik helped me with the if clause.
6087
6088 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6089
6090         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
6091         warning
6092
6093 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6094
6095         * src/SDCCast.h,
6096         * src/SDCCast.c (newAst_),
6097         * src/SDCCicode.h,
6098         * src/SDCCicode.c (ast2iCode, newiCode),
6099         * src/SDCCglobl.h,
6100         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
6101         expr, statement, expression_statement, selection_statement,
6102         iteration_statement, expr_opt, jump_statement): foundation for tracking
6103         sequence points
6104         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
6105         point code too)
6106
6107 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6108
6109         * support/Util/SDCCerr.c,
6110         * src/SDCCast.h,
6111         * src/SDCCast.c (createCase, createDefault, decorateType),
6112         * src/SDCClabel.c (labelUnreach),
6113         * src/SDCC.y (labeled_statement, jump_statement): More improvements
6114         to error messages.
6115         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
6116         (with thanks to Stas Sergeev)
6117         * device/include/time.h,
6118         * device/lib/time.c (CheckTime): suppress unreachable code warning
6119
6120 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/SDCCast.c (createIvalCharPtr),
6123         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
6124         bug #753752)
6125         * support/regression/tests/nullstring.c: tests for these two bugs
6126
6127 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6128
6129         * support/Util/SDCCerr.h,
6130         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
6131         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
6132         about storage class and 'at' used inside struct or union
6133         * src/SDCCBBlock.c (iCodeFromeBBlock),
6134         * src/SDCCcse.c (ifxOptimize),
6135         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
6136         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
6137         printIval, emitStaticSeg, emitOverlay),
6138         * src/SDCClabel.c (deleteIfx),
6139         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
6140         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
6141         gatherAutoInit, processParms),
6142         * support/Util/SDCCerr.h,
6143         * support/Util/SDCCerr.c (werrorfl): Support for better error location
6144         reporting for post-parse errors.
6145
6146 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
6149         implicit casts via union; they don't work on big endian systems
6150         (possible fix for bug #861138)
6151
6152 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6153
6154         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
6155         * src/mcs51/main.c: fixed the fix for bug #737001
6156
6157 2003-12-15  Borut Razem <borut.razem AT siol.net>
6158
6159         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
6160
6161 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6162
6163         * support/makebin/makebin.c: put output in binary mode
6164
6165 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6166
6167         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
6168         xdata and data memory on startup. Set the environment variable
6169         SDCC_NOGENRAMCLEAR to disable this.
6170         * src/mcs51/peephole.def,
6171         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
6172         (allows non-interrupt and interrupt code to safely compete for a resource
6173         without the non-interrupt code having to disable interrupts)
6174
6175 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6176
6177         * src/SDCCicode.c (geniCodeAdd),
6178         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
6179         with valFromType if type might be a pointer and host is big endian).
6180         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
6181         types, not just integer types.
6182         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
6183         multiply defined with mismatching "at" address.
6184
6185 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6186
6187         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
6188         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
6189         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
6190         with embedded nulls (fixed bug #753752)
6191
6192 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6193
6194         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
6195         Apparently this did not see much testing (endless loop)
6196
6197 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6198
6199         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
6200
6201 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6202
6203         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
6204         gracefully handle NULL memmap pointers
6205
6206 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6207
6208         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
6209         instead of deleting the iCode when an operand is volatile
6210         * src/z80/gen.c (genDummyRead),
6211         * src/mcs51/gen.c (genDummyRead),
6212         * src/ds390/gen.c (genDummyRead),
6213         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
6214         not just IC_RIGHT
6215         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
6216         * src/SDCC.y: fixed bug #850420
6217
6218 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6219
6220         Applied z80 i/o port patch from Peter Townson and fixed some operators
6221         to better handle operands in A register.
6222         * device/include/z180.h
6223         * src/SDCC.y
6224         * src/SDCCglue.c
6225         * src/z80/gen.c
6226         * src/z80/gen.h
6227         * src/z80/main.c
6228         * src/z80/peeph-z80.def
6229         * src/z80/peeph.def
6230         * src/z80/z80.h
6231
6232 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6233
6234         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
6235
6236 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         * device/lib/hc08/_mullong.c: Removed extra #endif
6239
6240 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6241
6242         * sim/ucsim/hc08.src/inst.cc,
6243         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
6244         carries from x to h
6245         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
6246         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
6247         * device/include/stdarg.h: fixed varargs for hc08
6248         * device/lib/Makefile.in,
6249         * device/lib/hc08/Makefile,
6250         * device/lib/hc08/_mulint.c,
6251         * device/lib/hc08/_mullong.c: fixed some endian problems
6252
6253 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6254
6255         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
6256         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
6257         * device/lib/_gptrget.c,
6258         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
6259
6260 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6261
6262         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
6263         * src/SDCCast.c (astErrors): fixed bug #846007
6264         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
6265
6266 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6267
6268         * src/SDCCast.c (decorateType): disabled a transformation I added in
6269         revision 1.188 (access to fields of a structure at an absolute address);
6270         it breaks with bitfields, extern declarations, and gcse analysis.
6271         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
6272         could be assigned through a pointer, so don't complain.
6273         * src/SDCCast.c (astErrors),
6274         * src/SDCCast.h,
6275         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
6276
6277 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
6278
6279         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
6280         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
6281         output of __config directives, since gpasm now supports them
6282         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
6283         pre-processor macro, i.e. -DMCU=p18f452
6284         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
6285         and modified to handle 'cast' icode similarly to '=' icode
6286         * src/pic16/device.h (typedef struct PIC_device): added field
6287         'extMIface' to indicate that chip has external memory interface
6288         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
6289         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6290         18F8720
6291
6292 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         * src/SDCC.y (pointer): fixed bug #846006
6295         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6296         * src/SDCCast.c (decorateType): fixed bug #846009
6297         * src/ds390/peeph.def,
6298         * src/ds390/gen.c (genAnd, genOr),
6299         * src/mcs51/peeph.def,
6300         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6301
6302 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6303
6304         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6305         * src/SDCCdflow.c
6306         * src/SDCCcse.c
6307         * src/SDCCcse.h
6308         * src/SDCCBBlock.h
6309         * src/SDCCBBlock.c
6310
6311 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6312
6313         fixed bug #845089
6314         * src/SDCCbitv.h,
6315         * src/SDCCbitv.c: added function to free a bitvector
6316         * src/SDCClrange.h,
6317         * src/SDCClrange.c: added function to recompute the liveranges
6318         * src/avr/ralloc.c,
6319         * src/ds390/ralloc.c,
6320         * src/hc08/ralloc.c,
6321         * src/mcs51/ralloc.c,
6322         * src/pic/ralloc.c,
6323         * src/pic16/ralloc.c,
6324         * src/xa51/ralloc.c,
6325         * src/z80/ralloc.c: recompute the liveranges after register packing
6326
6327 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6328
6329         * src/SDCCloop.c (newInduction): fixed bug #845630
6330
6331 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6334         inadvertantly left behind from my 2003-11-12 change
6335
6336 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6337
6338         Updated headers I neglected to commit yesterday.
6339         * src/SDCClrange.h,
6340         * src/SDCCicode.h
6341
6342 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6343
6344         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6345         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6346         * src/SDCCopt.c (eBBlockFromiCode),
6347         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6348         the creation of the key hash table from the sequencing so it can be used
6349         earlier (for some GCSE bug fixes still pending)
6350
6351 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6352
6353         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6354         * support/regression/tests/addsub.c: testing genPlus shortcut
6355
6356 2003-11-15  Borut Razem <borut.razem AT siol.net>
6357
6358         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6359
6360 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6361
6362         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6363         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6364         ordering is immaterial.
6365         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6366
6367 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6368
6369         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6370         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6371         (SIGSEV) of bug #840381
6372         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6373         unlink new file before rename if new and old filenames are the same)
6374
6375 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6376
6377         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6378         uninitialized variables) for the mcs51. Set environment variable
6379         SDCC_GENRAMCLEAR to test.
6380         xdata initialization slightly shorter
6381
6382 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6383
6384         * src/SDCCsymt.h,
6385         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6386         #838241 & 780691 (basicly the same bug)
6387         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6388         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6389
6390 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6391
6392         * src/SDCCmain.c (linkEdit): "fix" #834252
6393
6394 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6395
6396         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6397         * src/SDCCast.h,
6398         * src/SDCC.y: fixed bug #819403
6399
6400 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6403         the reentrant attribute.
6404         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6405         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6406         simulation
6407         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6408         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6409         erroneously reduced to a literal.
6410         * src/hc08/ralloc.c (packRegisters, rematStr),
6411         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6412         some cases
6413
6414 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6415
6416         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6417         * doc/sdccman.lyx: changed from 'article' to 'book'
6418         * doc/Makefile: readded test_suite_spec and cdbfileformat
6419
6420 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6421
6422         * device/include/stdlib.h: include malloc.h to comply with ANSI
6423         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6424
6425 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6426
6427         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6428         * doc/clean.mk: also remove *.out files
6429         * doc/sdccman.lyx: some additions, larger top/bottom margins
6430
6431 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6432
6433         * src/SDCC.y: fixed bug #837365
6434         * support/regression/tests/bitopcse.c
6435         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6436         a symbol (might be valop instead)
6437         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6438         * device/lib/clean.mk: added hc08 to the cleaning list
6439
6440 2003-11-04  Borut Razem <borut.razem AT siol.net>
6441
6442         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6443           made 2003-11-04
6444         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6445           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6446           malloc is declared in standard stdlib.h
6447
6448 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         * device/lib/hc08/Makefile: need to clean .rel not .o files
6451         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6452
6453 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         * src/port.h,
6456         * src/hc08/main.c,
6457         * src/mcs51/main.c,
6458         * src/ds390/main.c,
6459         * src/z80/main.c,
6460         * src/avr/main.c,
6461         * src/pic/main.c,
6462         * src/pic16/main.c,
6463         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6464         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6465         tests (which uses the port's oclsExpense function)
6466         * src/SDCC.y,
6467         * src/SDCCast.c,
6468         * src/SDCCicode.c,
6469         * src/hc08/gen.c,
6470         * src/ds390/gen.c,
6471         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6472
6473 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6474
6475         * src/SDCCcse.c (ifxOptimize),
6476         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6477         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6478         deleting the IFX iCode.
6479         * src/hc08/ralloc.c: reduced unneeded slocs
6480         * src/hc08/gen.c: fixed bug in asmopToBoolean
6481
6482 2003-11-04  Borut Razem <borut.razem AT siol.net>
6483
6484         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6485           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6486           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6487           transferred to configure
6488
6489 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6490
6491         Use headers defined in the C[++] standards:
6492         * sim/ucsim/gui.src/serio.src/fileio.cc
6493         * sim/ucsim/gui.src/serio.src/frontend.cc
6494         * sim/ucsim/gui.src/serio.src/main.cc
6495         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6496         * support/Util/NewAlloc.c
6497         * as/hc08/lklibr.c
6498         * as/mcs51/lklibr.c
6499         * as/z80/aslist.c
6500         * as/z80/assym.c
6501
6502 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6503
6504         * Added MSVC projects for hc08 assembler and linker:
6505         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6506         /as/hc08/link_hc08.dsp
6507
6508 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6509
6510         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6511
6512 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6513
6514         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6515
6516 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6517
6518         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6519
6520 2003-10-31  Borut Razem <borut.razem AT siol.net>
6521
6522         * support/cpp2/cpplib.h,
6523           support/cpp2/cpplib.c,
6524           support/cpp2/cpplex.c,
6525           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6526           to switch _asm block preprocessing on / off. Default is
6527           #pragma preproc_asm +
6528
6529 2003-10-31  Borut Razem <borut.razem AT siol.net>
6530
6531         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6532           when outputting comment blocks (when executed with -C option) and
6533           _asm (SDCPP specific) blocks
6534
6535 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6538
6539 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6540
6541         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6542
6543 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6544
6545         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6546         * src/SDCCast.c (decorateType): fixed bug #832664
6547
6548 2003-10-31  Borut Razem <borut.razem AT siol.net>
6549
6550         * support\cpp2\cpplex.c: fixed for SDCPP:
6551           comments(when executed with -C option) and _asm blocks
6552           were included even if they where in skipped #if block.
6553           Applied solution from GCC cpp 3.3.2
6554
6555 2003-10-31  Borut Razem <borut.razem AT siol.net>
6556
6557         * src/SDCC.lex: sdcc now understands both formats:
6558           '# <line_number> <file_name>' and
6559           '#line <line_number> <file_name>'
6560         * support/cpp2/cppmain.c: sdcpp now generates the standard
6561           '# <line_number> <file_name>' instead of former
6562           '#line <line_number> <file_name>'
6563
6564 2003-10-30  Borut Razem <borut.razem AT siol.net>
6565
6566         * support/cpp2/cpphash.h,
6567         * support/cpp2/cpplib.h
6568         * support/cpp2/cpplex.c,
6569         * support/cpp2/cppmain.c,
6570         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6571
6572 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         Fixed a number of problems revealed by bug #827883.
6575         * src/SDCCloop.c (loopInvariants): Spill location of the
6576         result operand should be recomputed if extracted from
6577         a loop. Also, don't extract assignments of an iTemp
6578         from a literal.
6579         * src/SDCCast.c (isConformingBody): loop reversal should
6580         not occur if the control variable is involved with a
6581         relational operator.
6582
6583 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6584
6585         * .version: bumped to 2.3.6 to reflect the big improvements
6586         made by Erik and Klaus. Thanks!
6587
6588 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6589
6590         Replaced the livrange code.
6591         * src/SDCClrange.c: added new LR code
6592         * src/SDCCloop.c,
6593         * src/SDCCBBlock.h: removed remainig parts from old LR code
6594         * src/ds390/ralloc.c,
6595         * src/ds390/gen.c: minor fixes to make it work with new code
6596
6597 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6598
6599         * as/hc08/asm.h,
6600         * as/hc08/lkrloc.c,
6601         * src/hc08/gen.c,
6602         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6603         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6604         (tweaked fix for bug #818696)
6605
6606 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6607
6608         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6609
6610 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6611
6612         * src/SDCCmain.c,
6613         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6614         * src/mcs51/gen.c (gencjneshort),
6615         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6616         more efficient (per Scott Bronson's suggestion)
6617
6618 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         Extended the semantics of the critical keyword to include
6621         individual statements. See RFE #827755 and #799831
6622         * src/SDCC.y
6623         * src/SDCCicode.c
6624         * src/SDCCopt.c
6625         * src/SDCCast.c
6626         * support/Util/SDCCerr.c
6627         * support/Util/SDCCerr.h
6628         * src/mcs51/gen.c
6629         * src/ds390/gen.c
6630         * src/hc08/gen.c
6631
6632 2003-10-19  Borut Razem <borut.razem AT siol.net>
6633
6634         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6635
6636 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6637
6638         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6639         Fixed bug #818696
6640         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6641         and predecrement operand is displayed
6642
6643 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * src/SDCCval.c (valMinus): fixed bug #826041
6646
6647 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6648
6649         Some hc08 related updates that I missed earlier
6650         * sim/ucsim/stypes.h
6651         * support/regression/ports/hc08/spec.mk
6652
6653 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6654
6655         New target "hc08" for the Motorola 68hc08 family of micros
6656
6657         * configure
6658         * configure.in
6659         * Makefile
6660         * src/hc08/*
6661         * src/SDCCmain.c
6662         * src/port.h
6663         * sim/ucsim/hc08.src/*
6664         * sim/ucsim/configure.in
6665         * src/ucsim/configure
6666         * sim/ucsim/packages_in.mk
6667         * as/hc08/*
6668         * as/Makefile
6669         * device/include/mc68hc908qy.h
6670         * device/lib/hc08/*
6671         * device/lib/Makefile.in
6672         * support/regression/ports/hc08/*
6673         * support/regression/Makefile
6674
6675 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6676
6677         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6678         regression test
6679         * src/ds390/gen.c (genCast): fixed bug #821957
6680
6681 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6682
6683         * device/lib/logf.c: "fixed" overlay bug
6684         * support/regression/ports/host/spec.mk: added m library
6685         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6686         * support/regression/tests/float_trans: added (for Eric)
6687
6688 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6689
6690         * src/mcs51/gen.c (genCpl): fixed bug
6691         http://sf.net/mailarchive/message.php?msg_id=6263915
6692
6693 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6694
6695         * src/SDCCast.c (decorateType): added extended constant folding
6696         * src/SDCCsymt.c (computeType): cleanup
6697         * src/SDCCval.c (valShift): minor optimization
6698         * support/regression/tests/ast_constant_folding.c: added
6699
6700 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6701
6702         * src/SDCCmain.c: removed some unintended changes
6703
6704 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6707         * src/z80/gen.c: fixed part of bug #817589
6708         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6709
6710 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6711
6712         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6713         * src/SDCCcflow.c
6714         * src/SDCCcse.c
6715         * src/SDCCdflow.c
6716         * src/SDCClabel.c
6717         * src/SDCClrange.c
6718         * src/SDCCmem.c
6719         * src/SDCCopt.c
6720         * src/SDCCpeeph.c
6721         * src/SDCCset.c
6722         * src/avr/ralloc.c
6723         * src/ds390/ralloc.c
6724         * src/izt/ralloc.c
6725         * src/mcs51/ralloc.c
6726         * src/pic/ralloc.c
6727         * src/pic16/ralloc.c
6728         * src/xa51/ralloc.c
6729         * src/z80/ralloc.c
6730         * src/z80/gen.c: removed unused label "release:"
6731
6732 2003-10-06  Borut Razem <borut.razem AT siol.net>
6733
6734         * src/SDCC.lex: removed definition of unused variables
6735           save_optimize and save_options
6736
6737 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6738
6739         * clean.mk: removed '=' in "-maxdepth=1"
6740         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6741         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6742
6743 2003-10-06  Borut Razem <borut.razem AT siol.net>
6744
6745         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6746           my_unput() replaced by unput()
6747
6748 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6749
6750         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6751         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6752         type-punned pointer will break strict-aliasing rules"
6753         Old LR behaviour is again default; Klaus' LR can be choosen by
6754         defining the environment variable LRKLAUS
6755         * src/SDCCBBlock.h
6756         * src/SDCCloop.c
6757         * src/SDCClrange.c
6758         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6759         * clean.mk: fixed removal of files in bin/CVS/
6760         * device/lib/clean.mk: fixed removal of directories small and large
6761         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6762         * src/SDCCicode.c,
6763         * src/SDCCval.c: removed superflous test for pedantic
6764
6765 2003-10-05  Borut Razem <borut.razem AT siol.net>
6766
6767         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6768           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6769           message "unmatched #pragma SAVE and #pragma RESTORE"
6770
6771 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6772
6773         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6774           assembly, critical functions, atomic, nojtbound)
6775
6776 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6777
6778         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6779         * src/SDCCBBlock.h
6780         * src/SDCCloop.c
6781         * src/SDCCloop.h
6782         * src/SDCClrange.c
6783
6784 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         * src/z80/gen.h,
6787         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6788         * src/mcs51/gen.h
6789         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6790         * src/ds390/gen.h
6791         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6792         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6793         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6794
6795 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6796
6797         * src/z80/gen.c (genRet): fixed bug #524753
6798         * src/z80/gen.c (genCast): fixed internal error on cast from
6799         pointer to long
6800         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6801         fix for bug #477835 to the z80
6802         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6803         for tracking iCodes in the peephole optimizer for z80
6804
6805 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6806
6807         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6808         the other part of bug #814548
6809         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6810
6811 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6812
6813         * src/SDCCcse.c: fixed part of bug #814548
6814
6815 2003-09-28  Borut Razem <borut.razem AT siol.net>
6816
6817         * src/asm.c: rewrite of printILine() to use temporary file instead
6818           a pipe
6819         * src/xa51/main.c: commented out declaration of int rewinds
6820
6821 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6822
6823         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6824
6825 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6826
6827         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6828         * src/asm.c (printILine): Fixed bug #811015
6829
6830 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6831
6832         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6833         freeing.
6834
6835 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6836
6837         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6838         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6839         to correctly handle general case of AOP_PAIRPTR
6840         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6841
6842 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6843
6844         * src/mcs51/ralloc.c (fillGaps),
6845         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6846         register positioning bug)
6847
6848 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6849
6850         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6851
6852 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6853
6854         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6855         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6856         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6857         (ralloc doesn't intentionally do this now, but perhaps later)
6858         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6859         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6860         register positioning bugs (Fixed bug #762602 and #795325)
6861         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6862         (Fixed bug #808779)
6863         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6864         lines that --i-code-in-asm generates
6865
6866 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6867
6868         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6869         trying to fclose a FILE* that was already closed.
6870
6871 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6872
6873         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6874         of const struct should be treated as if const themselves)
6875
6876 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6877
6878         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6879
6880 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6881
6882         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6883         Unix (/n) and DOS (/r/n) line terminations.
6884
6885 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6886
6887         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6888         bug #613775
6889
6890 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6891
6892         * src/mcs51/gen.c (genFunction, genEndFunction),
6893         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6894         and restore of EA so that stack offsets to parameters are
6895         correct when using both critical and reentrant/stack-auto.
6896         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6897         size (can be triggered in error if sloc is shared between
6898         different sized objects)
6899         * device/include/float.h: fixed macros to explicitly use
6900         unsigned long where needed
6901
6902 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6903
6904         Feature req. 799831: added code to allow nesting of critical functions
6905         * src/mcs51/gen.c (genFunction, genEndFunction)
6906         * src/ds390/gen.c (genFunction, genEndFunction)
6907
6908 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6909
6910         * src/SDCCsymt.c (sclsFromPtr),
6911         * src/SDCCsymt.h,
6912         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6913         support for standard C idiom of memory mapped variables; for
6914         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6915         to xdata int at 0x1234 tempvar = 1.
6916         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6917         provided by Akiya ISHIDA
6918
6919 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6920
6921         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6922         * src/SDCCval.c (constVal): added reduction from int to char
6923         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6924         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6925         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6926         to ignore the sign
6927         * support/regression/tests/shifts.c: fixed
6928
6929 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6930
6931         * src/z80/gen.c (genXor): Fixed bug #805445
6932
6933 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6934
6935         Fixed bug #621531 (const & volatile confusion in the type chain).
6936         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6937         refer to the const or volatile state of the pointer itself.
6938
6939         * src/SDCCast.c
6940         * src/SDCCglue.c
6941         * src/SDCCicode.c
6942         * src/SDCCsymt.c
6943         * src/SDCCval.c
6944         * src/SDCC.y
6945         * src/SDCCsymt.h
6946         * src/pic/gen.c
6947         * src/pic/ralloc.c
6948         * src/pic16/gen.c
6949         * src/pic16/ralloc.c
6950         * support/regression/tests/const.c
6951
6952 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6953
6954         When checking for duplicated modules, use absolute paths
6955         instead of relative paths.  Files changed:
6956
6957         * as/mcs51/lklib.c
6958         * link/z80/lklib.c
6959
6960 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6961
6962         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6963
6964 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6965
6966         * device/include/string.h: added size_t typedef, changed
6967         prototypes to use size_t, eliminated separate reentrant and
6968         non-reentrant declarations, added _memmove declaration
6969         * device/lib/_memcpy.c: changed to use size_t instead of int,
6970         changed /4 to >>2 to avoid division library call
6971         * device/lib/_memcmp.c,
6972         * device/lib/_memset.c,
6973         * device/lib/_strncat.c,
6974         * device/lib/_strncpy.c,
6975         * device/lib/_strncmp.c: changed to use size_t instead of int
6976         * device/lib/_memmove.c: new file (fixed bug #772294)
6977         * device/lib/Makefile.in: added _memmove.c
6978         * device/lib/z80/asm_strings.s: fixed bug #772290
6979         * support/regression/tests/bitfields.c: attempt to fix host assertion
6980         failure on amd64-unknown-linux2.2
6981
6982 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6983
6984         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6985         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6986         * as/z80/asmain.c (main): fixed bug #801766
6987
6988 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6989
6990         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6991         compilers
6992
6993 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6994
6995         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6996         reported in bug #800609
6997
6998 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6999
7000         * Top header beautifications in src/pic16 directory:
7001           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
7002           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
7003           pcoderegs.h, ralloc.c, ralloc.h
7004         * main.c: added top header and GPL license notice
7005         * pcode.c: fixed the if-conditional warning
7006
7007 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
7008
7009         * device/lib/_mullong.c: replaced int by short for gcc
7010
7011 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7012
7013         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
7014         and JUMPTABLE iCodes properly now (worked by accident before)
7015         * src/mcs51/gen.c (leftRightUseAcc),
7016         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
7017         iCode properly now. Use getSize instead of nRegs since a & b
7018         aren't part of the nRegs tally.
7019
7020 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
7021
7022         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
7023         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
7024           before instructions that use the _STATUS register
7025
7026 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
7027
7028         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
7029         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
7030         fetching of the pointer
7031         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
7032         copied from genNearPointerSet()
7033         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
7034         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
7035         If they pop r0/r1 they must be called in the opposite order than aopOp().
7036         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
7037         (resp. --stack-auto), prepared for --xstack
7038
7039 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7040
7041         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
7042
7043 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
7044
7045         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
7046         these ports have their own __sdcc_external_start()
7047
7048 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7051         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
7052         type for bits was changed. It resulted in bit variables becoming
7053         global, which is not permitted in PIC 14 assembly output.
7054
7055 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7056
7057         * doc/sdccman.lyx: various additions and updates. Rearranged sections
7058
7059 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7060
7061         Z80 and MCS51 linkers complaint if a public symbol is defined
7062         in more than one library module:
7063
7064         * as/mcs51/lklib.c
7065         * link/z80/lklib.c
7066         * as/mcs51/Makefile.in
7067
7068 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7069
7070         A few small changes that speed up the peephole optimizer.
7071
7072         * src/SDCCpeeph.c
7073
7074 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7075
7076         Try to make the peephole optimizer smarter by maintaining
7077         an association between the assembly source code and the
7078         iCodes that originated them. Put this information to use
7079         with a new peephole rule condition "notVolatile" so that
7080         the rules can be aggressive yet still safe.
7081
7082         * src/SDCCpeeph.c
7083         * src/SDCCpeeph.h
7084         * src/mcs51/gen.c
7085         * src/mcs51/peeph.def
7086
7087 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7088
7089         Fixed bug #741761
7090
7091         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
7092         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
7093         if the left or right operand symbols have the accuse flag set.
7094
7095 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7096
7097         Changed the type of the result of the ! (NOT) operator to char;
7098         previously it returned the same type as the source. This allows
7099         us to eliminate all the genFloatNot functions (all of its target
7100         implementations were very buggy) since !float can use the same
7101         code as !long now.
7102
7103         * src/SDCCicode.c (ast2iCode): ! returns char
7104         * src/mcs51/gen.c (genNot, genNotFloat),
7105         * src/ds390/gen.c (genNot, genNotFloat),
7106         * src/z80/gen.c (genNot, genNotFloat),
7107         * src/pic/gen.c (genNot, genNotFloat),
7108         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
7109
7110 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
7111
7112         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
7113         1. Interrupt would not compile properly. Ensure PCLATH register is saved
7114            during interrupts. Ensure WSAVE is located at a shared bank address.
7115         2. Fixed page selection in some places
7116         3. Fixed BTFSS/C to where necessary use registers directly and not simply
7117            the registers name strings.
7118         4. Fixed "signed / unsigned compare" compiler warnings.
7119         5. The PIC port manages its own allocation of the general purpose
7120            registers, but makes no attempt to reuse them. As a result when
7121            compiling it soon runs out of general purpose registers. Some
7122            additional code was added to the files pcode.c and device.c to walk
7123            through the function call tree and rename the registers so that they
7124            get reused.
7125
7126         * src/pic/device.c
7127         * src/pic/gen.c
7128         * src/pic/glue.c
7129         * src/pic/pcode.c
7130         * src/pic/pcode.h
7131         * src/pic/ralloc.c
7132         * src/pic/ralloc.h
7133         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
7134         genPlus() & genMinus() when the result is the same as left or right
7135
7136 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7137
7138         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
7139
7140 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         Made bitfield a distinct type from bit so that bitfields
7143         convert as per ANSI C and bits retain their traditional
7144         boolean style behaviour. Implemented bitfield support in
7145         the z80 port.
7146
7147         * src/SDCCsymt.h,
7148         * src/SDCCsymt.c,
7149         * src/SDCCast.c,
7150         * src/cdbFile.c,
7151         * src/mcs51/gen.c,
7152         * src/ds390/gen.c: bit v bitfield split
7153         * src/z80/gen.c: New support for bitfields
7154         * support/regression/tests/bitfields.c: reenabled z80,
7155         added more tests
7156
7157 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7158
7159         Rules 246.x, 247.x relate to bitfields, the others speed up
7160         access to xdata mapped I/O devices.
7161
7162         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
7163
7164 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7165
7166         Cleaned up genPackBits and genUnpackBits and added two helper
7167         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
7168         for literal assignments in genPackBits (thanks to Frieder for
7169         reminding me).
7170
7171         * src/mcs51/gen.c
7172         * src/ds390/gen.c
7173
7174 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7175
7176         Fixed bug #748310 (pointer to function type mishandled when the
7177         function name is omitted). Also fixed a SIGSEGV when a function
7178         attribute (reentrant, etc) is used on a non-function or on a
7179         function but misplaced before the parameter list.
7180
7181         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
7182         bug #748310
7183         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
7184         * support/Util/SDCCerr.h,
7185         * support/Util/SDCCerr.c: Added func attr misuse error msg
7186
7187 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7188
7189         Fixed bug #787649 by anonymous
7190         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
7191         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
7192
7193 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7194
7195         Fixed numerous bitfield problems.
7196
7197         * src/SDCC.y: More bitfield related error checking
7198         * src/SDCCsymt.h,
7199         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
7200         * support/Util/SDCCerr.h,
7201         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
7202         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7203         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
7204         * support/regression/tests/bitfields.c: tests added
7205
7206 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7207
7208         Made the constant following the "interrupt" keyword optional. If
7209         omitted, the function will not automatically be given an entry
7210         in the interrupt vector table (similar to #pragma NOIV, but
7211         less syntacticly kludgy). The interrupt number is also now
7212         range checked. Also fixed a bug in the high order bit example
7213         in the manual.
7214
7215         * src/SDCC.y
7216         * src/SDCCmem.c
7217         * src/SDCCglue.c
7218         * src/SDCCsymt.h
7219         * support/Util/SDCCerr.c
7220         * support/Util/SDCCerr.h
7221         * doc/sdccman.lyx
7222
7223 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
7224
7225         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
7226         * src/SDCCicode.c (operandOperation): rewritten some ops
7227         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
7228         * src/SDCCsymt.c (computeType): literals are handled the same way as any
7229         other type
7230         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
7231         be re-activated by defining REDUCE_LITERALS)
7232         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
7233         unsigned, but are signed by default
7234         * src/SDCCval.c (constVal): rearranged
7235         * src/SDCCval.c (valMod): preliminary fix
7236         * src/SDCCval.c (valCastLiteral): use TYPE_* types
7237         * support/regression/literalop.c: added, work in progress
7238
7239 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7240
7241         Generate warnings for useless declarations like "char data;"
7242         that don't do what new users expect.
7243
7244         * src/SDCC.y
7245         * support/Util/SDCCerr.h
7246         * support/Util/SDCCerr.c
7247
7248 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * src/SDCCval.c (valMult): fix overflow detection of negative int
7251
7252 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7253
7254         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
7255
7256         Changes to support big endian targets:
7257
7258         * src/ports.h
7259         * src/SDCCglue.c
7260         * src/avr/main.c
7261         * src/ds390/main.c
7262         * src/izt/i186.c
7263         * src/mcs51/main.c
7264         * src/pic/main.c
7265         * src/pic16/main.c
7266         * src/xa51/main.c
7267         * src/z80/main.c
7268
7269 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
7270
7271         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
7272         * device/lib/time.c: fixed warning "integer overflow in expression"
7273
7274 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
7275
7276         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
7277         * src/SDCCval.c (constVal): changed default to signed; hex and octal
7278         constants are unsigned; added recognition of "u" flag for unsigned
7279         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
7280         * src/SDCCval.c (valDiv, valMod): fixed signdness
7281         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
7282         signedness of modulo, left and right shift
7283         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
7284         * support/Util/SDCCerr.h: added warning W_INT_OVL
7285         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
7286         * src/SDCCast.c (ast_print): improved output of constants
7287
7288 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7289
7290         Fixed some warnings when building with MSVC:
7291
7292         * as\mcs51\asdata.c
7293         * as\z80\asdata.c
7294         * as\mcs51\asm.h
7295         * as\z80\asm.h
7296         * link\z80\aslink.h
7297         * link\z80\lkdata.c
7298         * link\z80\lkeval.c
7299         * link\z80\lkgb.c
7300         * link\z80\lkihx.c
7301         * link\z80\lks19.c
7302         * link\z80\lksym.c
7303         * support\cpp2\cpplib.c
7304         * src\ds390\gen.c
7305         * src\mcs51\gen.c
7306
7307 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7308
7309         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7310
7311 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7312
7313         * support\librarian\clean.mk: Do not remove Makefile.
7314         * support\librarian\Makefile: added.
7315
7316 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7317
7318         Added librarian to MSVC build:
7319         * all.dsp
7320         * sdcc.dsw
7321         * support\librarian\librarian.dsp
7322
7323         'configure' not needed for librarian, removed:
7324         * support\librarian\configure
7325         * support\librarian\configure.in
7326         * support\librarian\config_in.h
7327         * support\librarian\Makefile.in
7328
7329         Hopefully these ones built the librarian and the rest of sdcc properly:
7330         * Makefile
7331         * Makefile.common.in
7332
7333         Messed up 'configure', so revert to previous version:
7334         * configure
7335         * configure.in
7336
7337 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7338
7339         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7340         there, while the mantissa of a double is "only" 53 bits wide.
7341
7342 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7343
7344         Adding sdcclib to the build.  MSVC project coming soon.
7345         Files added/changed:
7346
7347         * support\librarian\clean.mk
7348         * support\librarian\configure
7349         * support\librarian\configure.in
7350         * support\librarian\config_in.h
7351         * support\librarian\Makefile.bcc
7352         * support\librarian\Makefile.in
7353         * support\librarian\sdcclib.c
7354         * Makefile.bcc
7355         * Makefile
7356         * Makefile.common.in
7357         * configure
7358         * configure.in
7359
7360 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7361
7362         Linker now complaints if linked modules have conflicting options, for
7363         example, one compiled using --model-large and another one compiled with
7364         --model-small.  The following files were modified:
7365
7366         * as\mcs51\asdata.c
7367         * as\mcs51\aslink.h
7368         * as\mcs51\asm.h
7369         * as\mcs51\asmain.c
7370         * as\mcs51\asout.c
7371         * as\mcs51\i51pst.c
7372         * as\mcs51\lkdata.c
7373         * as\mcs51\lklibr.c
7374         * as\mcs51\lkmain.c
7375         * as\z80\asdata.c
7376         * as\z80\asm.h
7377         * as\z80\asmain.c
7378         * as\z80\asout.c
7379         * as\z80\z80pst.c
7380         * link\z80\aslink.h
7381         * link\z80\lkdata.c
7382         * link\z80\lklibr.c
7383         * link\z80\lkmain.c
7384         * src\SDCCglue.c
7385
7386 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7387
7388         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7389         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7390
7391 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7392
7393         * src/z80/mappings.i: fix _mul[us][int,long] entries
7394
7395 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7396
7397         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7398
7399 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7400
7401         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7402         * support/regression/tests/bitopcse.c: added
7403         fixed warning:
7404         * src/avr/gen.c:
7405         * src/pic/gen.c:
7406         * src/pic16/gen.c:
7407         * src/z80/gen.c:
7408         * src/xa51/gen.c:
7409
7410 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7411
7412         added support for new library format to z80, gbz80 linkers:
7413         *link/z80/aslink.h
7414         *link/z80/lklex.c
7415         *link/z80/lklib.c
7416         *link/z80/lklist.c
7417
7418 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7419
7420         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7421         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7422
7423 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7424
7425         added DUMMY_READ_VOLATILE:
7426         * src/SDCC.y:
7427         * src/avr/gen.c:
7428         * src/xa51/gen.c:
7429         * src/z80/gen.c:
7430         * src/pic/gen.c:
7431         * src/pic16/gen.c:
7432         * src/mcs51/gen.c:
7433         * src/ds390/gen.c:
7434         * src/SDCCcse.c (algebraicOpts): many improvements
7435         * src/SDCCcse.h: removed algebraicOpts()
7436         * src/SDCCicode.c (picDummyRead): added
7437
7438 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7439
7440         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7441         "Insufficient space in data memory".
7442
7443 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7444
7445         * src/mcs51/gen.c: fixed bug #771358
7446         * src/z80/gen.c: fixed bug #759087
7447
7448 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7449
7450         * src/pic16/glue.c: minor cleanup by Vangelis
7451
7452 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7453
7454         * device/include/regc515c.h: fixed #758477
7455         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7456         * device/lib/_gptrput.c: saved a few bytes
7457         * my tab spacing is 8, yours too?)
7458         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7459         * device/lib/serial.c: process RX bytes earlier than TX bytes
7460         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7461
7462 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7463
7464         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7465
7466 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7467
7468     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7469
7470 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7471
7472         * device/lib/Makefile.in: bad fix, reverted to 1.43
7473
7474 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7475
7476         * device/lib/Makefile.in: added missing z80 object files
7477
7478 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7479
7480         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7481         pic16 progress by Vangelis:
7482         * src/SDCCglobl.h:
7483         * src/SDCCmain.c:
7484         * src/pic/Makefile:
7485         * src/pic:
7486         * pic/Makefile:
7487         * pic16/device.c:
7488         * pic16/device.h:
7489         * pic16/gen.c:
7490         * pic16/gen.h:
7491         * pic16/genarith.c:
7492         * pic16/glue.c:
7493         * pic16/main.c:
7494         * pic16/pcode.c:
7495         * pic16/pcode.h:
7496         * pic16/pcodepeep.c:
7497         * pic16/peeph.def:
7498
7499 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7500
7501     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7502
7503 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7504
7505     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7506     added gbz80 build to MSVC project.
7507     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7508     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7509     from 8051 stuff and setup so it links using a .lnk file.
7510
7511 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7512
7513     * support/librarian/sdcclib.c: sdcc librarian.
7514     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7515     with sdcclib.
7516
7517 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7518
7519     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7520
7521 2003-07-02  Borut Razem <borut.razem AT siol.net>
7522
7523         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7524         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7525         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7526         src/xa51/main.c, src/z80/main.c:
7527         virtualization of glue() function: each port has it's own glue function,
7528         which is accessed by do_glue function pointer in PORT.general structure
7529
7530 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7531
7532         * DS800C400 fun, improved ROM interface and tinibios.
7533
7534 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7535
7536         * More support for DS80C400. Now includes beginning of interface to ROM.
7537
7538 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7539
7540         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7541
7542 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7543
7544         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7545
7546 2003-06-19  Borut Razem <borut.razem AT siol.net>
7547
7548         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7549
7550 2003-06-19  Borut Razem <borut.razem AT siol.net>
7551
7552         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7553         fixed Z80 port - crt0.o: cannot open.
7554
7555 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         * support/Util/MySystem.c (merge_command): revert bad fix
7558
7559 2003-06-18  Borut Razem <borut.razem AT siol.net>
7560
7561         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7562
7563 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7564
7565         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7566         option --use-stdout sends errors to stdout instead of stderr.
7567
7568 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7571
7572 2003-06-15  Borut Razem <borut.razem AT siol.net>
7573
7574         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7575         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7576         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7577         fixed width array of pointers replaced with sets;
7578         multiple include and lib paths ared transferred to preprocessor and linker
7579         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7580         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7581         fixed width array of pointers
7582         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7583         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7584         fixupPath(), getPathDifference()
7585         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7586         fixed width array of pointers
7587
7588 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7589
7590         * src/pic16/ralloc.c: fix warnings
7591         * src/pic16/pcode.c: fix warning
7592
7593 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7594
7595          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7596         know all the details, but essentially this set of changes enable
7597         the pic16 port to generate movff instructions and generate assembler
7598         directives,
7599         * src/SDCCmain.c:
7600         * src/pic16/gen.c:
7601         * src/pic16/glue.c:
7602         * src/pic16/pcode.c:
7603         * src/pic16/device.c:
7604         * src/pic16/main.c:
7605         * src/pic16/pcode.h:
7606         * src/pic16/pcoderegs.c:
7607         * src/pic16/ralloc.c:
7608         * src/pic16/ralloc.h:
7609
7610 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7611
7612         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7613         added option --vc, so sdcc errors and warnings are compatible with
7614         Microsoft Visual Studio.
7615
7616 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7617
7618         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7619           device/lib/libfloat.lib: added atof function.
7620
7621 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7622
7623         * doc/sdccman.lyx: updated to Lyx 1.3
7624         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7625         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7626         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7627
7628 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7631
7632 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7633
7634         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7635           additions to the "related tools/documentation" section
7636
7637 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7638
7639         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7640
7641 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7642
7643         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7644         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7645
7646 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7647
7648         * doc/sdccman.lyx: fix double dash and other minor things
7649         * doc/Makefile: fix double dash
7650
7651 2003-05-28  Karl Bongers(patches from Martin Helmling)
7652         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7653           condition and ignore commands.
7654
7655 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7656
7657         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7658           is in parts still quite out of date, I did changes as far as I felt makes sense
7659           for a non-native english speaker.
7660           Please feel free to add to the manual or to correct my changes.
7661         * doc/Makefile: undid touching the date of intermediate tex files.
7662
7663 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7664
7665         * doc/sdccman.lyx: Manual has an index now
7666
7667 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7668
7669         Finalize muluint/mulsint and mululong/mulslong merging:
7670         * device/lib/_mulint.c
7671         * device/lib/_mullong.c
7672         * device/lib/gbz80/mul.s
7673         * device/lib/gbz80/stubs.s
7674         * device/lib/z80/mul.s
7675         * device/lib/z80/stubs.s
7676         * src/SDCCsymt.c (initCSupport)
7677
7678 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7679
7680         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7681         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7682           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7683           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7684           instead of /Zm500.
7685
7686 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7687
7688         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7689           the regression tests I'm not brave enough to enable 245.b, 245.c
7690         * doc/sdccman.lyx: added latex preamble for hyperref package.
7691           Using pdflatex this will give you a hyperlinked pdf file with
7692           bookmarks. (prepend '%' before /usepackage if this breaks something)
7693
7694 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7695
7696          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7697
7698 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7701
7702 2003-05-21    <johan AT balder>
7703
7704         * src/SDCCglue.c (printIval): fixed bug #739934
7705
7706 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7707
7708         Applied patch from bug 737905 (renamed yylineo to mylineno):
7709         * src/altlex.c
7710         * src/SDCCast.c
7711         * src/SDCglobl.h
7712         * src/SDCC.lex
7713         * src/SDCCsymt.c
7714         * src/SDCCval.c
7715         * src/pic16/pcode.c: Cleaned warnings
7716         * src/pic16/pcodeflow.c: Cleaned warnings
7717         * src/pic16/pcoderegs.c: Cleaned warnings
7718
7719 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7720
7721         * src/pic16/pcode.c: Cleaned warnings
7722         * src/pic16/pcodepeep.c: Cleaned warnings
7723         * src/pic16/ralloc.c: Cleaned warnings
7724
7725 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7726
7727         * doc/sdccman.lyx: fixed bug 739745
7728         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7729
7730 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7733         it can be defined with CFLAGS when running configure
7734         * src/SDCCmain.c: fixed compiling + linking with object files
7735
7736 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7737
7738         * configure.in: configure for pic16 port,
7739             added --disable-pic16-port
7740         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7741         * src/SDCCmain.c: linkOptions is changed to set *,
7742             added if/endif conditional macros to remove options help
7743             messages from optionsTable when a port is not configured, added
7744             support for the PIc16 port in the ports table, when executing
7745             the compiler with no port specified on command line, a default
7746             port is selected with the new macro DEFAULT_PORT which is
7747             defined in port.h, in setDefaultOptions() linkOptions is removed
7748             from initialization assignment, since now it is a set,
7749             parseCmdLine uses setParseWithComma for linkOptions, in
7750             linkEdit() linkOptions are accessed with new function indexSet()
7751             which returns the i'th item of a set variable. See SDCCset.c, in
7752             linkEdit() when calling buildCmdLine(), added linkOptions as
7753             last argument. Now users can pass arguments to gplink via the
7754             -Wl option, main() uses pic16glue() to glue up pic16 programs
7755         * src/SDCCpeeph.c: various changes to support pic16
7756         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7757             return the i'th item of the set
7758         * src/SDCCset.h: added function prototype for indexSet()
7759         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7760         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7761         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7762             added macro DEFAULT_PORT
7763         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7764         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7765             generated
7766         * src/pic16/glue.c: commented out some error producing lines
7767         * src/pic16/main.c: __config directives are commented out to stop
7768             gpasm complaining and test the linkage with gplink, _linkCmd and
7769             _asmCmd changed to be more gplink and gpasm friendly
7770         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7771             produced an error when parsed, peep rule 12 is added to utilize
7772             movff, but it is commented out since the pCode does not support
7773             yet a command with 2 address arguments
7774
7775 2003-05-18    <johan AT balder>
7776
7777         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7778         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7779 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7780
7781         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7782   Added feature to script commands from file.
7783
7784 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7785
7786         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7787         * src/SDCCutil.c: include ctype.h for win32
7788
7789 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7790
7791         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7792
7793 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7794
7795         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7796   Fixed so you can set breakpoints prior to run, run does not stop
7797   on entry now.  Add tbreak.  Other enhancements and fixes for use
7798   with ddd.
7799
7800 2003-05-12  Borut Razem <borut.razem AT siol.net>
7801
7802         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7803
7804 2003-05-11  Borut Razem <borut.razem AT siol.net>
7805
7806         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7807         the path of bin directory, so that PATH is the only env. variable, which has to be set
7808         in case of standard installation.
7809         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7810         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7811         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7812
7813 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7814
7815         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7816         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7817         temp files are in the port dir; clean the gen/test directory when
7818         generating new test.c
7819         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7820         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7821         * support/regression/tests/zeropad.c: added
7822
7823 2003-05-09    <johan AT balder>
7824
7825         * src/SDCCglue.c: fixed bug #597940
7826
7827 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7828
7829         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7830   cache sfr, optimize next,step, fix off by one sourceline,
7831   support ddd list function.
7832         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7833
7834 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7835
7836         * support/regression/HTMLgen.py: added compare_s2f()
7837         * support/regression/Makefile: redo 1.27
7838         * support/regression/generate-cases.py: redo 1.5
7839
7840 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7841
7842         * support/regression/tests/float.c: workaround 33 bit hex constant
7843         * support/regression/tests/simplefloat.c: fix division for host
7844
7845 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7846
7847         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7848         that tame's the PIC's over-aggressive optimizer.
7849
7850 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7851
7852          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7853          support for MSVC.
7854
7855 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7856
7857         Initial support for DS80C400. "Hello world" runs on TINIm400
7858         (with polled I/O).
7859
7860 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7861
7862          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7863          * Some notes on ddd usage added in debugger/README
7864          Martin Helmling adding more features and fixes for ddd GUI debugger.
7865          Code added for nexti, stepi, up, down, and other adjustments.
7866
7867 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7868
7869         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7870         * src/pic/peeph.def Added two rules to optimize carry manipulation
7871         * src/pic/* removed debug printfs
7872
7873 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7874
7875         * debugger/mcs51/cmd.c: added header newalloc.h
7876
7877 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7878
7879         * as/Makefile: new EXEEXT
7880         * as/z80/Makefile: remove trailing slash of BUILDIR
7881         * as/z80/clean.mk: new EXEEXT
7882         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7883         * support/cpp2/Makefile.in: new EXEEXT
7884         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7885
7886 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7887
7888         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7889         EXEEXT was introduced to fix all related problems with targets
7890         "clean", "install" and "uninstall"; a couple of further flaws
7891         especially with "clean" have been fixed too
7892         * as/mcs51/Makefile.in
7893         * as/mcs51/clean.mk
7894         * as/z80/Makefile
7895         * Makefile
7896         * clean.mk
7897         * debugger/mcs51/Makefile.in
7898         * debugger/mcs51/clean.mk
7899         * link/z80/Makefile
7900         * link/z80/Makefile.in
7901         * link/z80/clean.mk
7902         * link/Makefile
7903         * packihx/Makefile.in
7904         * packihx/clean.mk
7905         * sim/ucsim/Makefile
7906         * sim/ucsim/clean.mk
7907         * sim/ucsim/avr.src/Makefile.in
7908         * sim/ucsim/avr.src/clean.mk
7909         * sim/ucsim/s51.src/Makefile.in
7910         * sim/ucsim/s51.src/clean.mk
7911         * sim/ucsim/xa.src/Makefile.in
7912         * sim/ucsim/xa.src/clean.mk
7913         * sim/ucsim/z80.src/Makefile.in
7914         * sim/ucsim/z80.src/clean.mk
7915         * sim/ucsim/main_in.mk
7916         * sim/ucsim/packages_in.mk
7917         * sim/ucsim/gui.src/Makefile.in
7918         * sim/ucsim/gui.src/serio.src/Makefile.in
7919         * sim/ucsim/gui.src/serio.src/clean.mk
7920         * src/Makefile.in
7921         * src/clean.mk
7922         * support/cpp2/Makefile.in
7923         * support/cpp2/clean.mk
7924         * support/makebin/Makefile
7925         * support/makebin/clean.mk
7926         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7927         * doc/sdccman.lyx: --program-suffix no longer needed
7928
7929 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7930
7931          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7932          Martin Helmling added support for ddd GUI debugger.
7933          Code added to display assembly, set variables, and other commands
7934          to interface to ddd.
7935
7936 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7937
7938         * as/Makefile: fix target clean
7939         * as/clean.mk: fix target clean
7940         * as/z80/clean.mk: fix target clean
7941
7942 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7943
7944         * Makefile.common.in: added  AT EXEEXT AT
7945         * configure.in: removed all mingw32 stuff
7946         * configure: rebuilt from configure.in
7947         * doc/sdccman.lyx: updated section "installation"
7948         * support/scripts/sdcc_mingw32: adapted to configure
7949         * support/scripts/sdcc_cygwin_mingw32: added
7950
7951 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7952
7953         * src/pic Added object file support for the PIC port
7954         * src/pic Applied patch from Craig Franklin (this started the object file support)
7955         * src/regression Updated the PIC regression tests for object files
7956
7957 2003-04-20  Borut Razem <borut.razem AT siol.net>
7958
7959         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7960           lklex.c: In function `getfid':
7961           lklex.c:203: warning: array subscript has type `char'
7962         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7963           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7964         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7965           stack handling macros
7966
7967 2003-04-19  Borut Razem <borut.razem AT siol.net>
7968
7969         * "handling space characters in file path" task:
7970         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7971         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7972         * support/Util/MySystem.h: make it self-sufficient
7973         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7974           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7975           handling space characters in file path
7976         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7977           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7978         * support/Util/MySystem.c: handling space characters in executable's path
7979
7980 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7981
7982         * as/z80/Makefile: fix permanent rebuild of z80
7983         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7984         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7985
7986 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7987
7988         * src/SDCCopt.c: add special case optimization to replace modulo by
7989           a power of two with a bitwise AND.
7990
7991 2003-04-18    <johan AT balder>
7992
7993         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7994
7995 2003-04-17    <johan AT balder>
7996
7997         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7998         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7999
8000 2003-04-13  Borut Razem <borut.razem AT siol.net>
8001
8002         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
8003         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
8004           fixed mingw problem in adl_NORMALIZE_PATH
8005
8006 2003-04-12  Borut Razem <borut.razem AT siol.net>
8007
8008         * fixed "#pragma SAVE/RESTORE can not be nested":
8009         * src/SDCC.lex: reworked pragma handling functions
8010         * sdcc/src/SDCCglobl.h: reworked stack handling macros
8011         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
8012
8013 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * src/SDCCutil.c (pathEquivalent): defined but not used
8016         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
8017         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
8018         * configure: rebuilt from configure.in
8019         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8020         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
8021         * device/include/Makefile.in: replace sdcc_datadir
8022         * device/lib/Makefile.in: replace sdcc_datadir
8023         * Makefile.common.in: add LDFLAGS from configure
8024         * packihx/Makefile.in: use LDFLAGS
8025         * src/Makefile.in: use LDFLAGS
8026         * support/cpp2/Makefile.in: add LDFLAGS from configure
8027         * support/makebin/Makefile: use LDFLAGS
8028         * .version: bumped version number to 2.3.5
8029
8030 2003-04-12  Borut Razem <borut.razem AT siol.net>
8031
8032         * completed "different paths" task:
8033         * src/SDCCmacro.c: fixed bug in handling quotes
8034         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
8035         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
8036
8037 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
8038
8039         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
8040
8041 2003-04-11 kevin Vigor <kevin AT vigor.nu>
8042
8043         * ds390/gen.c ds390/peeph.def: fix bug 706781
8044
8045 2003-04-11  Borut Razem <borut.razem AT siol.net>
8046
8047         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
8048
8049 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
8050
8051         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
8052         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
8053          set - this bit used to not be set...).
8054         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
8055           bad code in PIC Port
8056         * src/regression/and2.c added to test bug 609268
8057         * src/regression/Makefile added and2.c to regression test
8058
8059
8060 2003-04-08    <johan AT CP255758-A>
8061
8062         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
8063         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
8064         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
8065
8066 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
8067
8068         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
8069         fix bug #487815
8070         * support/cpp2/Makefile.in: fix bug #487815
8071         * configure: rebuilt from configure.in
8072         * Makefile.common.in: docdir changed, new path suffixes
8073         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8074         * sdcc_vc_in.h: reflect changes from sdccconf.h
8075         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
8076         * src/SDCCutil.h: remove BINDIR hack
8077         * doc/sdccman.lyx: update new path hierarchy
8078
8079 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8080
8081         * src/SDCCpeeph.c: added okToRemoveSLOC test
8082
8083 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8084
8085         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
8086
8087 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
8088
8089         * src/SDCCpeeph.c: added labelIsReturnOnly test
8090         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
8091
8092 2003-04-05    <johan AT balder>
8093
8094         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
8095         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
8096         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
8097         * src/SDCCast.c: fixed a warning
8098         * src/SDCCast.h: fixed a warning
8099         * src/SDCCicode.c (operandFromAst): fixed a warning
8100
8101 2003-04-04    <johan AT balder>
8102
8103         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
8104         * src/SDCCast.c (decorateType): fixed bug #715076
8105         * src/SDCC.y: fixed bug #702907
8106
8107 2003-04-03    <johan AT balder>
8108
8109         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
8110         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
8111         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
8112         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
8113         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
8114
8115 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
8116
8117         * _decdptr.c: fix return values
8118         * _gptrget.c: fix return values
8119         * _gptrgetc.c: fix return values
8120         * _gptrput.c: fix return values
8121         * _mulint.c: fix return values
8122         * as/z80/Makefile: fix 'make -j' problem
8123
8124 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
8125
8126         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
8127         * configure.in: big cleanup, updated to autoconf 2.5x
8128         * configure: rebuilt from configure.in
8129         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
8130         * sdcc_vc_in.h: reflect changes from sdccconf.h
8131         * doc/Makefile: fixed a flaw in "make install"
8132
8133 2003-04-02    <johan AT balder>
8134
8135         * src/ds390/gen.c (genCmp): no comments
8136         * src/mcs51/gen.c (genCmp): no comments
8137         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
8138         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
8139
8140 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
8141
8142         * support/regression/generate-cases.py: place generated file in given sub directory
8143         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
8144         * support/regression/Makefile: improvements for 'make -j';
8145         side effect: it's simpler and faster now
8146
8147 2003-03-31  Borut Razem <borut.razem AT siol.net>
8148
8149         * src/z80/main.c: link-{port} and as-{port} defined without path
8150         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
8151
8152 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
8153
8154         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
8155
8156 2003-03-30  Borut Razem <borut.razem AT siol.net>
8157
8158         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
8159           changed type of list parameter to set
8160         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
8161         * src/port.h: changed type of do_assemble() parameter to set
8162         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
8163           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
8164           definition of "cppoutfilename" macro with NULL value in preProcess()
8165         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
8166         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
8167         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
8168           replaced with set *binPathSet
8169         * shash_add() deallocates the item, if allready exsists, before adding the new one
8170         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
8171
8172 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
8173
8174         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
8175           a nested for loop bug in the PIC port
8176         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
8177           for loops
8178
8179 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
8180
8181         * support/Util/dbuf.h: remove C++ stuff to make it portable
8182
8183 2003-03-28  Borut Razem <borut.razem AT siol.net>
8184
8185         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
8186           literal strings in stringLiteral()
8187         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
8188         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
8189           to the project
8190
8191 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
8192
8193         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
8194
8195 2003-03-26    <johan AT balder>
8196
8197         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
8198         * src/ds390/gen.c (saveRegisters): catched symbol abuse
8199         * src/SDCCast.c (decorateType): fixed " -v < 3"
8200
8201 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
8202
8203         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
8204         Added Lenny Story's debug infrastructure changes:
8205         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
8206         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
8207         * src/cdbFile.c: added
8208         * src/SDCCdebug.c: added
8209         * src/SDCCdebug.h: added
8210         * src/SDCCast.c (createFunction)
8211         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
8212         * src/SDCCmain.c (parseCmdLine, main)
8213         * src/SDCCmem.c (redoStackOffsets)
8214         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
8215         * src/SDCCsymt.h
8216         * src/common.h
8217         * src/avr/gen.c (genAVRCode)
8218         * src/ds390/gen.c (gen390Code)
8219         * src/mcs51/gen.c (gen51Code)
8220         * src/pic/gen.c (genpic14Code)
8221         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
8222         * src/xa51/gen.c (genXA51Code)
8223         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
8224
8225 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8226
8227         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
8228         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
8229
8230 2003-03-22    <johan AT balder>
8231
8232         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
8233
8234 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
8237         * doc/cdbfileformat.lyx: added, written by Lenny Story
8238         * doc/Makefile: added cdbfileformat.lyx
8239         * doc/clean.mk: added cdbfileformat.lyx
8240
8241 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
8242
8243         * src/mcs51/peeph.def: fix bug #705773
8244
8245 2003-03-20    <johan AT balder>
8246
8247         An sfr/sbit can have an "at #" AND an initializer
8248         * src/SDCCsymt.c (checkSClass):
8249         * src/SDCCmem.c (allocGlobal):
8250         * src/SDCCmem.c (allocLocal):
8251         * src/SDCCast.c (createBlock):
8252
8253 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
8254
8255         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
8256
8257 2003-03-16    <johan AT balder>
8258
8259         Undid the hackup of const and volatile, the problem is much bigger
8260         * src/SDCC.y:1.65
8261         * src/SDCCast.c:1.171
8262         * src/SDCCglue.c:1.138
8263         * src/SDCCicode.c:1.146
8264         * src/SDCCsymt.c:1.150
8265         * src/SDCCval.c:1.65
8266
8267 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
8268
8269         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
8270         * src/ds390/gen.c (genAddrOf): fixed bug #704087
8271
8272 2003-03-13    <johan AT balder>
8273
8274         Hackup const and volatile modifiers in type chains a bit:
8275         * src/SDCC.y:1.63
8276         * src/SDCCast.c:1.169
8277         * src/SDCCglue.c:1.136
8278         * src/SDCCicode.c:1.143
8279         * src/SDCCsymt.c1.146
8280         * src/SDCCsymt.h1.59
8281         * src/SDCCval.c:1.63
8282
8283 2003-03-12    <johan AT balder>
8284
8285         * src/SDCCBBlock.h: more LRH debugging junk
8286         * src/SDCCcflow.h: more LRH debugging junk
8287         * src/SDCCloop.c: more LRH debugging junk
8288         * src/SDCC.y (struct_declaration): fixed bug #697590
8289         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8290         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8291         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8292
8293 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8294         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8295         test function names must now match exactly).
8296         * src/SDCCcse.c: added special case in findCheaperOp to allow
8297         extending a short integer. Makes less awful code for bug 700121 test case.
8298
8299 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8300
8301         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8302         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8303
8304 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8305
8306         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8307         actually called (operandsNotEqual() was called for all
8308         operandsNotEqualX tests).
8309
8310 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8311
8312         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8313         with shorter literals. Fixes bug 700121.
8314
8315 2003-03-11    <johan AT balder>
8316
8317         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8318
8319 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8320
8321         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8322         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8323
8324 2003-03-10  Borut Razem <borut.razem AT siol.net>
8325
8326         * src/SDCCmain.c: pipe preprocessor's output
8327         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8328         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8329         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8330         which closes all pipes in pipeSet set
8331         * src/SDCCset.c: free deleted item in function deleteSetItem()
8332         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8333         moved from z80 to src subproject
8334         * .version: increased version number to 2.3.4
8335
8336 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8337
8338         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8339         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8340         * support/regression/ports/xa51/spec.mk: fix typo
8341
8342 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8343
8344         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8345
8346 2003-03-09  Borut Razem <borut.razem AT siol.net>
8347
8348         * src/SDCCmain.c: pipe preprocessor's output
8349         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8350         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8351         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8352         which closes all pipes in pipeSet set
8353         * src/SDCCset.c: free deleted item in function deleteSetItem()
8354         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8355         moved from z80 to src subproject
8356
8357 2003-03-09  Borut Razem <borut.razem AT siol.net>
8358
8359         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8360         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8361         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8362         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8363         * src/SDCCglobl.h: unification of WIN32 native definitions
8364
8365 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8366
8367         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8368
8369 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8370
8371         * src/configure.in:   check for endianess (even while cross-compiling)
8372         * src/configure:      check for endianess (even while cross-compiling)
8373         * src/configure_in.h: check for endianess (even while cross-compiling)
8374         * src/avr/gen.c:        remove old endianess stuff
8375         * src/mcs51/gen.c:      remove old endianess stuff
8376         * src/ds390/gen.c:      remove old endianess stuff
8377         * src/pic/gen.c:        remove old endianess stuff
8378         * src/pic/genarith.c:   remove old endianess stuff
8379         * src/pic/glue.c:       fix endianess check
8380         * src/pic16/gen.c:      remove old endianess stuff
8381         * src/pic16/genarith.c: remove old endianess stuff
8382         * src/pic16/glue.c:     fix endianess check
8383         * src/xa51/gen.c:       remove old endianess stuff
8384         * src/z80/gen.c:        fix endianess check
8385         * src/SDCCglue.c:       fix endianess check
8386         * src/ds390/peeph.def: fix bug 700036
8387
8388 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8389
8390         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8391         * src/configure: find appropriate data-types on host for SDCC's int and long
8392         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8393         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8394         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8395
8396 2003-03-07    <johan AT balder>
8397
8398         Just a big NOOP:
8399                 some minor cleanups before the big shot
8400                 OP_DEFS and OP_USES now use Kevin's protection
8401                 new option --nolabelopt
8402
8403         * src/SDCCBBlock.c:
8404         * src/SDCCast.c,:
8405         * src/SDCCcflow.c:
8406         * src/SDCCcse.c:
8407         * src/SDCCicode.c:
8408         * src/SDCCicode.h:
8409         * src/SDCClabel.c:
8410         * src/SDCCloop.c:
8411         * src/SDCCmain.c:
8412         * src/ds390/ralloc.c:
8413         * src/mcs51/ralloc.c:
8414         * src/pic/ralloc.c:
8415         * src/xa51/ralloc.c:
8416         * src/z80/ralloc.c:
8417
8418 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8419
8420         * src/pic/pcode.c (get_op): fix 64 bit warnings
8421         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8422         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8423         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8424         * support/regression/tests/malloc.c: fix 64 bit warnings
8425
8426 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8427
8428         * src/mcs51/gen.c (genMinus): fixed bug 696436
8429
8430 2003-03-02  Borut Razem <borut.razem AT siol.net>
8431
8432         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8433
8434 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * configure.in: test for mkstemp
8437         * sdccconf_in.h: add HAVE_MKSTEMP
8438
8439 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8440
8441         * device/include/ctype.h: removed warning while using --stack-auto
8442         * device/include/malloc.h: removed warning while using --stack-auto
8443         * device/include/string.h: removed warning while using --stack-auto
8444
8445 2003-02-23  Borut Razem <borut.razem AT siol.net>
8446
8447         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8448         because NDEBUG is defined (see man assert)
8449         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8450
8451 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8452
8453         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8454         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8455
8456 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8457
8458         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8459         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8460
8461 2003-02-18    <johan AT balder>
8462
8463         * as/mcs51/asmain.c (asmbl): module can start with a digit
8464         * as/z80/asmain.c (asmbl): module can start with a digit
8465
8466 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8467
8468         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8469         * src/asm.c: fix pipe() for Mingw32
8470
8471 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8472
8473         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8474         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8475         make -V work again; --c1mode reads now from stdin
8476         * doc/sdccman.lyx: added --c1mode
8477         * support/Util/SDCCerr.c: new messages for c1 mode
8478         * support/Util/SDCCerr.h: new messages for c1 mode
8479         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8480
8481 2003-02-15    <johan AT balder>
8482
8483         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8484
8485 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8486
8487         * doc/sdccman.lyx: Environment variables, -o and other minor things
8488
8489 2003-02-14    <johan AT balder>
8490
8491         * src/xa51/main.c: before anyone really tries to use it :)
8492
8493         * Install doc's in share/sdcc/doc
8494         * removed some obsolete files
8495         * Do a proper make distclean and uninstall
8496         M Makefile.common.in
8497         R sdccbuild.sh
8498         M as/Makefile
8499         M device/include/Makefile.in
8500         M device/lib/Makefile.in
8501         M doc/sdccman.lyx
8502         M link/Makefile
8503         M sim/ucsim/doc/Makefile.in
8504         M src/clean.mk
8505         R src/avr/peeph.rul
8506         R src/xa51/peeph.rul
8507         M support/cpp2/Makefile.in
8508         M support/makebin/Makefile
8509
8510
8511 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8512
8513         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8514
8515 2003-02-10  Borut Razem <borut.razem AT siol.net>
8516
8517         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8518         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8519         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8520         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8521         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8522         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8523         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8524         src/z80/Makefile.bcc: Borland Makefile cleanup
8525         * as/z80/Makefile.bcc: Added Borland Makefile
8526         * support/cpp2/borland.h: Removed
8527
8528 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8529
8530         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8531         * src/SDCC.lex: new pragma NOIV
8532         * src/SDCCglobl.h: new pragma NOIV
8533         * src/SDCCmem.c: new pragma NOIV
8534
8535 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8536
8537         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8538
8539 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/SDCCmain.c: signal handling is switched off by --debug
8542         * doc/Makefile: small fix for install; use clean.mk again
8543         * doc/clean.mk: clean *.pdf and *.html too
8544
8545 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8546
8547         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8548         * device/lib/printfl.c: fix a ds390 bug by making it portable
8549         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8550         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8551         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8552         * debugger/mcs51/cmd.c: converted multi-line string literals
8553         * sim/ucsim/globals.cc: converted multi-line string literals
8554         * src/SDCCmain.c: introduced signal handler to remove temp files
8555         * doc/Makefile: small tweaks, implement clean
8556         * doc: removed generated files
8557
8558 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8559
8560         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8561         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8562         Address Record is not correctly generated for DS390."
8563
8564 2003-02-02  Borut Razem <borut.razem AT siol.net>
8565
8566         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8567         * as/mcs51/asm.h: fixed compilation with Borland C
8568         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8569         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8570         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8571         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8572         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8573         src/z80/Makefile.bcc: delete $(LIB) only if exist
8574         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8575
8576 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * device/include/malloc.h: introduced NULL
8579         * device/include/string.h: introduced NULL
8580         * device/include/stdlib.h: introduced NULL
8581         * device/lib/_memcpy.c: removed NULL
8582         * device/lib/_strcat.c: removed NULL
8583         * device/lib/_strchr.c: removed NULL
8584         * device/lib/_strcmp.c: removed NULL
8585         * device/lib/_strcpy.c: removed NULL
8586         * device/lib/_strcspn.c: removed NULL
8587         * device/lib/_strlen.c: removed NULL
8588         * device/lib/_strncat.c: removed NULL
8589         * device/lib/_strncmp.c: removed NULL
8590         * device/lib/_strncpy.c: removed NULL
8591         * device/lib/_strpbrk.c: removed NULL
8592         * device/lib/_strrchr.c: removed NULL
8593         * device/lib/_strspn.c: removed NULL
8594         * device/lib/_strstr.c: removed NULL
8595         * device/lib/_strtok.c: removed NULL
8596         * device/lib/malloc.c: removed NULL, include own header
8597
8598 2003-02-02    <johan AT balder>
8599
8600         * 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
8601         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8602         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8603         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8604         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8605         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8606
8607 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8608
8609         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8610         area 'DATA'"
8611
8612 2003-02-01    <johan AT balder>
8613
8614         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8615
8616 2003-01-31    <johan AT CP255758-A>
8617
8618         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8619
8620 2003-01-30    <johan AT balder>
8621
8622         * src/SDCCBBlock.c: automatic bug detection
8623         * src/SDCCicode.c: automatic bug detection
8624
8625 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8626
8627         * src/SDCCglobl.h:   now --xram-size 0 works
8628         * src/SDCCmain.c:    now --xram-size 0 works
8629
8630 2003-01-29    <johan AT balder>
8631
8632         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8633
8634 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8635
8636         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8637         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8638         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8639         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8640         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8641         * src/SDCCmain.c:    Added options --xram-size and --code-size
8642
8643 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8644
8645         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8646         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8647
8648 2003-01-27    <johan AT balder>
8649
8650         * src/SDCC.y: fixed bug #613764
8651
8652 2003-01-26    <johan AT balder>
8653
8654         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8655         * src/SDCCsymt.h: fixed bug #673374
8656         * src/SDCCglue.c: fixed bug #661910
8657         * src/SDCCast.c: fixed bug #458099 and 673374
8658
8659 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8660
8661         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8662         * as/mcs51/strcmpi.h: added
8663         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8664         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8665         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8666         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8667         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8668         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8669         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8670         * as/mcs51/Makefile.aslink: new module strcmpi
8671         * as/mcs51/Makefile.asx8051: new module strcmpi
8672         * as/mcs51/Makefil.bcc: new module strcmpi
8673         * as/mcs51/Makefile.in: new module strcmpi
8674         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8675
8676 2003-01-26    <johan AT balder>
8677
8678         * src/SDCCglue.c: reverted back to 1.124
8679         * src/SDCCast.c: reverted back to 1.156
8680         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8681
8682 2003-01-25    <johan AT balder>
8683
8684         * src/SDCCglue.c: A better fix for bug #661910
8685         * src/SDCCast.c: A better fix for bug #661910
8686         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8687
8688 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         * src/Makefile.in: remove spawn.o
8691         * src/SDCCmain.c: remove spawn.h
8692         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8693         * src/spawn.c: removed
8694         * src/spawn.h: removed
8695         * support/regression/ports/ds390/spec.mk: link with -r
8696
8697 2003-01-24    <johan AT CP255758-A>
8698
8699         * src/ds390/gen.c (aopOp): fixed bug #667458
8700         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8701         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8702         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8703
8704 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8705
8706         * src/mcs51/peeph.def: better assembler identation by Frieder
8707         * src/mcs51/gen.c: better assembler identation by Frieder
8708
8709 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8710
8711         * as/z80/string.h: removed for gcc 3.2
8712         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8713         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8714
8715 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8718         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8719         * support/regression/Makefile: separate temp files for ports
8720         * support/regression/generate-cases.py: separate temp files for ports
8721         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8722         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8723
8724 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8725
8726         * moved tinitalk to device/examples/ds390
8727
8728 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8729
8730         * as/mcs51/lkmem.c: rflag is for DS390
8731         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8732         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8733                          (linkEdit): move mem- and map-files the same way as ihx-files
8734         * src/z80/main.c (_setDefaultOptions): removed --generic
8735         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8736         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8737         * src/pic/glue.c (picglue): --c1mode works again
8738         * src/pic16/glue.c (pic16glue): --c1mode works again
8739         * src/asm.c (printCLine): fix #660034
8740
8741 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8744         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8745         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8746         * as/mcs51/lkmem (summary): better fix for sp problem
8747         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8748         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8749         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8750                                               remove --stack-after-data
8751
8752 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8753
8754         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8755         * src/SDCCutil.c (join): ugly bug: missing '\0'
8756         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8757
8758 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8759
8760         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8761         * src/port.h: typo
8762         * src/pic/main.c (_asmCmd): gpasm supports -o
8763         * src/z80/main.c: more general macros
8764         * device/lib/Makefile.in: remove intermediate files
8765
8766 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8767
8768         * .version: Bumped version number to 2.3.3
8769         * src/SDCCBBlock.c: new option -o
8770         * src/SDCCglobl.h: new option -o
8771         * src/SDCCglue.c: new option -o
8772         * src/SDCCmain.c: new option -o
8773         * src/asm.c: new option -o
8774         * src/ds390/main.c: new option -o
8775         * src/pic/glue.c: new option -o
8776         * src/pic/pcode.c: new option -o
8777         * src/pic/ralloc.c: new option -o
8778         * src/pic16/glue.c: new option -o
8779         * src/pic16/pcode.c: new option -o
8780         * src/pic16/ralloc.c: new option -o
8781         * src/z80/main.c: new option -o
8782         * device/lib/Makefile.in: use -o
8783         * support/regression/ports/ds390/spec.mk: use -o
8784         * support/regression/ports/gbz80/spec.mk: use -o
8785         * support/regression/ports/mcs51/spec.mk: use -o
8786         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8787         * support/regression/ports/z80/spec.mk: use -o
8788         * support/regression/ports/ucz80/spec.mk: use -o
8789         * support/regression/ports/xa51/spec.mk: use -o
8790         * support/regression/fwk/lib/timeout.c: fix usage string
8791
8792 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8793         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8794
8795 2003-01-07    <johan AT balder>
8796
8797         * src/SDCCast.c (decorateType): fixed bug #600035
8798
8799 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8800         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8801         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8802         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8803         * src/pic/pcode.c: outcommented unused variable to remove warnings
8804         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8805
8806 2003-01-06    <karl AT turbobit.com>
8807         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8808    regression tests.
8809
8810 2003-01-06    <johan AT balder>
8811
8812         * src/SDCCicode.c: fixed array add
8813
8814 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8815         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8816         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8817
8818 2003-01-04    <johan AT balder>
8819
8820         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8821
8822 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8823         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8824
8825 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8826         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8827         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8828
8829 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8830         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8831
8832 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8833         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8834
8835 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8836         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8837
8838 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8839
8840     * in \sdcc\as\mcs51\ changed these files in order to create an
8841     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8842     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8843     following files to include the previous two files: aslink.dsp,
8844     Makefile.aslink, Makefile.bcc, and Makefile.in.
8845
8846     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8847     .adb instead of .cdb
8848
8849 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8850
8851         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8852         value from option --iram-size.
8853
8854 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8855
8856         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8857         dram[] array.
8858
8859 2002-09-18    <wiml AT hhhh.org>
8860
8861         * SDCClrange.h: exposed setFromRange() and setToRange()
8862         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8863           packRegsForAccUse() (bug 542397)
8864         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8865           multiple times and emitting the fetch operations more than once
8866           added aopGetUsesAcc() function to allow binary operators to
8867           fetch their operands in the correct order; made genMinus() emit
8868           compact code for X = LITERAL - Y
8869
8870 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8871         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8872         sprintf() in line 1267.
8873
8874 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8875         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8876         like ports.
8877
8878 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8879         Changes to aslink (All the changes are marked with 'JCF'):
8880
8881         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8882         summary().
8883
8884         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8885         area BSEG.  Also moves, if possible, the DATA area down into the internal
8886         ram so more space is available.
8887
8888         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8889         sflag.
8890
8891         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8892         not bytes.  Function summary() which creates a memory usage summary
8893         file with extension .mem.  Reports of overlaping stack and small stack
8894         size.  If the space for the stack is less than 16 bytes aslink trows a
8895         warning.
8896
8897         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8898         the 8051.  Option 'y' for memory summary output file.
8899
8900         Changes to sdcc (All the changes are marked with 'JCF'):
8901
8902         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8903
8904         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8905         overlaying area for it (uses RegBankUsed[4]).
8906
8907         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8908         bank zero as used by default.  By default aslink locates the stack
8909         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8910         the creation of the .mem file.  Delegates the allocation of data area
8911         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8912         the begining of the stack area to aslink.
8913
8914         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8915         glue() in SDCCglue.c creates an area for it.
8916
8917 2002-09-03  Borut Razem <borut.razem AT siol.net>
8918         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8919         sdcc/src/pic/glue.c:
8920         introduced atexit() handler for teporay files removal in case of
8921         errors, assertions, ...
8922
8923 2002-08-29  Borut Razem <borut.razem AT siol.net>
8924         * sdcc/support/cpp2/auto-host_vc_in.h:
8925         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8926         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8927         Maybe there is a similar problem with BORLANDC? It should be checked!
8928
8929         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8930         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8931         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8932         was not executed, and the compiler (cl) launched a warning:
8933         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8934
8935 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8936         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8937
8938 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8939         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8940
8941         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8942           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8943           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8944           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8945           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8946           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8947           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8948         - added Release configuration in VS projects
8949         - review of compiler an linker options
8950         - VC .exe files are generated in bin_vc directory, not to interfere
8951           with binaries generated from other projects (cygwin, mingw, bcc ...)
8952
8953         * sdcc/src/yacc.dsp: added
8954
8955         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8956         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8957         and insert the version number definitions from .version
8958
8959         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8960
8961         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8962         added - genarate auto-host.h using auto-host_vc_in.h as template
8963
8964         * sdcc/sdcc_vc.h,
8965         removed from CVS, generated automatically
8966
8967 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8968         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8969
8970 2002-08-11  Borut Razem <borut.razem AT siol.net>
8971         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8972
8973 2002-08-10  Borut Razem <borut.razem AT siol.net>
8974         * src/SDCCmain.c (main):
8975         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8976         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8977         The consequence was that some temporary files were not removed.
8978
8979         * src/SDCCglue.c:
8980         unification of code in functions tempfilename() and tempfile():
8981         function tempnam() is defined in Visual Studio 6.0 and .NET
8982
8983         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8984
8985         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8986           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8987         - removed compiler command line option /WX: Treats all warnings as errors
8988         - update a list of source files, included into the project
8989
8990         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8991           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8992         changed project type to Generic Project so that can be correcly converted to VS.NET project
8993
8994         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8995
8996         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8997
8998         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8999
9000         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
9001         added return 0 statements after assert() to make compiler happy
9002
9003         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
9004         added newline in the def file to keep MSC compiler satisfied
9005
9006         * sdcc/src/z80/gen.c:
9007         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
9008           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
9009         - solved MSC error in function aopDump()
9010
9011         * sdcc_vc.h: define PREFIX as "\\sdcc"
9012
9013 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
9014         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
9015
9016 2002-06-22  Scott Dattalo <scott AT dattalo.com>
9017         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
9018         - Rewrote the register banking algorithm.
9019         - Added pCode live-range analysis to registers (for now, only non-used and
9020         singly-used registers optimized away)
9021
9022         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
9023
9024         * 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.
9025
9026 2002-05-10  Scott Dattalo <scott AT dattalo.com>
9027         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
9028
9029 2002-04-22  Michael Hope  <michaelh AT vroom>
9030
9031         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
9032
9033         * configure.in (DD_COPT): Added include support required for gbdk.
9034
9035         * .version: Bumped version number just to increase it.
9036
9037         * src/SDCCmain.c: Added -nostdinc to the default options.
9038
9039 2002-04-15  Michael Hope  <michaelh AT vroom>
9040
9041         * device/lib/z80/printf.c (sprintf): Added.
9042
9043         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
9044
9045         * src/z80/peeph.def: Added transpose redundent load rule.
9046
9047         * src/z80/main.c: Added force callee saves for jaune.
9048
9049         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
9050
9051         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
9052
9053 2002-03-28  Johan Knol  <johan AT balder>
9054
9055         * src/SDCCval.c: fixed bug #532436
9056
9057 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9058         * /src/port.h:
9059         Added "char *Processor" field to the port structure.
9060
9061         * /src/SDCCmain.c:
9062         Added -p option. Allows port dependent processor to be specified.
9063
9064         * all ports:
9065         Initialized the new field char *Processor field to NULL in all ports
9066
9067         * /src/pic/*:
9068         Compiler generated registers for interrupt context saving
9069         were not getting allocated.
9070
9071 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
9072
9073         * /src/SDCCast.c:
9074         Fixed left shift. Will promote the left side of a left shift
9075         if a) left shifting more than size of operand or b) when assigned
9076         to something size > size of left side
9077
9078 2002-03-14  Scott Dattalo <scott AT dattalo.com>
9079         * src/pic/*
9080         tons of changes. Register allocation has been
9081         rewritten. Added customization for the various PICs. Flow
9082         analysis is restructured. ...
9083
9084         * src/pic/device.h:
9085         Added
9086
9087         * src/pic/device.c:
9088         Added. device.c is a PIC port hack to accomodate variations
9089         in PIC devices.
9090
9091 2002-03-13  Michael Hope  <michaelh AT vroom>
9092
9093         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
9094
9095 2002-03-04  johanknol  <johanknol AT manik>
9096
9097         * /src/SDCCval.c: fixed
9098
9099         const unsigned char arr[][2] = { { 0, 1 } };
9100         t18.c:1: error: Initializer element is not constant
9101
9102 2002-03-04  bela  <bela AT manik>
9103
9104         * /device/include/mcs51reg.h:
9105         ds89c420 register definition update
9106
9107 2002-03-03    <johan AT FRIJA>
9108
9109         * support/Util/SDCCerr.c: did something, but don't no why anymore
9110
9111         * support/regression/tests/bug-524691.c: made it a little less shy
9112
9113         * src/SDCCast.c (decorateType): fixed bug #524697
9114
9115         * src/SDCCast.c: made some lineno improvements
9116
9117         * src/SDCCval.c (getNelements): changed warning to error
9118
9119         * src/SDCCglue.c (printIvalArray): changed warning to error
9120
9121         * src/SDCCicode.c: fixed a warning for mingw
9122
9123         * src/SDCCast.c (decorateType): fixed the << promotion for ops
9124
9125         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
9126
9127 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
9128
9129         * src/ds390/peeph.def:
9130         Added some more peephole rules
9131
9132         * src/ds390/gen.c: Various fixes & enhancements
9133
9134         * src/SDCClrange.c, src/SDCClrange.h:
9135         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
9136
9137         * src/ds390/ralloc.c:
9138         various fixes & enhancements (ds390) specific
9139
9140         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
9141         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
9142         from rallocs.
9143
9144         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
9145
9146 2002-03-02    <johan AT FRIJA>
9147
9148         * src/SDCCast.c (decorateType): fixed bug #524708
9149
9150         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
9151
9152         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
9153
9154 2002-03-01  Michael Hope  <michaelh AT vroom>
9155
9156         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
9157
9158         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
9159
9160 2002-03-01    <johan AT FRIJA>
9161
9162         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
9163
9164         * src/SDCCast.c (decorateType): fixed bug #524209
9165
9166         * src/SDCCval.c (valNot): fixed bug #524195
9167
9168 2002-02-26    <johan AT balder>
9169
9170         * src/xa51/gen.c: fixed a warning
9171
9172         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
9173
9174         * src/SDCCast.c (decorateType): fixed bug #522534
9175
9176 2002-02-23    <johan AT balder>
9177
9178         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
9179
9180 2002-02-22    <johan AT balder>
9181
9182         * src/SDCCast.c: fixed bug #514865
9183
9184         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
9185
9186 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
9187
9188         * sdcc/src/SDCCloop.c:
9189         Previous fix was not good. basic blocks that have "break" or "return" are
9190         not really partof a loop , but live ranges used in these blocks should
9191         be live thru the entire loop, so set partOfLoop but don't add them to
9192         loop region
9193
9194 2002-02-21    <johan AT FRIJA>
9195
9196         * src/SDCCcse.c: fixed bug #514308
9197
9198 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
9199
9200         * src/SDCCloop.c:
9201         Fixed BUG #519583. If a conditional block ended in a return/break
9202         statement inside a loop, it was not being considered part of the loop.
9203
9204         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
9205
9206 2002-02-10  Karl Bongers <karl AT turbobit.com>
9207
9208         * debugger/*:
9209         Fixed up SDCDB debugger somewhat.  Updated debugger/README
9210         with lots of comments and notes.
9211
9212         * device/examples/test2.c:
9213         Fix bug, "red" variable not being initialized(compiler complained).
9214
9215         * device/examples/Makefile, examples/test3.c:
9216         Add Makefile in device/examples folder, compiles test3.c
9217         for use as a multiple module SDCDB test case.
9218
9219         * sim/ucsim/cmd.src/cmdset.cc:
9220         Took out debug printfs in ucsim "next" command.
9221
9222         * sim/ucsim/xa.src:
9223         Karl and Johan start ucsim XA support.  Most dissassembly working,
9224         about 75% emulation done(plenty of work remaining).
9225
9226         * sim/ucsim/z80.src:
9227         Add Z80 support to ucsim, add test-ucz80 regression test,
9228         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
9229         Notice z80 compiler fails on examples/test3.c/crc code.
9230
9231 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
9232
9233         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
9234         Added support for --parms-in-bank1
9235
9236         * src/ds390/peeph.def:
9237         added a few more peephole optimzations
9238
9239         * src/ds390/main.c:
9240         1) added __builtin_inp & __builtin_outp used to read in data of given length
9241            from a memory mapped port
9242         2) added __builtin_memcmp
9243         3) added __builtin_swapw swap bytes of a short
9244
9245         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
9246         1) handle multiple send & receives from register bank1
9247         2) ralloc can now allocate DPTR1 to some liveRanges
9248
9249         * src/SDCCsymt.c, src/SDCCsymt.h:
9250         changes to handle multiple sends & receives
9251
9252         * src/SDCCptropt.h:
9253         added some pointer arithmetic optimization
9254
9255         * src/SDCCptropt.c:
9256         added some pointer arithmetic optimizations but not stable yet so not
9257         called from anywhere (will get this working shortly)
9258
9259         * src/SDCCopt.c: fixed for multiple sends & receives
9260
9261         * src/SDCCmain.c:
9262         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
9263         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
9264            set preprocessor defines (depending on options)
9265
9266         * src/SDCCicode.c, src/SDCCicode.h:
9267         changes made to handle multiple sends & receives
9268
9269         * src/SDCCglobl.h:
9270         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
9271
9272         * src/SDCCcse.c, src/SDCCcse.h:
9273         added function findbackward def (to be used in upcoming optimization)
9274
9275         * src/SDCCcflow.c, src/SDCCcflow.h:
9276         added function returnAtEnd - to determine if a basic block terminates with
9277         a RETURN iCode
9278
9279         * src/SDCCast.c, src/SDCCast.h:
9280         added option parms-in-bank1
9281
9282         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
9283         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
9284         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
9285         adjusted for --parms-in-bank1 option
9286
9287         * device/include/string.h:
9288         donot redefine "reentrant" keyword
9289
9290         * device/include/ds80c390.h: Added some more SFRs
9291
9292 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9293
9294         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9295
9296 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9297
9298         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9299
9300 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9301
9302         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9303
9304 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9305
9306         * Added --xram-movc option
9307
9308 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9309
9310         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9311
9312 2002-01-11  Johan Knol
9313
9314         * Added math lib of Jesus Calvino-Fraga
9315
9316 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9317
9318         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9319         * support/regression/Makefile: new target test-mcs51-stack-auto
9320         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9321
9322 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9323
9324         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9325
9326 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9327
9328         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9329
9330 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9331
9332         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9333
9334         * src/SDCCglue.h: add definition for printIvalChar()
9335
9336 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9337
9338         * src/SDCCast.c: fix #498138 by Johan
9339
9340         * src/SDCCglue.c: fix #498138 by Johan
9341
9342 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9343
9344         * support/regression/Makefile: fix clean
9345
9346         * support/regression/ports/ds390/support.c: fix transmission of last character
9347
9348 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9349
9350         * /sdcc/src/ds390/gen.c:
9351         a) improved computing address of stack variable
9352         b) took out some #if 0 code
9353         c) improved parmBytes adjustment
9354         d) improved genPlusIncr & genMinusIncr
9355         e) genCmp could generate bad code (when left assigned to DPTR)
9356         f) Fixed bug in hasInc
9357
9358         * /sdcc/src/ds390/ralloc.c:
9359         a) packRegsForSupport could mess up live information (Fixed)
9360         b) packRegsDPTRuse could be incorrect for left & right shift
9361
9362         * /sdcc/src/mcs51/ralloc.c:
9363         packRegsForSupport could mess up the live information (Fixed)
9364
9365         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9366
9367         * /sdcc/src/SDCCast.c:
9368         can reverse a loop even if function call is present as long
9369         as the loop control variable is local & is not passed as parameter
9370
9371 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9372
9373         * /sdcc/ChangeLog: *** empty log message ***
9374
9375         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9376         More builtin function additions for TININative
9377
9378         * /sdcc/src/ds390/ralloc.c:
9379         Had broken the regression testsuite
9380
9381         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9382
9383         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9384         Added funcattr hasStackParms will be set for reentrant functions when there
9385         are paramteres on the stack, this helps in minimizing frame pointer generation
9386         typeFromStr can handle function pointers now
9387
9388         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9389         *** empty log message ***
9390
9391 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9392
9393         * /src/ds390/gen.c, /src/ds390/main.c:
9394         More builtin function additions for TININative
9395
9396         * /src/ds390/ralloc.c:
9397         Had broken the regression testsuite
9398
9399         * /src/SDCCast.c: Fixed a bug in dumptree
9400
9401         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9402         Added funcattr hasStackParms will be set for reentrant functions when there
9403         are paramteres on the stack, this helps in minimizing frame pointer generation
9404         typeFromStr can handle function pointers now
9405
9406         * /doc/builtins.txt, /doc/TININative.txt:
9407         *** empty log message ***
9408
9409
9410 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9411
9412         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9413         ALPHA version for -mTININative
9414
9415         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9416         updated to reflect changes in the port structure
9417
9418         * /src/port.h:
9419         added function do_assemble (similar to do_link) if non-null this function
9420         will be called to do assembly (-mTININative) requires a multi command
9421         assembly
9422         added function genAssemblerEnd will be called to generate assembler Epilogue
9423
9424         * /src/SDCCsymt.c:
9425         added _JavaNative to debug info printing
9426
9427         * /src/SDCCmain.c: added option --tini-libid
9428         added port->do_assemble function (-mTININative) has a multi command assemble
9429
9430         * /src/SDCCglue.c: Disabled "constExpr" check
9431         added port->genAssemblerEnd function
9432
9433         * /src/SDCCglobl.h: Added option --tini-libid value
9434
9435         * /src/SDCCast.h:
9436         tookout optimizeCompare from the header (has no external references)
9437
9438         * /src/SDCCast.c: made one more function "static"
9439
9440 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9441
9442         * src/z80/mappings.i: Added z80asm support.
9443
9444         * src/z80/main.c: Added z80asm support on --asm=z80asm
9445
9446         * src/z80/gen.c: Fixed asm portability issues.
9447
9448         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9449
9450         * src/SDCCglue.c (printExterns): Added global/extern split.
9451
9452 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9453
9454         * support/regression/Makefile: added test for mcs51 model large
9455
9456         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9457
9458         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9459
9460 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9461
9462         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9463
9464 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9465
9466         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9467
9468         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9469
9470 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9471
9472         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9473
9474         * support/regression/tests/simplefloat.c: Port to mcs51.
9475
9476 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9477         * support/regression/tests/bug-485362.c: Added.
9478
9479         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9480
9481         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9482
9483         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9484
9485         * src/z80/gen.c (aopDump): Added a dump function.
9486
9487 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9488         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9489
9490         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9491
9492         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9493
9494         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9495
9496         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9497
9498         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9499
9500         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9501
9502         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9503
9504         * support/regression/ports/ds390/support.c: Use tinibios.
9505
9506         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9507
9508 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9509
9510         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9511         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9512
9513         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9514
9515         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9516
9517 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9518
9519         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9520
9521         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9522         (packRegsForIYUse): Created and optimised.
9523
9524 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9525
9526         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9527 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9528
9529         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9530
9531         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9532
9533         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9534
9535 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9536
9537         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9538
9539         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9540
9541 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9542
9543         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9544
9545         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9546
9547         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9548
9549 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9550
9551         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9552         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9553         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9554
9555         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9556
9557         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9558         (genNotFloat): Added.
9559         (genUminusFloat): Added.
9560
9561         * device/lib/z80/Makefile: Added floating pt stubs.
9562
9563         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9564
9565         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9566
9567         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9568
9569 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9570
9571         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9572
9573         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9574
9575         * sdcc/support/regression/Makefile: Add port ds390.
9576
9577         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9578
9579         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9580
9581         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9582
9583         * sdcc/support/regression/ports/ds390/support.c: Added.
9584
9585         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9586
9587         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9588
9589         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9590
9591 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9592
9593         * device/include/malloc.h: Added z80 and gbz80 support.
9594
9595         * device/lib/gbz80/heap.s: Added.
9596
9597         * device/lib/z80/heap.s: Added.
9598
9599         * device/lib/malloc.c: Added z80 and gbz80 support.
9600
9601         * support/regression/tests/malloc.c (testMalloc): Added.
9602
9603         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9604
9605         * support/regression/tests/bug-478094.c: Added.
9606
9607         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9608
9609 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9610
9611         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9612
9613         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9614
9615         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9616
9617         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9618
9619         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9620
9621 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9622
9623         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9624
9625 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9626
9627         * support/regression/tests/bug-477927.c: Added.
9628
9629         * src/z80/peeph.def: Added minor rules.
9630
9631         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9632
9633         * src/z80/peeph.def: Added jump optimisation modification.
9634
9635 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9636
9637         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9638
9639 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9640
9641         * support/regression/tests/funptrs.c: Added.
9642
9643 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9644
9645         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9646
9647 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9648
9649         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9650
9651         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9652
9653         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9654         (movLeft2ResultLong): Created.
9655
9656         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9657         (joinPushes): Added.  Joins two char pushes into a word push.
9658
9659 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9660
9661         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9662
9663         * support/makebin/Makefile (install): Added creation of dest dir.
9664
9665 2001-10-24 Karl Bongers <karl AT turbobit.com>
9666
9667         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9668
9669 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9670
9671         * src/z80/ralloc.c: Turned off faulty pack for one use.
9672
9673         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9674
9675         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9676
9677 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9678
9679         * support/regression/Makefile: Improved clean
9680
9681         * support/regression/ports/gbz80/spec.mk: Added clean
9682
9683         * support/regression/ports/host/spec.mk: Added clean
9684
9685         * support/regression/ports/z80/spec.mk: Added clean
9686
9687         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9688
9689         * support/regression/ports/mcs51/timeout.c: little improvements
9690
9691 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9692
9693         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9694
9695         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9696
9697         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9698
9699 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9700
9701         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9702
9703         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9704
9705 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9706         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9707
9708         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9709
9710         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9711
9712         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9713
9714         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9715
9716         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9717
9718         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9719
9720         * support/regression/tests/longor.c: Added.
9721
9722 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9723
9724         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9725
9726         * as/mcs51/aslink.h: define PATH_MAX
9727
9728         * as/mcs51/asm.h: define PATH_MAX
9729
9730         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9731
9732         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9733
9734         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9735
9736         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9737
9738         * src/SDCCglobl.h: define PATH_MAX
9739
9740         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9741
9742         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9743
9744 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9745
9746         * src/z80/gen.c (gencjneshort): Fixed
9747
9748         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9749
9750 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9751
9752         * support/regression/tests/bug-469671.c: Added.
9753
9754         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9755
9756 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9757
9758         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9759
9760         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9761
9762 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9763
9764         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9765
9766         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9767
9768         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9769
9770         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9771
9772         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9773
9774         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9775
9776         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9777
9778 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9779
9780         * 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.
9781
9782         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9783
9784         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9785
9786 2001-10-07    <johan AT FRIJA>
9787
9788         * device/lib/gets.c (gets): fixed the return value.
9789
9790 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9791         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9792
9793         * 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.
9794
9795         * 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.
9796
9797         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9798
9799         * src/pic/gen.c: Removed Safe_strdup.
9800
9801         * configure.in: Added option to enable libgc support.
9802
9803         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9804         (bitVectUnion): Optimised.
9805         (bitVectIntersect): Optimised.
9806         (bitVectBitsInCommon): Optimised.
9807         (bitVectCplAnd): Optimised.
9808
9809         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9810
9811 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9812
9813         * src/SDCCmain.c: distinguish between assembler debug and plain options
9814
9815         * src/avr/main.c:   remove standard assembler options
9816
9817         * src/ds390/main.c: remove standard assembler options
9818
9819         * src/mcs51/main.c: remove standard assembler options
9820
9821         * src/port.h: removed "PENDING" comment
9822
9823 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9824
9825         * src/device/lib/_mulint.c  : new, with assember functions
9826
9827         * src/device/lib/_mullong.c : new, with assember functions
9828
9829         * src/device/lib/_divuint.c : with assember functions
9830
9831         * src/device/lib/_divsint.c : with assember functions
9832
9833         * src/device/lib/_divulong.c: with assember functions
9834
9835         * src/device/lib/_divslong.c: with assember functions
9836
9837         * src/device/lib/_moduint.c : with assember functions
9838
9839         * src/device/lib/_modsint.c : with assember functions
9840
9841         * src/device/lib/_modulong.c: with assember functions
9842
9843         * src/device/lib/_modslong.c: with assember functions
9844
9845         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9846
9847         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9848
9849         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9850                                       replaced _mululong.c and _mulslong.c by _mullong.c
9851
9852 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9853
9854         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9855
9856 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9857
9858         * src/SDCCglue.c: test, if win32api is available for MINGW
9859
9860 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9861
9862         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9863         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9864         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9865         * support/regression/ports/host/spec.mk: removed GENERIC
9866         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9867         * support/regression/ports/z80/spec.mk: removed GENERIC
9868
9869 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9870
9871         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9872
9873         * support/regression/tests/bug-467035.c: Created.
9874
9875 2001-10-01    <johan AT FRIJA>
9876
9877         * src/SDCC.y: fixed bug #466586 part 1
9878
9879 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9880
9881         * SDCCicode.c: z80 has no generic pointers
9882         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9883
9884 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9885
9886         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9887
9888 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9889
9890         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9891
9892         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9893
9894 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9895
9896         * configure.in: Fixed up so that ucsim is only configured once.
9897
9898         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9899
9900         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9901         (getPathDifference): As above.
9902
9903         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9904
9905         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9906
9907 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9908         * .version: Updated to 2.3.1
9909
9910         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9911         Added copyright header.
9912
9913         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9914         (assemble): Added support for macro based assembler commands.
9915         (linkEdit): Added support for macro based linker commands.
9916         (preProcess): Changed the pre-processor to use macros.
9917         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9918         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9919
9920         * device/lib/z80/crt0.s: Added module name for debugging.
9921
9922 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9923
9924         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9925
9926         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9927
9928         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9929
9930         * src/Makefile.in: Added SDCCmacro and SDCCutil
9931
9932 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9933
9934         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9935
9936 2001-09-16    <johan AT FRIJA>
9937
9938         * 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.
9939
9940 2001-09-15    <johan AT FRIJA>
9941
9942         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9943         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9944
9945 2001-09-11    <johan AT FRIJA>
9946
9947         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9948
9949 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9950
9951         * support/regression/tests/bug-460444.c: Added test case.
9952
9953         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9954         (genCast): Added justification for all of the asserts.
9955
9956 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9957
9958         * support/regression/support.c: _xdata replaced by xdata
9959
9960         * support/regression/spec.mk: removed _generic
9961
9962 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9963
9964         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9965
9966         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9967         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9968
9969         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9970
9971         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9972
9973         * support/regression/tests/bug-460010.c: Added test case.
9974
9975         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9976
9977 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9978
9979         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9980
9981         * support/regression/testfwk.c: removed workaround for bug #436344
9982
9983         * support/regression/tests/bp.c: use less memory with mcs51
9984
9985         * support/regression/tests/bug-441448.c: use less memory
9986
9987         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9988
9989         * support/regression/collate-results.py: typo
9990
9991 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9992
9993         * support/regression/tests/fetchoverlap.c: Added new test case.
9994
9995         * support/regression/tests/bp.c: Added new test case.
9996
9997         * support/regression/tests/bug-448984.c: Added new test case.
9998
9999         * support/regression/tests/pow2shifts.c: Added new test case.
10000
10001         * src/z80/gen.c: Turned off the noise it normally generates for the release.
10002         (genlshTwo): Fixed right shift for count > 8.
10003
10004         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
10005
10006 2001-09-08    <johan AT FRIJA>
10007
10008         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
10009
10010 2001-09-07    <johan AT FRIJA>
10011
10012         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
10013
10014         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
10015
10016 2001-09-06    <johan AT FRIJA>
10017
10018         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
10019         * bernhard noted me at this: "() equals to (void)" (1.38)
10020
10021 2001-09-05    <johan AT FRIJA>
10022
10023         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
10024
10025 2001-09-04    <johan AT FRIJA>
10026
10027         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
10028
10029
10030 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
10031
10032         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
10033
10034 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
10035
10036         * link/z80/aslink.h: Fixed path for PATH_MAX
10037
10038 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
10039
10040         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
10041
10042         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
10043
10044         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
10045
10046         * 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.
10047
10048 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
10049
10050         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
10051         (genCmp): Fixed up genCmp for the GB with longs.
10052
10053         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
10054
10055         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
10056
10057         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
10058
10059         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
10060
10061 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
10062
10063         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
10064
10065 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
10066
10067         * 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.
10068
10069         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
10070
10071 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
10072
10073         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
10074
10075         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
10076
10077 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
10078
10079   * sim/ucsim/configure:    little improvement of Cygwin-detection
10080   * sim/ucsim/configure.in: little improvement of Cygwin-detection
10081   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
10082   * support/regression/tests/bug-221100.c: small changes for mcs51
10083   * support/regression/tests/bug-221168.c: small changes for mcs51
10084   * support/regression/tests/bug-227710.c: small changes for mcs51
10085   * support/regression/tests/staticinit.c: small changes for mcs51
10086   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
10087   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10088   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
10089
10090 $Revision$